/* Reseteamos los margin y paddings de todas las etiquetas */
@charset "UTF-8";

:root {
    --primaryColor: #2E2D2C;
  --secondaryColor: #ffc451;
    --bgColorWhite: #FFFFFF;
    --bgColorGray: #ECECEC;
    font-family: 'Montserrat', sans-serif;
}

/* Configuramos el texto que seleccionamos */
::-moz-selection {
    background-color: var(--secondaryColor);
    color: var(--primaryColor);
}

::selection {
    background-color: var(--secondaryColor);
    color: var(--primaryColor);
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: baseline;
    color: var(--secondaryColor);
}

body {
    min-width: 320px;
    /*Después de esta medida mínima se rompe la web*/
    min-height: 100vh;
    font-size: 100%;
    user-select: none;
    background-color: black !important;
}


html {
    scroll-behavior: smooth;
    cursor: auto;

}

.cursor {
    pointer-events: none;
    display: none !important;
}

img,
picture,
video,
iframe,
figure {
    max-width: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}
/* Reseteamos los enlaces para funcionar como cajas... */
a {
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

/* ... excepto los que se encuentran en párrafos */
p a {
    display: inline;
}

/* Quitamos los puntos de los <li> */
li {
    list-style-type: none;
}

/* Configuramos anclas suaves */
html {
    scroll-behavior: smooth;
}


/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
    font-size: 1em;
    line-height: 1em;
    font-weight: inherit;
    font-style: inherit;
    text-decoration: none;
    color: inherit;
}

