@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;400;500;700;900&family=Roboto+Serif:wght@200;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Maze&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;400;500;700;900&family=Roboto+Mono:wght@200;400;700;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}


/* *****ANIMACIONES GENERALES ******* */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(0);
  will-change: opacity, transform;
  /* La transición funciona en AMBAS direcciones (entrada y salida/reversa) */
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estado Visible (Activado por JS) */
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variación: Entrar desde la izquierda (opcional) */
.animate-on-scroll.slide-left {
  transform: translateX(-50px);
}

.animate-on-scroll.slide-right {
  transform: translateX(50px);
}

.animate-on-scroll.slide-down {
  transform: translateY(24px);
}


/* Estado Final: Cuando JS añade esta clase, el elemento se anima */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0); /* Vuelve a su posición original */
}

.showlate{
    opacity: 1;
    transition: opacity 1s ease;
    transition-delay: 2s;
}

.delay{transition-delay: 1.2s;}
.delay2{transition-delay: 2.4s;}

.delayAction1{ transition-delay: 0.6s;}
.delayAction2{ transition-delay: 1s;}
.delayAction3{ transition-delay: 1.4s;}

/*******.  Estilos de FUENTES en la pagina ************/
.bold-40 {
    font-size: 40px;
    font-weight: bold;
}

.serif-light-48 {
   font-family: 'Roboto Serif', serif;
    font-size:48px;
    font-weight: 200;
}
.serif-light-56 {
   font-family: 'Roboto Serif', serif;
    font-size:56px;
    font-weight: 200;
}

.bold-48 {
    font-size: 48px;
    font-weight: bold;
}

/* estilos de fuuentes presentacion *************/

.serif-56-semi {
    font-family: 'Roboto Serif', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: .9em;
    letter-spacing: -2px;
}

.serif-24-light {
    font-family: 'Roboto Serif', serif;
    font-size: 24px;
    font-weight: 300;
    vertical-align: top;
}

.roboto-16-semi {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.roboto-24-light {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.1;
    
}



.roboto-light-32 {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
}

.roboto-black-32 {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.roboto-regular-16 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 2rem;
}

.serif-18-light {
    font-family: 'Roboto Serif', serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}

.serif-24-bold {
    font-family: 'Roboto Serif', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.roboto-light-20 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
    width: 300px;
}

.roboto-serif-40 {
    font-family: 'Roboto Serif', serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1;
    display: inline-block;
    width: 400px;
}

/* FIN FUENTES PRESENTACION **********/


/* --- A. ESTILOS DEL PRELOADER --- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #ffffff;
  z-index: 9999; /* Por encima de todo */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}

/* Cuando JS detecte que la página cargó, añadimos esta clase para ocultarlo */
body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
}

