@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,300;0,700;1,300;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --radio: 15px;
    --color-dark: #111111;
    --color-white: #f0f0f0;
    --color-principal: #930057;
    --color-principal-dark: #2D001B;
}

body {
    max-width: 2500px;
    margin-inline: auto;
    overflow-x: hidden;
}

/* section {
    overflow: hidden;
} */

h1 {
    display: none;
}

h1, h2, h3, h4, h5 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.main {
    position: relative;
}

.contenedor {
    width: 90%;
    max-width: 1440px;
    padding: 40px 0;
    margin-inline: auto;
}

.grid-principal {
    display: grid;
    gap: 20px;
    align-items: center;
    grid-auto-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.boton {
    font-size: 13px;
    text-align: center;
    width: fit-content;
    padding: 10px 35px;
    transition: all.3s;
    border-radius: var(--radio);
    text-decoration: none;
    display: inline-block;
    color: var(--color-white);
    background-color: var(--color-principal);
}

.boton:hover {
    transform: scale(1.1);
    background-color: var(--color-principal-dark);
}

.boton:active {
    transform: scale(1.1);
    color: var(--color-principal);
    background-color: var(--color-dark);
}

.bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*---------------------------------------
--------- + MENU BAR
--------------------------------------*/

.header {
    margin-bottom: -100dvh;
}

.menu {
    z-index: 10;
    width: 100%;
    height: 80px;
    backdrop-filter: blur(10px);
    background-color: rgba(147, 0, 88, 0.7);

    position: fixed;
    left: 0;
    top: 0;
}

.menu .contenedor {
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
    display: flex;
}

.logo img {
    height: 100%;
    display: flex;
}

.redes {
    width: 200px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px 8px;
    justify-content: right;
}

.redes img {
    width: 20px;
    display: flex;
}

.redes span {
    padding: 5px;
    display: block;
    font-size: 14px;
    color: var(--color-white);
    border-radius: var(--radio);
    border: 1px solid var(--color-white);
}

/*---------------------------------------
--------- + HERO SECTION
--------------------------------------*/

.hero {
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(45,0,27,1) 50%, rgba(147,0,87,1) 100%);
    z-index: 1;
    position: relative;
}

.hero::before {
    width: 100%;
    content: '';
    height: 100%;
    display: block;
    z-index: 2;

    top: 0;
    left: 0;
    position: absolute;

    background-image: linear-gradient(0deg, rgb(0, 0, 0) 10%, rgba(147,0,87,0) 100%);
}

.hero-text {
    display: flex;
    row-gap: 20px;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.hero-text h2 {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    text-wrap: pretty;
    color: var(--color-principal);
}

.hero-text span {
    color: #fff;
}

.hero-img {
    z-index: 3;
    grid-row: 1;
    position: relative;
}

.hero img:nth-child(2) {
    width: 100%;
    font-display: flex;
    mask-image: linear-gradient(black 85%, transparent 100%);
}

.hero-img img:first-child,
.hero-img img:last-child {
    z-index: 4;
    display: block;
    position: absolute;
    backdrop-filter: blur(5px);
}

.hero-img img:first-child {
    left: -5%;
    top: 65%;

    width: 34%;
    max-width: 345px;
    transform: translateY(20%);

    animation: saltara 14s linear infinite;

}

.hero-img img:last-child {
    left: 70%;
    top: 40%;

    width: 35%;
    max-width: 308px;

    animation: saltarb 14s linear infinite alternate;
}

@keyframes saltara {
    0% {
        transform: translateY(20%);
    }

    50% {
        transform: translateY(00%);
    }

    100% {
        transform: translateY(20%);
    }
}

@keyframes saltarb {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(20%);
    }

    100% {
        transform: translateY(0%);
    }
}

/*---------------------------------------
--------- + BOTON DE IR ARRIBA
--------------------------------------*/

.btn-top {
    position: fixed;
    z-index: 2;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-principal);
    cursor: pointer;
    outline: 0;
    border: 0;
    transition: all 0.3s ease-out;
    visibility: visible;

    box-shadow: 0 0 10px 0 var(--color-dark);
    fill: var(--color-white);
}