/* Nivelamos problemas de tipografías y colocación de formularios */
form,
input,
textarea,
select,
button,
label {
    font-family: inherit;
    font-size: inherit;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    background-color: transparent;
    color: inherit;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* Evitamos problemas con los SVG */
svg {
    width: 100%;
    height: auto;
    display: block;
    fill: currentColor;
}

.main {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}







/*********HERO animacion de la cabecera*********/
/*********************************************/
/*********************************************/
.hero__video {
    display: block;
    width: 100%;
    height: 120vh;
    object-fit: cover;
    object-position: center center;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero {
    width: 100%;
    height: 90vh;
    /* antes: 80vh */
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: black;
    position: relative;
}




.hero__title {
    position: absolute;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    top: 60%;
   
    left: 50%;
    transform: translate(-50%, -50%);
    

}



.title__wrapper {
    max-height: 250px;
    
    overflow: hidden;
  
    position: relative;
    width: 100%;
    

}





.title__noanimation,
.title__span {
    color: var(--bgColorWhite);
    display: block;
    font-size: 48px;
    padding: 6px 0;
    line-height: 1.5em;
    font-weight: 800;
    text-align: center;
}

.title__italic {
    font-weight: 300;
    font-style: italic;
}




/* Animación de desvanecimiento */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Aplicar la animación */
/* Aplicar la animación */
/* Aplicar la animación */
.title__animation {
    display: flex;
    flex-direction: column;
    animation: scrollUpAndDown 8s ease-in-out infinite;
   
}

.title__span {
    font-size: 30px;
    margin: 12px 0;
    
}

/* Animación de desplazamiento hacia arriba y abajo */
@keyframes scrollUpAndDown {
    0% {
        transform: translateY(0);
       
    }

    25% {
        transform: translateY(-30%);
       
    }

    50% {
        transform: translateY(-60%);
       
    }

    75% {
        transform: translateY(-30%);
       
    }

    100% {
        transform: translateY(0);
        
    }
}

@media (max-width: 768px) {
    
    .hero {
        height: 80vh;
    }
    
    
    
    .hero__title {
        top: 70%;
        padding: 0 1rem;
        text-align: center;
        flex-direction: column;
    }

    .title__wrapper {
        max-height: 300px;
        overflow: hidden;
        width: 100%;
    }

    .title__animation {
        display: flex;
        flex-direction: column;
        animation: scrollUpAndDown 8s ease-in-out infinite;
    }

    .title__span {
        font-size: 20px;
        display: block;
        margin: 8px 0;
        padding: 4px 0;
        text-align: center;
    }

    .title__noanimation {
        font-size: 28px;
    }
}






/***********************************************/
/*****************nav-bar*******************/
/*********************************************/
/***********************************************/
/***********************************************/
/*****************HEADER***********************/
/***********************************************/





/*************************************/
/*******boton demos nav*************/
/*****************************************/


/* Botón DEMOSTRACIONES en la barra de navegación */
.nav-button-demo {
    display: inline-block;
    border-radius: 50px;
    padding: 10px 24px;
    background-color: #ffc451;
    color: #000;
    border: 2px solid #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover */
.nav-button-demo:hover {
    background-color: white; 
    color: #000;
}

/* Ajuste para móviles */
@media screen and (max-width: 768px) {
    .nav-button-demo {
        padding: 8px 20px;
        font-size: 13px;
    }
}




/**** Mostrar solo en móviles boton demos */
@media screen and (max-width: 768px) {
    .hero__button-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 340px !important;
        z-index: 1;
        
        
    }
}

/* Estilo del botón */
.hero__button {
    border-radius: 50px;
    padding: 14px 32px;
    background-color: #ffc451;
    color: #000000;
    border: 2px solid #000000;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 340px !important;
  
}

.hero__button:hover {
    background-color: #ffc451;
    color: #000000;
}






.header {
    z-index: 10;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 4rem;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

/* Logo */
.header__h1 img {
    max-width: 60%;
    height: auto;
}

/* Navegación escritorio */
.header__nav.desktop__nav {
    display: block;
}

/* Navegación móvil */
.header__nav.mobile__nav {
    display: none;
}



/* Móvil vertical */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .header__h1 {
        width: 100%;
        text-align: center;
    }

    .header__h1 img {
        max-width: 80%;
        margin: 0 auto;
    }

    .header__nav.desktop__nav {
        display: none;
    }

    .header__nav.mobile__nav {
        display: block;
    }
}

/* Móvil horizontal */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .header__h1 {
        width: 80%;
        text-align: center;
    }

    .header__h1 img {
        max-width: 70%; 
        margin: 0 auto;
    }

    .header__nav.desktop__nav {
        display: none; /* ocultamos navegación desktop en landscape */
    }

    .header__nav.mobile__nav {
        display: block;
    }
}





/******************************/
/*********************************/
/**********************************/





.iconos__mobile {
    display: none;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    transform: translateX(-1rem);
    /* Mueve todo el bloque a la izquierda */
}
.abrir__lang,
.abrir__menu,
.arrow__lang {
    width: 32px;
    height: 32px;
    color: var(--bgColorWhite);
}
/***********
.modal__mobile {
    display: none;
    width: 100%;
}

.modal__mobile.menuActive {
    display: block;
    position: absolute;
    top: 100%;
   
    left: 0;
    width: 100%;
    background-color: white;
  
    padding: 2rem;
    z-index: 999;
}
***************/
.cerrar__menu {
    display: none;
    width: 24px;
    height: 24px;
    color: var(--primaryColor);

}



.header__ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.header__li,
.header__li a {
    color: var(--bgColorWhite);
    font-size: 18px;
    line-height: 16px;
    text-decoration: none;
}

.liAnimation a:hover {
    font-weight: 500;
    color: #ffc451;
}






/*******************************/

.content {
    margin: 0 auto;
    max-width: 100%;
}




/************************************/
/*************boton arriba**********/
/**************************************/

.toupbutton {
    visibility: hidden;
    position: fixed;
    z-index: 4;
    left: 2rem;
    bottom: 10px;
    width: 48px;
    height: 48px;
    transition: all 0.5s ease;
    transform: scale(0);
    opacity: 0;
    background: #ffc451;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toupbutton i {
    font-size: 24px;
    color: #000;
    /* Cambia el color del ícono */
}

.toupbutton.upIsActive {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    cursor: pointer;
}


/*****************tecnologia***************/
/*****************tecnologia***************/
/*****************tecnologia***************/


/* Estilos base */
.technology {
    padding: 3rem 1rem;
    background: #f5f5f5;
    width: 100%;
}

.h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Contenedor del slider */
.tech-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
}