/* Spinner sencillo */
.spinner {
  width: 40px; height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/*FUENTES ******************/
.rubik-mono {
    font-family: 'Rubik Mono One', monospace;
}
.rubik-maze {
    font-family: 'Rubik Maze', monospace;
}





/* Estilos para el header */
header {
    position: Fixed;
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding:4px 24px;
    width: 80%;
    /*height: 60px; /* Altura fija para el header */
    z-index: 10000;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    left:50%;
    transform: translateX(-50%);
    margin-top: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    flex-shrink: 0;
}

.logo img
{
    height: 40px;
}


.download-btn {
    background-color: #F90C71;
    color: white;
    border: none;
    padding: 8px 32px;
    font-size: 1em;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

.download-btn:hover {
    background-color: #D6095F;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-btn svg {
    display: block;
}

/* Estilos para la sección de presentación */
.presentation {
    height: 100vh; /* Altura completa de la ventana para acomodar la caja */
    padding: 20px;
    display: block;
    position: relative;
    width: 100vw;
}

.bg-presentation{
    position: absolute;
    display: block;
    width: 80vw;
    height: 60vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #F90C71;
    background: linear-gradient(103deg,rgba(249, 12, 113, 1) 0%, rgba(147, 7, 67, 1) 100%);
    border-radius: 48px;
    z-index: 1;
} 


.letters {
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    view-timeline-name: --sectionScroll-letters;
}

.letters img {
    position: relative;
    padding-left:.3rem;
    padding-right:.3rem;
    z-index: 200;
}

.letter-svg {
    opacity: 0;
    width: 17.75vw;
    height: 40vh;
    object-fit: contain;
}

.letter-n {
    width: 16.75vw ;
    transform: translate(-50px, -50px) rotate(-20deg);
    animation: translate ease; 
    animation: move-n-Scroll 1s ease;
    animation-timeline: --sectionScroll-letters;
    animation-range: exit 0% exit 90%;
}

.letter-u{
    transform: translate(-15px, -35px) rotate(-10deg);
    animation: translate ease;    
    animation: move-u-Scroll 1s ease;
    animation-timeline: --sectionScroll-letters;
    animation-range: exit 0% exit 90%;    
}

.letter-a{
    transform: translate(50px, -50px) rotate(20deg);
    animation: translate ease;        
    animation: move-a-Scroll 1s ease;
    animation-timeline: --sectionScroll-letters;
    animation-range: exit 0% exit 90%;
}

.moveletter
{
    opacity: 1;
    transform: translate(0px, 0px);
    transform :rotate(0deg);
    transition: opacity 1s ease, transform 1s ease;
}

@keyframes move-n-Scroll{
    0% { transform: translate(0px, 0px) rotate(0deg); } 
    100% {transform: translate(-50px, -50px) rotate(-20deg);  }
}
@keyframes move-u-Scroll{
    0% { transform: translate(0px, 0px) rotate(0deg); } 
    100% {transform: translate(-15px, -35px) rotate(-10deg);  }
}

@keyframes move-a-Scroll{
    0% { transform: translate(0px, 0px) rotate(0deg); } 
    100% {transform: translate(50px, -50px) rotate(20deg);  }
}

.letter-n {
    transition-delay: 0s;
}

.letter-u{
    transition-delay: 0.4s;
}
.letter-m{
    transition-delay: 0.2s;
}

.letter-a{
    transition-delay: 0.6s;
}

.presentation-image {
    opacity: 0;    
    position: absolute;
    top: calc(30vh - 100px);
    right: 50.5vw;
    width: 37.5vw;
    height: auto;
    z-index: 100;
}

.showChica1{
    opacity: 1;
    transition: opacity 1.2s ease-in-out;
    transition-delay: 0.8s;
}

.presentacion-nextsection {
    width: 100%;
    height: 80vh;
    display: block;
}


.text-content {
    position: relative;
    left: 53vw;
    top: 15%;
    transform: translateY(-50%);
    max-width: 450px;
    text-align: left;
}

.text-content span{
    color: #D6095F;
    font-family: 'Roboto Serif', serif;
    font-size: 3.5em;
    font-weight: 600;
    color:#D6095F;
    line-height: 0.8;
    letter-spacing: -2px;
}

.text-content span.para{
    font-size: 1.4em;
    font-weight: 300;
    vertical-align: top;
    
}

.text-content p{
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color:#121212;
    font-weight: 600;
    max-width: 70%;
    line-height: 1.2;
    margin-top: 1em;
}

.text-content p.description{
    font-size: 1.4em;
    font-weight: 300;
}


.text-m {
    opacity: 0;
    position: absolute;
    left: 50vw;
    top: 25vh;
    width: 17.75vw;
    min-height: 100px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-align: left;
    line-height: 1.1;
    z-index: 600;
}

.text-below {
    opacity:0;
    position: absolute;
    top: calc(70vh + 35px);
    left: 50vw;
    text-align: left;
    z-index: 3;
    line-height: 1;
    color: #ffffff;;
}

.text-below span
{
    font-family: 'Robot', sans-serif;
    font-size:40px;
    font-weight: 200;  
     letter-spacing: -2px;
}

.text-below span.para{
    color:#121212;
    font-size:32px;
}

.text-below span.reales{
    font-weight: 600;  
    font-size:48px;
    color:#121212;
   
}


/*Seccion sin juicios *******/


.sinjuicios {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: auto;
    view-timeline-name: --este;
    
}

.content-sinjuicios
{
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    padding-top: 5rem;
    padding-left: 10rem;
    height:120vh;
}

.bgsinjuicios{   
    opacity: 0;;
    position: absolute;
    z-index: 0;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #C2E9F6;
    background: linear-gradient(140deg,rgba(194, 233, 246, 1) 0%, rgba(141, 188, 203, 1) 100%); 
    animation: background-opacity ease;
    animation-timeline: --este;
    animation-range: entry 40% exit 90%;    
}   

@keyframes background-opacity {
    0%{opacity:0;}
    50%{opacity:1;}
    100%{opacity:0;}
}

.description-sinjuicios
{
    max-width: 50%;
}

.left-part {
    width: 50%;   
    display: flex;
    flex-direction: column;    
}

.left-part p{
    font-size: 0.8em;
    font-weight: 400;
    line-height: 1;
}

.left-text1, .left-text2 {
    text-align: left;
   margin-bottom: 5%;

}

.mensajes {
    min-width: 500px;
    min-height: 300px;
    padding-left: 15%;
    height: auto;

}

.chat
{
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    padding: 1.2em;
    line-height: 1.1;
    box-shadow:0px 8px 32px rgba(0, 0, 0, 0.2);
    background-color:#ffffff;
    max-width: 300px;
    font-size: 0.8em;
    background-color:rgba(255, 255, 255, 0.9)
    
}

.mensajes div{
    margin-top: 5px;
   position: relative;
}

.chat p{
    color: #121212;
    font-weight: 600;
}
.chat span{
    color: #010101;
    font-weight: 400;
}


.chat.chat1{
     background-color:rgba(255, 140, 97, 0.7);
}
.chat.chat3{
    background-color:rgba(194, 233, 246, 0.9);
}

.chat.chat1{margin-left: 10%; z-index: 3;}
.chat.chat2{margin-left: 0%; z-index: 2; }
.chat.chat3{margin-left: 15%; z-index: 3;}
.chat.chat4{margin-left: 6%;z-index: 2; }
.chat.chat5{margin-left: 1%; z-index:1;}


.right-part {
    width: 50%;
    display: inline-flex;
    position: relative;
}

.right-part img{
    position: absolute;
}

.right-part img.chica-sin{
    top:0;
    left:-10%;
    z-index: 5;
}
.right-part img.etiquetas-sin{
    top:0;
    left:-10%;
    z-index: 4;
}
.right-part img.logo-sin{
    top:0;
    left:40%;
    width: 50%;
    z-index: 3;
}

/*.image-compo {
    position: absolute;
    top:15%;
    left:40%;
    width: 50%;
    z-index: 6;
    
}*/


 .main-wrapper{
    height: 400vh;
    view-timeline-name: --sectionScroll;
}


.horizontal-track{
    display:flex;
    height: 100%;
    align-items: center;
    /*will-change: transform;*/

    animation: scrollHorizontal linear both;        
    animation-timeline: --sectionScroll;
    animation-range: contain 25% contain 100%;
   
}

.image-card-wrapper{
    min-width: 100vw;
    height: 100vh;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticky-container{
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    /*overflow: hidden;*/
}

.sticky-wrapper{
    position: sticky;
    top:0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.estilos-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: top;
    animation: shrinkImage linear both;
    animation-timeline: --sectionScroll;
    animation-range: contain 0% contain 20%;
    position: relative;
    z-index: 6;
}

.card{
    width: 264px;
    height: 461px;
    margin-left: 20px;
    
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    flex-shrink: 0;
    position: relative;
    left:calc(-100vw/2 + 132px);
    z-index: 5;
    opacity: 0;
    animation: show-image ease both;
    animation-range: contain 20% contain 25%;
}

div.card {
    padding: 40px;
}

div.contentCard{
    padding-top: 16%;
}

.card-image
{
    position: sticky;
    z-index: 100;
    opacity: 1;
    animation: moveImage linear both;
    animation-timeline: --sectionScroll;
    animation-range: exit 0% exit 100%;
    
    
}
.titleUrban{
    position:absolute;
    top:30%;
    left:50%;
    z-index: 7;
    animation: titleMove linear both;
    animation-timeline: --sectionScroll;
    animation-range: contain 0% contain 20%;
}


@keyframes move-n{
    100%{
        transform: rotate(30deg);
        transform: translate(-25px, 25px);
    }
}

@keyframes shrinkImage{
    100%{
        width: 264px;
        height: 461px;
        border-radius: 32px;
    }
}

@keyframes titleMove {
    to {
        top: 52%;
        left: 43%;
    }
}

@keyframes scrollHorizontal {
    to{
        transform: translateX(calc(-284px*5)); /*Recorre el camino del numero de estilos menos una, margenes incluidos*/
    } 
}

@keyframes show-image{
    to {
        opacity:1;
    }
}

@keyframes moveImage {
    to{
       transform: translateY(100vh);
       opacity: 0;
    }
}





.peroquemepongohoy{
    background-color:#f0f0f0;
    background: linear-gradient(0deg,rgba(216, 216, 216, 1) 0%, rgba(216, 216, 216, 0) 100%);
    font-family: 'Roboto' sans-serif;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
}


.titulo-wrapper{
    width: 300px;
    line-height: 1;
    align-content: center;
    align-content: start;
    padding-top: 100px;
}

.titulo-pero {
    color: #121212;
    display: block;
    font-family: 'Roboto' sans-serif;
}

.titulo-wrapper img{
    position: relative;
    left:30%;
    z-index: 0;
    object-position: top right;
    height: calc(100% - 100px);
}

.tit-pero-01
{
    display: block;
    font-weight: 300;
    font-size: 2em;
}

.tit-pero-02
{
    font-weight: 900;
    font-size: 2.5em;
    text-transform: uppercase;
}

.description-pero
{
    font-weight: 400;
    font-size: 0.9em;
    color: #666666;
}



.mobileContent{
    width: 397px;
    display: block;
    align-content: center;
    position: relative;
    background-image: url("../assets/mobileShadow.png");
    background-repeat: no-repeat;
    background-position: center;


}

.mobileContent video{
    display: block;
    height: 540px;
    width: 296px;
    margin-left:50px;
    object-fit: cover; /* Asegura que cubra el área sin deformarse */
}



.action-wrapper-pero{
    display: block;
    width: 300px;
    align-content: center;
}

.ico-outfits{background-image:url("../assets/bto-outfits.svg");}
.ico-probador{background-image:url("../assets/bto-probador.svg");}
.ico-armario{background-image:url("../assets/bto-armario.svg");}
.ico-shopping{background-image:url("../assets/tag-plus.svg");}
.ico-coach{background-image:url("../assets/wardrobe.svg");}

.button-pero{
   background-color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    vertical-align: text-bottom;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
}

.button-pero:hover{
    cursor: pointer;
    background-color: #121212;
}

.button-pero:active{
    box-shadow:none;
}

.button-pero.ico-outfits:hover{background-image:url("../assets/bto-outfits-ok.svg");}
.button-pero.ico-probador:hover{background-image:url("../assets/bto-probador-ok.svg");}
.button-pero.ico-armario:hover{background-image:url("../assets/bto-armario-ok.svg");}


.obj1-pero, .obj2-pero, .obj3-pero{
    position: relative;
    padding-top: 40px;
}

.tit-obj-pero{
    display: block;
    font-family: 'Roboto' sans-serif;
    font-size: 2em;
    font-weight: 900;
    line-height:1.2;
    color: #121212;
}

.tit-obj-pero span{
    font-weight: 300;
}

.description-obj-pero{
    display: block;
    font-family: 'Roboto' sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    line-height: 1.1;
    color: #666666;
}

.aro-azul{
    position: absolute;
    z-index:-1;
    top: 20px;
    left:-20px;
    align-self: center;
    animation: show-aro 2s ease infinite;

}

@keyframes show-aro{
    0%{
        transform: scale(50%);
        opacity: 1;
    }
    100%{
        transform: scale(100%);
        opacity: 0;
    }   
}


/*SECTION TOMORROW*/

.tomorrow
{
    background-color:#D6095F; /* Color de inicio */
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;

   
}


.content-tomorrow{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#D6095F; /* Color de inicio */
    font-family:'Roboto' sans-serif;
    line-height: 1;
    letter-spacing: 0.9;
    align-items: center;
}

.tomorrow-left-part, .tomorrow-middle-part
{
    position: relative;
    height: 632px;
    width: 308px;
    background-image: url("../assets/mobile2.png");
    background-repeat: no-repeat;
    background-position: top;
    margin-right: 12px;
}

/*.tomorrow-middle-part
{
    height: 632px;
    width: 308px;
    background-image: url("../assets/mobile2.png");
    background-repeat: no-repeat;
    background-position: top;
    margin-left: 12px;
}*/

.video-content1-tomorrow, .video-content2-tomorrow
{   
    display: block;
    height: 536px;
    width: 292px;
    margin-top: 41px;
    margin-left: 8px;
    align-items: center;
}

.press-tomorrow{
    width: 100%;
    height: 100%;
    align-items: center;
    line-height: 1;
    padding: 16px;
    margin-top: 50%;
}

.press-tomorrow .aro-azul
{   
    position: absolute;
    top:inherit;
    bottom:1px;
    left:34.5%;
    z-index: 1;
}

.press-tomorrow p{
    font-family: 'Roboto Serif', serif;
    font-size: 2em;
    font-weight: 200;
    color: #121212;
    line-height: 0.8;
}

.press-tomorrow p.coach{
    font-size: 5em;
    font-weight: 900;
    color:#D6095F;
    padding-bottom: 16px;
    letter-spacing: -2px;
}

.press-tomorrow p.press-description
{
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    color:#666666;
    line-height: 1.2;

}

.press-tomorrow button
{ 
    position: absolute;
    bottom:20px;
    left:125px;
    /*transform: translate(100px,240px);*/
    z-index: 100;
}

.tomorrow-right-part{
    position: relative;
    width: 308px;
    max-width: 396px;
    margin-left: 12px;
    
}

.titulo-tomorrow{
    position: relative;
    margin-top: 60%;
}

.chico-tomorrow
{
    position: relative;
    left: -100%;
    /*margin-top: 10%;*/    
}

.tomorrow-right-part p{
    color: #fff;
    line-height: 1;
   
}

.button-pero.ico-shopping:hover{background-image:url("../assets/tag-plus-ok.svg");}
.button-pero.ico-coach:hover{background-image:url("../assets/wardrobe-ok.svg");}




.press-common
{
    display: flex;
    height: auto;
    align-items:center;
    justify-content: center;
}

.wrapper-common-press
{
    height: 70vh;
    view-timeline-name: --showtext;
}

.sticky-common-press{
    position: sticky;
    top: 0;
    height: 70vh;
    width: 100vw;
    overflow: hidden;
   
}


.text-common
{
    position: relative;
    width:90%;
    top:35%;
    height: auto;
    color: #121212;
    font-size: 2.5em;
    font-weight: 200;
    letter-spacing: 0.8 ;
    line-height: 1.1;
    font-family: 'Roboto',sans-serif;
    margin: 0 auto;
   
}


.text-common p.line1
{   
    opacity: 0;
    animation: showTextAni linear both;
    animation-timeline: --showtext;
    animation-duration: 0.1s;
    animation-range: 30% 35%;
}
    
   
.text-common p.line2
{   
    font-weight: 500;
    opacity: 0;
    animation: showTextAni linear both;
    animation-timeline: --showtext;
    animation-duration: 0.1s;
    animation-range: 35% 40%;
}
.text-common p.line3
{   
    opacity: 0;
    animation: showTextAni linear both;
    animation-timeline: --showtext;
    animation-duration: 0.1s;
    animation-range: 40% 45%;
}
.text-common p.line4
{   
    opacity: 0;
    font-weight: 900;
    animation: showTextAni linear both;
    animation-timeline: --showtext;
    animation-duration: 0.1s;
    animation-range: 45% 50%;
}
.text-common p.line5
{   
    opacity: 0;
    animation: showTextAni linear both;
    animation-timeline: --showtext;
    animation-duration: 0.1s;
    animation-range: 50% 55%
}
.text-common p.line6
{   
    opacity: 0;
    animation: showTextAni linear both;
    animation-timeline: --showtext;
    animation-duration: 0.1s;
    animation-range: 55% 60%
}




@keyframes showTextAni {
    from{
        opacity: 0,1;
    }
    to{
        opacity: 1;
    }
}


.comunidad
{
    display: block;
}



.wrapper-common
{   
    height: 80vh;
    view-timeline-name: --bocadillos;
}

.sticky-common
{
    position: sticky;
    top: 0;
    height:100vh;
    width: 100vw;
    overflow: hidden;
    display:flex;
   
}

.logoCommon
{
    margin-left: 5%;
    
}

.logoCommon .nameCommon{
    margin-top: 10%;
}

.logoCommon .photoCommon
{
    margin-top: 10%;
    height: 70%;
    
    vertical-align: top;
}

.comments{
    display: block;
}

.comments div{ 
    position: absolute;
    border-radius: 16px;
    font-family: 'Roboto', sans-serif;
    padding: 1em;
    line-height: 1;
    box-shadow:0px 8px 32px rgba(0, 0, 0, 0.2);

}

.comments div p{
    font-size: .9em;
    font-weight: 600;
    width: 100%;
}
.comments span{
    font-weight: 400;
    font-size: .8em;
}

.comment1{
    top:81%;
    left:60%;
    opacity: 0;
    background-color: #CFEEE6;
    max-width: 14em;
    z-index: 2;
    animation: animacomment1 ease forwards;
    animation-timeline: --bocadillos;
    animation-range: entry 40% 44%;
}
.comment2{
    top:82%;
    left:68%;
    opacity: 0;
    background-color: #ffffff;
    max-width: 15em;
    z-index: 3;
    animation: animacomment2 linear forwards;
    animation-timeline: --bocadillos;
    animation-range: entry 41% 48%;
}
.comment3{
    top: 83%;
    left:55%;
     opacity: 0;
    background-color: #ffffff;
    max-width: 16em;
    z-index: 2;
        animation: animacomment3 linear both;
    animation-timeline: --bocadillos;
     animation-range: entry 42% 50%;
}
.comment4{

    top:104%;
    left: 65%;
    opacity: 0;
    background-color: #D6B8D9;
    max-width: 17em;
    z-index: 1;
        animation: animacomment4 linear both;
    animation-timeline: --bocadillos;
    animation-range: entry 43% 52%;
}
.comment5{

    top:108%;
    left:55%;
   opacity: 0;
    background-color: #C3E0FF;
    max-width: 12em;
    z-index: 3;
        animation: animacomment5 linear forwards;
    animation-timeline: --bocadillos;
    animation-range: entry 44% 52%;
}

@keyframes animacomment1{
    to{opacity: 1; top:16%;}
}
@keyframes animacomment2{
    to{opacity: 1;top:24%;}
}
@keyframes animacomment3{
    to{opacity: 1;top: 32%;}
}
@keyframes animacomment4{
    to{opacity: 1;top:40%;}
}
@keyframes animacomment5{
    to{opacity: 1;top: 48%;}
}



.publica-privada
{
    display: flex;
    width: 60vw;
    vertical-align: top;
    gap:40px;
    margin: 0 auto;
    margin-bottom: 72px;
    font-family: 'Roboto Mono', monospace;

}

.publica-privada div{
    display: inline;
    width: 50%;
}

.publica-privada h5
{
    font-family: 'Roboto Mono', monospace;
    font-size: .8em;
    font-weight: 400;
    font-weight: 500;
}
.publica-privada p{
    font-size: 0.8em;
    font-weight: 300;
}



.precios
{
    display: flex;
    background-color: #f4f4f4;
    width: 100vw;
    height: 100vh;
    display: block;
    align-content: center;
    justify-content: center;

}

.preciostitulos{
    margin-left: 10%;
    display: flex;
    margin-bottom: 40px;
    align-items:end;
}

.title-price{
    line-height: 1;
    font-family: 'Roboto Serif', serif;
}

.title-price2
{
    line-height: 1;
    margin-left: 15%;

}

.tit-precios-01{
    font-size: 2em;
    color: #121212;
    font-weight: 200;
}

.tit-precios-02{
    font-size: 3em;
    color:#D6095F;
    font-weight: 900;
}

.tit-precios-03{
    font-size: 1.5em;
    color: #121212;
    font-weight: 200;
}
.tit-precios-04{
    font-size: 1.5em;
    color: #121212;
    font-weight: 900;
}

.glows-content{
    font-family: 'Roboto Mono', monospace ;
    display: flex;
    gap:32px;
    align-items: start;
    justify-content: center;
    padding-top: 40px;
}

.glows-content img{
    width: 64px;
}

.glows-content p
{
    font-size: .8em;
    width: 30%;
    line-height: 1.2;
    color: #666666;
}


.cardPrices{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:24px;
   
}
.card-price{
    width: 300px;
    height: auto;
    gap: 20px;
    border-radius: 24px;
    padding: 40px;
    background-color: #ffffff; 
     box-shadow:0px 8px 32px rgba(0, 0, 0, 0.2);
}

.boderBlue{
    border:3px solid #3498db
}
.boderBlack{
    border:3px solid #121212;
}

.card-price h2{
    font-size: 2em;
    color: #D6095F;
}

.card-price h2.pro{
    color: #3498db;
}

.card-price h2.plus{
    color: #121212;
}

.card-price .price{
    font-size: 2.5em;
    font-weight: 100;
}

.card-price .euros{
    font-size: 1rem;
}

.card-price ul{
    padding-left: 10%;
    margin-bottom: 40px;
    margin-top: 40px;
}
.card-price ul li{
    font-size: .8rem;
    font-weight: 300;
}
.card-price .price-description{
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.1;
}




.dudas{
    width: 80vw;
    margin:0 auto;
    padding-top: 72px;
    padding-bottom: 72px;
}

.titulo-dudas 
{
    line-height: 1.2;
    margin-bottom: 40px;
}

.dudas-description{
    font-size: .9em;
}

ol.faqs li
{
    margin-bottom: 24px;
    margin-left: 24px;
    width: 100%;
    border-bottom: 1px solid #121212;
    padding-bottom: 12px;
}

ol.faqs li p
{
    font-weight: 600;
    font-size: 1.2em;
}
ol.faqs li span
{
    color:#666666;
    display: none;;
    margin-left: 24px;
}

ol.faqs li.open span
{
    display:block;
}


.download-container { display: flex; justify-content: center; align-items: center; width: 100%; }
.download-link { text-decoration: none; }
.download-badge { width: 120px; height: auto; } /* Ajusta el tamaño */
    

footer{
    width: 100%;
    min-height: 200px;
    background-color: #f0f0f0;;
    width: 100%;
}
footer .contentFooter{
    margin: 0 auto;
      width: 80vw;
      padding-top: 40px;
      display: flex;
    align-items: center;
    justify-content: center;
}
footer ul{
    list-style: none;
    width: fit-content;
}

footer img{

    height: 72px;
}

a, a:visited{
    color:#121212;
    font-size: 0.9em;
    text-decoration: none;
    display: block;
    min-width: 150px;
}

a:hover{
    text-decoration: underline;
    color:#121212;
}

.logoFooter{
    display: flex;
    align-items: center;
    justify-content: center;
    width:fit-content;
    gap: 20px;
}

.logoFooter div p{
    font-size: .7em;
    font-weight: 200px;
}
.logoFooter div span{
    font-size: 1.2em;
    font-weight: 800;
}

.logoFooter div
{
    display:block;
    min-width: fit-content;
    line-height: 1;
   

}

.disclaimer
{
    margin: 0 auto;;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
    font-weight: 400;
    max-width: 600px;
    padding-top: 32px;
 
}