.btn-top:hover {
    background-color: var(--color-white);
    fill: var(--color-principal);
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

/*---------------------------------------
--------- + CONSULTORIA SECTION
--------------------------------------*/

.consultoria {
    z-index: -1;
    height: 300dvh;
    background-color: var(--color-dark);
    position: relative;
}

.consultoria .contenedor {
    position: sticky;
    top: 8%;
}

.consultoria-image {
    position: relative;
}

.consultoria-image img:nth-child(1) {
    width: 100%;
    display: block;
    /* filter: drop-shadow(20px 20px 20px rgba(0, 0, 0, 0.5)); */
}

.consultoria-image img:nth-child(2) {
    width: 38%;
    display: block;

    position: absolute;
    right: 0%;
    top: 22%;
}

.consultoria-text h2 {
    font-size: 50px;
    background-image: linear-gradient(var(--color-white) 1%, var(--color-principal) 50%, var(--color-white) 100%);
    background-clip: text;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.consultoria-text p {
    color: var(--color-white);
}

.consultoria-text span {
    font-weight: bold;
    color: var(--color-principal);
}

/*---------------------------------------
--------- + SERVICES SECTION
--------------------------------------*/

.services {
    margin-top: -100dvh;
    position: relative;
    background-image: url(../img/services-bg.webp);
    background-attachment: fixed;
}

.services::before {
    width: 100%;
    content: '';
    height: 100%;
    display: block;
    z-index: 1;

    top: 0;
    left: 0;
    position: absolute;

    background-image: linear-gradient(rgba(0, 0, 0, .8) 5%, transparent 80%);
}

.services .contenedor {
    z-index: 2;
    position: relative;

    display: flex;
    gap: 20px 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.services .item {
    width: 100%;
    text-align: center;
}

.services-titulo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.services-titulo h2 {
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
}

.services-titulo span {
    color: var(--color-principal)
}

.services .card {
    width: 100%;
    max-width: 100%;
    min-width: 280px;
    
    position: relative;
    border-radius: var(--radio);
    padding: 20px 15px 20px 60px;
    background-color: var(--color-principal-dark);

    display: flex;
    flex-direction: column;
}

.services .card h3,
.services .card p {
    color: var(--color-white);
}

.services .card h3 {
    font-size: 20px;
    font-weight: 600;
}

.services .card p {
    font-size: 14.5px;
}

.services .card::before {
    content: url(../img/check.svg);
    width: 45px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--color-principal);

    transform: translateY(-50%);
    position: absolute;
    left: 7.5px;
    top: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.objs {
    display: none;
    backdrop-filter: blur(10px);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 0;

    width: 15%;
    max-width: 50px;
}

/*---------------------------------------
--------- + BENEFICES SECTION
--------------------------------------*/

.beneficios {
    background-image: linear-gradient(133deg, rgba(57,33,73,1) 0%, rgba(108,0,62,1) 99%);;
}

.beneficios .contenedor {
    display: flex;
    row-gap: 30px;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
}

.beneficios .contenedor::before {
    z-index: 1;
    content: '';
    width: 100%;
    height: 95%;
    display: block;
    border-radius: var(--radio);
    border: 1px solid var(--color-principal);

    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%; 
}

.beneficios .contenedor::after {
    z-index: 1;
    content: '';
    width: 90%;
    height: 95%;
    display: block;
    border-radius: var(--radio);
    border: 1px solid var(--color-principal);

    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%; 
}

.titulo-gif {
    z-index: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    align-items: center;
    justify-content: center;
}

.titulo-gif h2 {
    text-align: center;
    color: var(--color-white);
}

.titulo-gif img {
    display: block;
    aspect-ratio: 1;
    max-width: 240px;
}

.caja-items {
    z-index: 2;
    display: flex;
    row-gap: 20px;
    flex-wrap: wrap;

    max-width: 1040px;
    color: var(--color-white);
    border-radius: var(--radio);
    padding: 10px 10px 10px 30px;
    background-color: var(--color-principal);
}

.caja-boton {
    z-index: 2;
    width: 100%;
    text-align: center;
}

/*---------------------------------------
--------- + DIFERENCES SECTION
--------------------------------------*/

.diferencias {
    background-image: linear-gradient(118deg, rgba(0,0,0,1) 0%, rgba(71,0,42,1) 100%);;
}

.diferencias .contenedor {
    display: flex;
    row-gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.diferencias h2,
.diferencias p {
    text-align: center;
    color: var(--color-white);
}

.diferencias h2 {
    width: 100%;
}

.diferencias p:nth-child(2) {
    font-size: 18px;
}

.diferencias span {
    font-weight: bold;
}

.diferencias img {
    width: 100%;
    display: block;
}

/*---------------------------------------
--------- + CLIENTS SECTION
--------------------------------------*/

.clients {
    position: relative;
    background: linear-gradient(68deg, rgba(5,0,3,1) 0%, rgba(78,0,47,1) 100%);
    background-position: top left;
    background-size: cover;
}

.clients .contenedor {
    z-index: 1;
    display: flex;
    gap: 20px 20px;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
    justify-content: center;
}

.clients .item {
    width: 100%;
    
    display: flex;
    row-gap: 25px;
    align-items: center;
    flex-direction: column;
}

.clients .item h2 {
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
}

.clients .item img {
    display: block;
}

.clients .item img:nth-child(2) {
    width: 80%;
    max-width: 600px;
}

.clients .item img:nth-child(3) {
    width: 10%;
    max-width: 50px;
}

.clients .item h2 span {
    color: var(--color-principal);
}

.clients .card {
    width: 100%;
    max-width: 100%;
    min-width: 280px;
    min-height: 116px;

    position: relative;
    border-radius: 14px;
    padding: 20px 30px;
    background-color: var(--color-principal-dark);

    display: flex;
    align-items: center;
    justify-content: center;
}

.clients .card p {
    color: var(--color-white);
    font-size: 14.5px;
}

.clients .card::before {
    content: '';
    width: 37px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--color-principal);

    color: var(--color-white);
    font-size: 16px;
    font-weight: bold;

    transform: translateY(-50%);
    position: absolute;
    left: -13px;
    top: 5PX;

    display: flex;
    align-items: center;
    justify-content: center;
}

.clients .card:nth-child(2):before {
    content: '1';
}

.clients .card:nth-child(3):before {
    content: '2';
}
.clients .card:nth-child(4):before {
    content: '3';
}

.clients .card:nth-child(5):before {
    content: '4';
}

.clients .card:nth-child(6):before {
    content: '5';
}

.clients .card:nth-child(7):before {
    content: '6';
}

/*---------------------------------------
--------- + ABOUT SECTION
--------------------------------------*/

.about {
    z-index: 1;
    position: relative;
    margin-bottom: -60dvh;
    background: linear-gradient(122deg, rgba(4,0,2,1) 0%, rgba(58,45,88,1) 100%);
}

.about-image {
    width: 100%;
    display: block;
    border-radius: var(--radio);
}

.about-text {
    display: flex;
    row-gap: 15px;
    flex-wrap: wrap;
}

.about-text img {
    width: 100%;
    display: block;
}

.about-text p {
    color: var(--color-white);
}

.about-text span {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-principal);
}

/*---------------------------------------
--------- + MISION SECTION
--------------------------------------*/

.mision {
    z-index: -1;
    height: 180dvh;
    background: -webkit-linear-gradient(130deg, #060606,#2d001b,#930057);                      
    background: linear-gradient(130deg, #060606,#2d001b,#930057);  
}

.mision .contenedor {
    position: sticky;
    top: 20%;
}

.mision img {
    width: 100%;
}

.mision p {
    color: var(--color-white);
}

/*---------------------------------------
--------- + TEAM SECTION
--------------------------------------*/

.team {
    z-index: 1;
    position: relative;
    margin-top: -60dvh;
    background: -webkit-linear-gradient(55deg, #060606,#2d001b,#930057);                         
}

.team .contenedor {
    display: flex;
    row-gap: 30px;
    flex-direction: column;
}

.team-titulo {
    width: 100%;
    text-align: center;
}

.team-titulo h2 {
    text-align: center;
    color: var(--color-white);
}

.team-box img {
    display: none;
    max-width: 900px;
}

.team-box ul {
    display: flex;
    row-gap: 10px;
    flex-direction: column;
}

.team-box li {
    list-style: none;
    color: var(--color-white);
}

.team-box li::before {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background-color: var(--color-principal);

    margin-right: 10px;
    border-radius: var(--radio);
}

.team-box p {
    max-width: 450px;
    color: var(--color-white);
}

/*---------------------------------------
--------- + IMAGE SECTION
--------------------------------------*/

.section-image {
    padding: 40px 0;
    background-color: var(--color-white);
}

.section-image img {
    width: 100%;
    display: block;
    max-width: 800px;
    margin-inline: auto;
    filter: grayscale(1);
}

/*---------------------------------------
--------- + FRACE SECTION
--------------------------------------*/

.frase-cierre {
    /* margin-bottom: 100dvh; */
    background: -webkit-linear-gradient(90deg, #060606,#2d001b,#930057);                        
    background: linear-gradient(90deg, #060606,#2d001b,#930057);                                           
}

.frase-cierre h2 {
    width: 100%;
    padding: 10px;
    display: block;

    text-align: center;
    color: var(--color-white);
    border-radius: var(--radio);
    border: 5px solid var(--color-white);
}

/*---------------------------------------
--------- + DETALLES SECTION
--------------------------------------*/

.detalles {
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100dvh;
    position: fixed;
    background: linear-gradient(158deg, rgba(6,6,6,1) 0%, rgba(113,20,82,1) 100%);
}

.detalles-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.detalles-image img {
    width: 80%;
    display: block;
    max-width: 450px;
    margin-inline: auto;
}

.detalles-text {
    display: flex;
    gap: 30px 20px;
    flex-wrap: wrap;
    align-items: center;
}

.detalles-text ul {
    width: 100%;
    display: flex;
    row-gap: 10px;
    align-items: center;
    flex-direction: column;
}

.detalles-text span {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-white);
}

.detalles-text li {
    display: none;
    list-style: none;
    color: var(--color-white);
}

.detalles-boton {
    width: 100%;
    display: flex;
    justify-content: center;
}

/*---------------------------------------
--------- + COPY SECTION
--------------------------------------*/

.copy {
    transform: translateY(100dvh);
    background-color: var(--color-principal-dark);
}

.copy span {
    text-align: center;
    color: var(--color-white);
}

.copy nav {
    grid-row: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.copy nav img {
    width: 25px;
    aspect-ratio: 1;
}



/*---------------------------------------
--------- + Responsive
--------------------------------------*/

@media (min-width: 578px) {
    .hero .contenedor {
        padding: 0;
    }
    .hero-text {
        align-items: start;
    }
    .hero-text h2 {
        max-width: 606px;
        text-align: left;
    }
    .hero-img {
        grid-column: 2;
        text-align: center;
    }

    .consultoria-text p {
        max-width: 606px;
    }

    .services-titulo h2 {
        max-width: 606px;
    }

    .titulo-gif h2 {
        font-size: 20px;
    }

    .diferencias {
        row-gap: 70px;
    }
    .diferencias h2 {
        font-size: 30px;
    }
    .diferencias p:nth-child(2) {
        font-size: 23px;
        max-width: 800px;
    }
    .diferencias p:nth-child(4) {
        font-size: 18px;
        max-width: 900px;
        text-align: left;
    }

    .frase-cierre h2 {
        font-size: 40px;
    }

    .copy nav {
        grid-column: 2;
        justify-content: right;
    }
    .copy span {
        text-align: left;
    }
}

@media (min-width: 650px) {
    .team {
        background: radial-gradient(circle farthest-side at 30% 75%, rgba(255, 173, 222, 0.6) 0%, rgba(0, 0, 0, 0) 40%),
        linear-gradient(55deg, #060606,#2d001b,#930057);
    }
    .team-titulo h2 {
        font-size: 30px;
    }
    .team-box {
        background: rgba(119, 119, 119, 0.18);
        backdrop-filter: blur(10px);
        
        padding: 10px;
        position: relative;
        border-radius: var(--radio);
        border: 1px solid #777777;
    }
    .team-box img {
        width: 100%;
        display: block;
        mask-image: linear-gradient(black 85%, transparent 100%);
        filter: drop-shadow(0px 0px 10px rgba(255, 173, 222, 0.432));
    }
    .team-box p {
        width: 45%;
        padding: 20px;
        display: block;
        border-radius: var(--radio);

        position: absolute;
        bottom: -60px;
        left: 20px;
        border: 1px solid #777777;

        background-color: rgba(119, 119, 119, 0.18);
        backdrop-filter: blur(10px);
    }
}

@media (min-width: 720px) {
    .hero-text h2 {
        font-size: 20px;
    }

    .consultoria-text p {
        font-size: 20px;
    }

    .services-titulo h2 {
        font-size: 20px;
    }
    .services .card {
        max-width: 300px;
    }

    .titulo-gif h2 {
        max-width: 650px;
    }

    .diferencias h2 {
        font-size: 40px;
    }

    .team-titulo h2 {
        font-size: 40px;
    }
    .team-box {
        padding: 30px;
    }

    .clients .item h2 {
        font-size: 20px;
    }
    .clients .card {
        max-width: 300px;
    }

    .about-text span {
        font-size: 23px;
    }

    .team-box li {
        font-size: 20px;
    }
    .team-box p {
        font-size: 20px;
    }
}

@media (min-width: 800px) {

    .contenedor {
        padding: 100px 0;
        column-gap: 40px;
    }
    .team .contenedor {
        row-gap: 70px;
    }
    .team-box {
        column-gap: 40px;
    }

    .boton {
        font-size: 17px;
        padding: 20px 41px;
    }

    .services .card {
        max-width: 320px;
    }
    .services .contenedor {
        row-gap: 70px;
    }

    .caja-boton {
        margin-top:50px;
    }

    .clients .item {
        margin-bottom: 40px;
    }
    .clients .card {
        max-width: 320px;
    }

    .copy .contenedor {
        padding: 40px 0;
    }
}

@media (min-width: 1024px) {
    .hero-text h2 {
        font-size: 28px;
    }

    .consultoria-text p {
        font-size: 28px;
    }

    .services-titulo h2 {
        font-size: 28px;
    }

    .titulo-gif h2 {
        max-width: 750px;
        font-size: 28px;
    }
    .caja-items {
        row-gap: 30px;
        padding: 20px 20px 20px 40px;
    }
    .caja-items li {
        font-size: 20px;
        line-height: 1.3;
    }

    .diferencias h2 {
        font-size: 50px;
    }
    .diferencias p:nth-child(2) {
        font-size: 28px;
    }

    .clients .item h2 {
        font-size: 28px;
    }

    .about-text span {
        font-size: 31px;
    }

    .team-titulo h2 {
        font-size: 50px;
    }

    .frase-cierre h2 {
        font-size: 60px;
    }

    .detalles-text ul {
        max-width: 195px;
        align-items: start;
    }
    .detalles-text li {
        display: inline;
    }
}

@media (min-width: 1160px) {
    .titulo-gif h2 {
        max-width: 700;
        text-align: left;
    }

    .about-text {
        row-gap: 40px;
    }
    .about-text p {
        font-size: 23px;
    }

    .mision p {
        font-size: 23px;
    }
}

@media (min-width: 1440px) {
    .hero-text h2 {
        font-size: 36px;
    }
    .boton {
        font-size: 19px;
    }

    .consultoria-text h2 {
        font-size: 75px;
    }

    .services-titulo h2 {
        font-size: 31px;
    }

    .titulo-gif h2 {
        font-size: 31px;
    }

    .diferencias h2 {
        font-size: 60px;
    }

    .clients .contenedor {
        padding-inline: 60px;
    }
    .clients .item h2 {
        font-size: 31px;
    }

    .about-text span {
        font-size: 40px;
    }

    .team-titulo h2 {
        font-size: 60px;
    }

    .frase-cierre h2 {
        font-size: 80px;
    }
}

@media (min-width: 1920px) {}

@media (min-width: 2160px) {}