/* Track del slider (contiene las slides) */
.tech-slider-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Estilos de cada slide */
.tech-slide {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1 1 300px;
}

/* Caras de la slide */
.tech-slide-front,
.tech-slide-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    box-sizing: border-box;
    transition: all 0.5s ease;
    backface-visibility: hidden;
}

.tech-slide-front {
    background-size: cover;
    background-position: center;
    z-index: 2;
    transform: rotateY(0deg);
}

.tech-slide-front h3 {
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
    width: 90%;
}

.tech-slide-back {
    background: #ffc451;
    color: black;
    transform: rotateY(180deg);
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Fondos de las slides */

/* Efecto hover para desktop */
.tech-slide:hover .tech-slide-front {
    transform: rotateY(180deg);
}

.tech-slide:hover .tech-slide-back {
    transform: rotateY(0deg);
}

/* Puntos indicadores */
.tech-slider-dots {
    display: none;
    /* Oculto por defecto */
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.tech-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tech-dot.active {
    background-color: #333;
}

/* Versión móvil */

@media (max-width: 768px) {
    .tech-slider-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 20px;
        justify-content: flex-start;
    }

    .tech-slider-track::-webkit-scrollbar {
        display: none;
    }

    .tech-slide {
        min-width: calc(85% - 16px);
        flex: 0 0 auto;
        scroll-snap-align: start;
        margin-right: 16px;
        perspective: 1000px;
        transform-style: preserve-3d;
    }

    .tech-slider-dots {
        display: flex;
    }

    /* Efecto flip para móvil al hacer clic */
    .tech-slide.active-flip .tech-slide-front {
        transform: rotateY(180deg);
    }

    .tech-slide.active-flip .tech-slide-back {
        transform: rotateY(0deg);
    }

    /* Asegurar posición correcta de las caras */
    .tech-slide-front,
    .tech-slide-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        transition: transform 0.6s ease;
    }

    .tech-slide-back {
        transform: rotateY(-180deg);
    }

    /* Desactivar hover en móvil */
    .tech-slide:hover .tech-slide-front,
    .tech-slide:hover .tech-slide-back {
        transform: none;
    }

        /* Activar color del punto según input seleccionado */
        input#slide1:checked~.tech-slider-container .tech-slider-dots label[for="slide1"],
        input#slide2:checked~.tech-slider-container .tech-slider-dots label[for="slide2"],
        input#slide3:checked~.tech-slider-container .tech-slider-dots label[for="slide3"] {
            background-color: #333;
        }
}









/******************* PUBLICITY****************/
/******************* PUBLICITY****************/
/******************* PUBLICITY****************/


.publicity {
    padding: 4rem 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background-color: var(--bgColorWhite);
}

.publicity__text {
    max-width: 800px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.publicity__p {
    font-size: 16px;
    line-height: 1.2em;
    text-align: center;
    color: var(--primaryColor);
}

.publicity__p .bold {
    font-weight: 600;
}

.publicity__p .italic {
    font-style: italic;
}

.buttons__wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 12px 16px;
    border: 1px solid var(--primaryColor);
    border-radius: 50px;
    transition: all .5s ease;
    box-shadow: 0px 5px 5px #1a1a1a33;
}

.publicity__button {
    color: var(--primaryColor);
    padding: 8px 28px;
    border-radius: 32px;
    min-width: 120px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    transition: all .5s ease;
}

.publicity__button:hover {
    background-color: var(--secondaryColor);
    box-shadow: 0px 0px 4px 4px var(--secondaryColor);
}

.publicity__button.tabIsActive {
    background-color: var(--secondaryColor);
    box-shadow: 0px 0px 4px 4px var(--secondaryColor);
}

.tabs__wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.publicity__tabs {
    opacity: 0;
    width: 100%;
    padding: 3rem;
    min-height: 140px;
    min-width: 1300px;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}

.publicity__tabs.tabIsActive {
    opacity: 1;
}

.tabIsActive {
    position: static;
    visibility: visible;
}

.data__tab {
    font-size: 48px;
    color: var(--primaryColor);
}

.amount__wrapper {
    max-height: 54px;
    overflow: hidden;
}

.amount__animation {
    min-width: 282px;
    transform: translateY(0px);
    transition: all .5s ease;
}

.amount__span {
    color: var(--primaryColor);
    display: block;
    font-size: 48px;
    padding: 3px 0px;
    line-height: 1em;
    text-align: left;
}

.amount__span.align__right {
    text-align: right;
}

.data__span {
    font-size: 48px;
    margin: 0 1rem;
    font-weight: 200;
    font-style: italic;
}

.sites__tab {
    max-width: 1300px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 0rem 4rem;
}

.sites__img {
    width: 140px;
    object-fit: none;
}

.context__tab {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.context__pill {
    padding: 2rem 3rem;
    border: 1px dashed var(--primaryColor);
    border-radius: 100px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    color: var(--primaryColor);
    gap: .5rem;
}

.context__title {
    font-size: 32px;
    line-height: 1em;
    font-weight: 300;
    font-style: italic;
}

.context__p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1em;
}

.context__span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    font-style: italic;
}

/* AQUI TERMINA LA SECTION PUBLICITY*/
/* AQUI COMIENZA LA SECTION PREMIUM*/
.premium {
    padding: 3rem 0 0;
    background-color: var(--bgColorGray);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.premium .h2 {
    padding-bottom: 2rem;
}

.premium__text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;

}

.premium__span {
    font-size: 16px;
    font-style: italic;
    color: var(--primaryColor);
}

.premium__span:nth-child(2) {
    background-color: var(--secondaryColor);
    box-shadow: 0px 0px 4px 4px var(--secondaryColor);
    border-radius: 24px;
    margin: 1rem 0;
}

.premium__span span {
    font-weight: 600;
}



.tabs__button {
    padding: 1rem;
    width: 50%;
    color: var(--primaryColor);
    font-size: .75rem;
    font-weight: 700;
    cursor: none;
    transition: all .5s ease;

    &:hover {
        font-size: .9rem;
    }
}







/* AQUI TERMINA LA SECTION PREMIUM*/

/******** AQUI EMPIEZA LA SECTION CLIENTS*************/
/******************************************************/
.clients {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    background-color: var(--primaryColor);
}

.clients .h2 {
    color: var(--bgColorWhite);
}

.clients__wrapper {
    width: 100%;
    overflow: hidden;
}

.clients__carrousel {
    display: flex;
    gap: 6rem;
    animation: slideLogos 15s linear infinite;
}

.clients__img {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    object-fit: contain;
}

@keyframes slideLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* AQUI TERMINA LA SECTION CLIENTS*/


/*******************************************************/
/*************** AQUI EMPIEZA LA SECTION IMPACT*******/
/*****************************************************/

.impact {
    background-color: #ffffff;
}

.impact__accordion {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.accordion__item {
    width: 100%;
    padding: 2rem 8rem 1rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid var(--primaryColor);
}

.item__title {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    transition: all .5s ease;
}


.accordion__title {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1em;
    font-weight: 300;
    color: var(--primaryColor);
    display: inline-flex;
    align-items: center;
}

.impact-icon {
    width: 20px;
    /* Ajusta el tamaño según lo necesites */
    height: auto;
    margin-left: 8px;
    margin-right: 8px;
    vertical-align: middle;
}

.accordion__span {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1em;
    font-weight: 300;
    color: var(--primaryColor);
}

.accordion__svg {
    display: none;
    width: 24px;
    height: 24px;
    transition: all .5s ease;
}

.accordion__svg:hover {
    transform: scale(1.1);
}

.accordion__svg.accordionActive {
    display: block;
}

.item__text {
    opacity: 0;
    height: 0px;
    width: 60%;
    transition: all .5s ease;

}

.item__text.accordionActive {
    opacity: 1;
}

.accordion__p {
    font-size: 16px;
    line-height: 1.5em;
    color: var(--primaryColor);
    pointer-events: none;
    padding-bottom: 1rem;
}

/* AQUI TERMINA LA SECTION IMPACT*/

/************* AQUI COMIENZA LA SECTION AUDIENCE***********/
.cards__article {
    scroll-snap-align: center;
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .5rem;
    background-color: var(--bgColorWhite);
    color: var(--primaryColor);
    padding: 1rem;
    border-radius: 12px;
    line-height: 1em;
}

/*****
.cards__article {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: calc(85% - 16px);
    margin-right: 16px;
}
 ****/
.cards__note {
    font-size: 18px;
    font-weight: 600;
}

.cards__img {
    border-radius: 12px;
    margin: .5rem 0;
}

.cards__title {
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 600;
}

.cards__author {
    font-size: 13px;
}

.cards__date {
    font-size: 14px;
}



/************************************/
/***********audience***************/
/************************************/
/****************************************/
/* Estilos para el slider de audience */




.audience__cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 32px;
    padding-bottom: 20px;
}

.audience__cards::-webkit-scrollbar {
    display: none;
}
.audience {
    padding: 3rem 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--bgColorGray);
    overflow: hidden;
}

.audience__text {
    max-width: 800px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 2rem;
}

.audience__p {
    font-size: 16px;
    line-height: 1.2em;
    text-align: center;
    color: var(--primaryColor);
}


/* Estilos para los puntos indicadores */
.audience__pointers {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.pointer__item {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pointer__item.actual {
    background-color: #333;
}

/* Ocultar en desktop */
@media (min-width: 961px) {
    .mobile-only {
        display: none;
    }

}

/* AQUI TERMINA LA SECTION AUDIENCE*/

/* AQUI COMIENZA LA SECTION ATTENTION*/
.attention {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--primaryColor);
    gap: 3rem;
}

.attention h2 {
    color: var(--bgColorWhite);
}

.attention__text {
    max-width: 600px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.attention__p {
    font-size: 16px;
    line-height: 1.2em;
    text-align: center;
    color: var(--bgColorWhite);
}

.attention__p span {
    font-weight: 600;
}

.checkbox__form {
    padding: .5rem 0;
}

.label-custom {
    font-size: 16px;
}

.label-custom {
    display: inline;
    font-weight: 600;
    color: var(--secondaryColor);
}



.checkbox__form {
    display: flex;
    gap: 1rem;
}

textarea {
    resize: none;
    padding: 1rem 2rem;
}


/***********mapa***************/




.map {
    padding: 3rem 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background-color: var(--bgColorWhite);
}

.map__picture {
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.map__img {
    width: 100%;
    height: auto;
}

.map__wrapper {
    position: relative;
    width: 50%;
}

.map__message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #fff;
    opacity: 0;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    animation: scaleInFromOut 4s ease-in-out infinite;
    transform-origin: center;
}



@media (max-width: 768px) {
    .map__wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 300px;
    }

    .map__message {
        font-size: 1.2rem;
        max-width: 90%;
        text-align: center;
        padding: 0 1rem;
        opacity: 1;
    }
}

@keyframes scaleInFromOut {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}




















/******footer***************/


.table__desktop {
    display: block;
}

.table__mobile {
    display: none;
}


@media screen and (max-width:1400px) {
    .publicity__tabs {
        min-width: 100%;
    }

    .premium__img {
        width: 180px;
    }
}

@media screen and (max-width:1300px) {
    body.hidden {
        overflow: hidden;
    }

    .cerrar__menu {
        display: block;
    }

    .header__nav.desktop__nav {
        display: none;
    }

    .header__nav.mobile__nav {
        display: block;
    }

    .iconos__mobile {
        display: flex;
    }

    .modal__mobile {
        display: none;
        min-height: 100dvh;
        width: 100%;
        position: fixed;
        top: 250px;
        left: 0;
        flex-flow: column nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 4rem;
        background-color: var(--bgColorWhite);
        gap: 2rem;
    }

    .menuActive {
        display: flex;
    }

    .logos__mobile {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .header__ul {
        flex-flow: column nowrap;
        gap: 2rem;
    }

    .header__li a {
        border-radius: 40px;
        font-size: 16px;
        text-align: center;
        border: 1px solid var(--primaryColor);
        min-width: 320px;
        padding: 24px 48px;
        color: var(--primaryColor);
        margin-right: 50px;
    }

    .header__li:last-child {
        display: none;
    }

    .header__li:hover a {
        background-color: var(--secondaryColor);
    }



    .publicity {
        overflow: hidden;
    }

    .premium {
        overflow: hidden;
    }

    .audience {
        overflow: hidden;
    }

    .premium__img {
        width: 140px;
    }


}

@media screen and (max-width:1040px) {
    .amount__animation {
        min-width: 0px;
    }

    .tabs__wrapper-engage {
        flex-flow: column nowrap;
    }

    .tabs__wrapper-engage:nth-child(2) {
        flex-flow: column-reverse nowrap;
    }


    .premium__img {
        width: 180px;
    }
}

@media screen and (max-width:960px) {
    .cookies {
        min-height: 100dvh;
        padding: 2rem;
    }

    .cookies.show {
        bottom: 120px;
    }

    .cookies__wrapper {
        width: 100%;
        border-radius: 24px;
    }

    .cookies__p {
        width: 100%;
    }

    html {
        scroll-behavior: smooth;
        cursor: auto;
    }

    .cursor {
        visibility: hidden;
        pointer-events: auto;
    }

    .cursor,
    .connect__p {
        text-align: center;
    }

   

    /****************************/
    /******tecnologia***********/
    /****************************/

    .h2 {
        font-size: 32px;
    }

    .technology {
        padding: 3rem 0;
        gap: 0;
    }



    .technology__slider {
        display: none;
    }

    .swiper {
        width: 100%;
        margin: 0 auto;
    }

    .technology__slider.wrapper__desktop {
        display: none;
    }


    .swiper.mySwiper {
        display: block;
        transition: all .5s ease;
        min-height: 368px;
    }

    .swiper-wrapper {
        width: 100%;
        height: 100% !important;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        scroll-behavior: smooth;
        margin: 0 auto;
        padding: 2rem 0;
        transition: all 1s ease;
    }

    .swiper-slide {
        width: 100%;
        position: relative;
        border-radius: 24px;
        box-shadow: none;
        height: 340px;
        transition: all 1s ease;
    }

    .swiper-slide.isOpen {
        overflow-y: visible;
        height: 496px;
    }

    .swiper-pagination-bullet-active-next,
    .swiper-pagination-bullet-active-prev {
        transform: scale(0) !important;
    }

    .swiper-pagination-bullet-active-next-next,
    .swiper-pagination-bullet-active-prev-prev {
        display: none;
        transform: scale(0) !important;
    }

    .swiper-slide .bg__one {
        background-image: url("/assets/slider-1.jpg");
    }

    .swiper-slide .bg__two {
        background-image: url("/assets/slider-2.jpg");
    }

    .swiper-slide .bg__three {
        background-image: url("/assets/slider-3.jpg");
    }

    .technology__card {
        width: 100%;
        padding: 2rem 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        box-shadow: 0px 5px 5px #2E2D2C33;
    }

    .technology__wrapper {
        height: 240px;
        transition: all 1s ease;
    }

    .technology__wrapper.isOpen {
        height: 240px;
        margin-bottom: -40px;
    }

    .technology__card.slider__mobile {
        aspect-ratio: auto;
        position: relative;
        z-index: 1;
    }

    .swiper-slide:hover .h3 {
        opacity: 1;
    }

    .technology__hover.slider__mobile {
        z-index: 0;
        height: 220px;
        opacity: 1;
        border-radius: 24px;
        border: 4px solid var(--bgColorWhite);
        position: relative;
        top: -240px;
        padding: 3rem 2rem 2rem;
        background-color: var(--bgColorGray);
        transition: all 1s ease;
        box-shadow: 0px 5px 5px #2E2D2C33;
        overflow: hidden;
    }

    .technology__wrapper.isOpen .technology__hover {
        top: -40px;
        height: 240px;
    }

    .swiper-slide.slider__mobile.isOpen {
        height: 572px;
    }

    .technology__card {
        width: 100%;
    }

    .technology__p.slider__mobile {
        font-size: 16px;
        color: var(--primaryColor);
    }

    .technology__p span {
        font-size: 16px;
    }

    .trigger__slider {
        width: 100%;
        position: relative;
        bottom: 240px;
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        z-index: 2;
        transition: all 1s ease;

    }

    .technology__wrapper.isOpen .trigger__slider {
        bottom: 60px;
    }

    .trigger__open,
    .trigger__close {
        display: none;
        background-color: var(--bgColorWhite);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        border: .0625rem solid var(--bgColorWhite);
        box-shadow: 0px 5px 5px #2E2D2C22;
    }

    .iconTrigger {
        display: block;
    }

    span.swiper-pagination-bullet {
        height: .5rem;
        width: 1.875rem;
        border-radius: 32px;
        border: .5008px solid #2E2D2C66;
        background-color: var(--bgColorWhite);
        opacity: 0.5;
    }

    span.swiper-pagination-bullet-active {
        background-color: var(--bgColorWhite);
        opacity: 1;
    }




    /********************************/
    /**********publicidad***********/
    /********************************/



    .publicity {
        padding: 3rem 1rem;
        overflow: hidden;
    }

    .publicity__text {
        padding: 0 2rem;
        margin: 0;
    }

    .publicity__tabs {
        min-width: 100%;
        padding: 2rem;
    }

    .publicity__button {
        min-width: fit-content;
    }

    .data__tab {
        padding: 1rem;
    }

    .amount__wrapper {
        max-height: calc(2rem + 6px);
    }

    .amount__span {
        font-size: 2rem;
        padding: 3px 0px;
    }

    .data__span {
        font-size: 2rem;
    }

    .data__span:nth-child(2) {
        margin: 0 .5rem;
    }

    .sites__tab {
        gap: 0 2rem;
        padding: 0rem;
    }

    .sites__img {
        min-height: 70px;
    }

    .context__tab {
        padding: 0 2rem;
    }

    .tabs__wrapper-engage {
        width: 100%;
        padding: 2rem 0;
        gap: 1rem;
    }

    .premium h2 {
        padding: 0 1rem;
    }

    .clients {
        padding: 3rem 0rem;
        overflow: hidden;
    }

    .clients__carrousel {
        width: 500%;
        gap: 3rem;
        animation: 18s slideLogos infinite linear;
    }

    @keyframes slideLogos {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-80%);
        }
    }

    .impact {
        padding: 3rem 0rem 0;
    }

    .impact__text {
        padding: 0 3rem;
    }

    .accordion__item {
        gap: 1rem;
        padding: 2rem 2rem 1rem;
    }

    .item__text {
        width: 100%;
    }

    .audience {
        width: 100%;
        padding: 3rem 2rem;
        align-items: flex-start;
    }

    .audience .h2 {
        margin: 0 auto;
    }

    .audience__text {
        margin: 0 auto;
    }

   

    .cards__article {
        scroll-snap-align: start;
        width: calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }

   
    .attention {
        min-height: 90dvh;
        background-image: url(../assets/boladeluz2.gif);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .safety__icons {
        flex-flow: row nowrap;
    }

    .legal {
        justify-content: center;
    }

    .table__desktop {
        display: none;
    }

    .table__mobile {
        display: block;
    }
}

@media screen and (max-width:620px) {
    .amount__wrapper {
        max-height: calc(20px + 6px);
    }

    .amount__span {
        font-size: 20px;
        padding: 3px 0px;
    }

    .data__span {
        font-size: 20px;
    }

    .audience__cards {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        gap: 2rem;
    }

    .cards__article {
        width: calc(100%);
        min-width: calc(100%);
    }

    .audience__pointers {
        width: 100%;
        gap: 1rem;
    }

    .pointer__audience {
        width: 140px;
    }

    .swiper-slide {
        max-width: 85%;
        aspect-ratio: 4 / 3;
    }

    .technology__wrapper {
        height: 256px;
    }

    .technology__wrapper.isOpen {
        height: 256px;
    }

    .technology__card {
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .header {
        padding: 0.5rem;
    }

    .modal__mobile {
        padding: 2rem;
    }

    .cookies {
        min-height: 100dvh;
        padding: 2rem;
    }

    .cookies.show {
        bottom: 120px;
    }

    .cookies__wrapper {
        padding: 2rem 1rem;
    }

    .cookies__wrapper .cookies__buttons {
        width: 100%;
        flex-flow: column-reverse nowrap;
        gap: 1rem;
    }

    .cookies__button {
        width: 100%;
    }

    .header__li a {
        border-radius: 40px;
        font-size: 16px;
        text-align: center;
        border: 1px solid var(--primaryColor);
        min-width: 320px;
        padding: 16px 24px;
        color: var(--primaryColor);
    }

    .h2 {
        font-size: 24px;
        text-align: center;
    }

    
    .highlight__text::before,
    .secondHighlight::before {
        content: '';
        transform: scaleX(0%);
        width: calc(100% + 16px);
        height: 20px;
        position: absolute;
        top: 0;
        left: -8px;
        background-color: var(--secondaryColor);
        animation: highlightTextFirst 5s ease-in-out 1s infinite running;
        transform-origin: 0%;
    }

    .secondHighlight::before {
        animation: highlightTextSecond 5s ease-in-out 2s infinite running;
    }

    @keyframes highlightTextFirst {
        0% {
            transform: scaleX(0%);
        }

        25% {
            transform: scaleX(100%);
        }

        50% {
            transform: scaleX(100%);
        }

        75% {
            transform: scaleX(100%);
        }

        100% {
            transform: scaleX(0%);
        }
    }

    @keyframes highlightTextSecond {
        0% {
            transform: scaleX(0%);
        }

        25% {
            transform: scaleX(100%);
        }

        50% {
            transform: scaleX(100%);
        }

        75% {
            transform: scaleX(0%);
        }

        100% {
            transform: scaleX(0%);
        }
    }

    .technology .h2 {
        margin-bottom: 2rem;
    }

    .swiper.mySwiper {
        min-height: 304px;
    }

    .swiper-slide.isOpen {
        overflow-y: visible;
        height: 534px;
    }

    .swiper-wrapper {
        padding: 0rem;
        height: 100% !important;
    }

    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 0rem;
    }

    .swiper-slide {
        max-width: 85%;
        aspect-ratio: 4 / 3;
    }

    .technology__wrapper {
        height: 256px;
    }

    .technology__wrapper.isOpen {
        height: 256px;
    }

    .technology__card {
        width: 100%;
    }

    .technology__hover {
        padding: 1rem;
    }

    .technology__p {
        font-size: 14px;
    }

    span.swiper-pagination-bullet {
        width: 2.125rem;
    }

    .publicity__text {
        padding: 0 1rem;
    }

    .publicity__button {
        padding: 8px 12px;
    }

    .publicity__tabs {
        padding: 0rem;
        min-height: 80px
    }

    .amount__wrapper {
        max-height: calc(20px + 6px);
    }

    .amount__span {
        font-size: 20px;
        padding: 3px 0px;
    }

    .data__span {
        font-size: 20px;
    }

    .context__tab {
        gap: 2rem;
        padding: 2rem 0;
    }

    .context__pill {
        padding: 1rem 2rem;
    }

    .context__title {
        font-size: 28px;
    }

    .tabs__wrapper-engage {
        gap: 0rem;
    }

    .tabs__wrapper-engage:nth-child(2) {
        flex-flow: column-reverse nowrap;
    }

    .content__button.mobile {
        display: block;
    }

    .content__button.desktop {
        display: none;
    }

    .accordion__item {
        padding: 3rem 2rem 2rem 2rem;
    }

    .accordion__span .show {
        display: none;
    }

    .pointer__audience.tablet {
        display: block;
    }

  

    .icons__img {
        object-fit: none;
        height: 40px;
    }

    .map__wrapper {
        width: 100%;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 0 2rem;

    }

    .map__picture {
        width: 900px;
        max-width: 900px;
    }

    .map__img {
        display: block;
        width: 100%;
    }

   

   
   

}

