* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family:'Montserrat', sans-serif;
     margin: 0;
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --color-principal-rosa: #E39AA7;
}
.background-blanco{
    background-color: white !important;
}
.background-rosa{
    background-color: #E39AA7;
}
.color-blanco{
    color: white;
}
.color-rosa{
    color: #E39AA7;
}
.text-align-center{
    text-align: center !important;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 910px;
    overflow: hidden;
}
.hero-img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}
.menu {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.menu-container {
    max-width: 1700px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo {
    width: 140px;
}

.menu-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding-right: 20px;
}

.menu-links a {
    position: relative;
    text-decoration: none;
    color: #262424;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.menu-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #331f5b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-links a:hover {
    color:  #331f5b;
}

.menu-links a:hover::after {
    width: 100%;
}

/* ===== HAMBURGUESA ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.35s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.mobile-menu {
    display: none; 
    flex-direction: column;
    background:#e39aa7;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    max-height: 500px;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.25s, background 0.25s, padding-left 0.25s;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #E39AA7;
    background: rgba(227, 154, 167, 0.08);
    padding-left: 42px;
}


.main-principal{
    display: flex;
    justify-content: center;
    text-align: left;
}
.lado-izquierdo{
    padding: 30px 0px 0px 5rem;
    max-width: 580px;
}
.title-principal{
    width: 622px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 3.5rem;
}
.subtitle-principal{
    font-family: 'Montserrat', sans-serif;
    color: white;
    padding-top: 30px;
    font-weight: 600;
    font-size: 25px;
}
.contenedor-apps h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding: 35px 0px 10px 0px;
    font-size: 16px;
}

.apps{
    display: flex;
    gap: 20px;
}

.apple-store{
    display: flex;
    gap: 5px;
    text-align: center;
    padding: 8px 15px;
    align-items: center;
    border-radius: 10px;
}
.store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 33;
    padding: 15px 30px;
    border-radius: 18px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Montserrat';
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-play{
    display: flex;
}
.google-play{
    display: flex;
    background: transparent;
    border: 1px solid #ffffff;
    gap: 1rem;
    padding: 8px 15px;
    align-items: center;
    border-radius: 17px;
}

.apple-store img{
    width: 23px;
    object-fit: cover;
}
.google-play img{
    width: 27px;
    object-fit: cover;
}
.apple-store p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
}
.google-play p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
}

.apple-store span{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}
.google-play span{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}
.lado-derecho{
  position: relative;  
}
.celular1 {
    padding-top: 6rem;
    width: 100%;
    max-width: 800px;
}
.landing-dos {
    padding-top: 30px;
    background: linear-gradient(180deg, #f8e4e700 0%, #f2cdd3 40%, #E39AA7 100%);
}


.landing-dos,
.landing-tres {
  margin: 0;
  padding: 0;
}

.landing-tres {
  position: relative;
  margin-top: -324px;
  background-image: url("images/landing3.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 2;
}

/*--- Carrusel  -----*/
.carousel-section {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}
.carousel-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #d4909d;
   padding: 40px;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    width: clamp(220px, 30vw, 425px);
    height: clamp(320px, 38vw, 520px);
    overflow: hidden;
    cursor: pointer;
    left: 50%;
    top: 50%;
    transition: 
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.7s ease;

    transform-origin: center center;
}
.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 173, 188, 0.25);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 35px 35px;
    display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .carousel-number {
            font-family: 'Montserrat', sans-serif;
            position: absolute;
            top: 7rem;
            background: white;
            width: 80px;
            z-index: 100;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: #d4909d;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .carousel-text {              
    font-family: 'Montserrat', sans-serif;
    z-index: 100;
            text-align: center;
            color: white;
            font-size: 2.2rem;
            font-weight: 600;
            line-height: 1.4;
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
        }

        /* Posiciones del carrusel */
        .carousel-item.left {
            transform: translate(-50%, -50%) translateX(-450px) scale(0.85);
            z-index: 1;
            clip-path: polygon(
        0% 0%,    
        100% 2%,  
        100% 98%,  
        0% 100%   
    );
 }

        .carousel-item.center {
            transform: translate(-50%, -50%) translateX(0) scale(1);
            opacity: 1;
            z-index: 3;
        }

        .carousel-item.right {
            transform: translate(-50%, -50%) translateX(450px) scale(0.85);
            z-index: 1;
               clip-path: polygon(0% 2%, /* esquina superior izquierda */ 
               100% 0%, /* esquina superior derecha */ 
               100% 100%, /* esquina inferior derecha */ 
               0% 98% /* esquina inferior izquierda */);
        }

        .carousel-item.hidden {
            transform: translate(-50%, -50%) scale(0.5);
            z-index: 0;
            pointer-events: none;
        }

        /* Hover effect solo en la carta central 
        .carousel-item.center:hover {
            transform: translate(-50%, -50%) translateX(0) scale(1.05);
            box-shadow: 0 30px 80px rgba(255, 210, 210, 0.4);
        }*/

        /* Indicadores */
        .carousel-indicators {
            display: none;
            justify-content: center;
            gap: 14px;
            margin-top: 60px;
        }

        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(212, 144, 157, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: #d4909d;
            transform: scale(1.4);
            border-color: rgba(212, 144, 157, 0.3);
        }

        .indicator:hover {
            background: rgba(212, 144, 157, 0.6);
        }
/*section aplicacion en tus manos*/

.contenedor-aplicacion{
    max-width: 1200px;
    margin: auto;
    padding: 5rem 0px;
    padding-bottom: 2rem;
}
.aplicacion-title h1{
    font-family: 'Montserrat';
    color: #ffffff;
    font-size: 4rem;
    font-weight: 500;
}
.aplicacion-title p{
    font-family: 'Montserrat';
    color: #E195A3;
    font-size: 4rem;
    font-weight: 900;
}
.aplicacion-title h2{
    font-family: 'Montserrat';
    color: white;
    font-weight: 600;
}

.shut-down{
    height: 134vh;
}
.dos-lados{
    display: flex;
    justify-content: center;
}
.two-phones{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 1rem;
}

.doble-celular{
    width: 100%;
}

.sombra{
    width: 100%;
    max-width: 285px !important;
}
.lado-derecho-aplicacion{
    width: 500px;
    font-family: 'Montserrat';
    color: white;
    padding-top: 9rem;
    z-index: 33;
    text-align: right;
}
.titulo-kalen{
    font-size: 56px;
    text-align: right;
    font-weight: 600;
}
.texto-aplicacion{
    font-size: 30px;
    text-align: right;
    padding-left: 2rem;
}

.justify-rigth{
    justify-content: right;
}

/*parte de en medio*/
.banner-principal-app{
    /*background-color: #f6d7dc;*/
}
.banner-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    padding-top: 19rem;
}

.banner-info {
    max-width: 520px;
}

.banner-titulo {
    font-size: 49px;
    font-weight: 700;
    color: var(--color-principal-rosa);
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-descripcion {
    width: 518px;
    font-weight: 500;
    font-size: 27px;
    text-align: left;
    color: #333;
    margin-bottom: 30px;
}

.banner-botones {
    display: flex;
    gap: 20px;
}

.btn-descarga {
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-apple {
    background: #FFADBC;
    color: white;
}

.btn-google {
    background: #f3d9df;
    color: #333;
}

.banner-preview {
    display: flex;
    justify-content: center;
}

.banner-img {
    width: 563px;
}

/*primera parte de la chica*/

/* CONTENEDOR GENERAL */
.hero {
    position: relative;
    padding-top: 317px; /* espacio para la imagen */
}

/* IMAGEN */
.chica-container {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 5; /* encima del bloque */
}

.chica {
    width: 312px;
}

/* BLOQUE ROSADO */
.bloque-rosado {
        background-color: #E69EAA;
    border-radius: 200px;
    padding: 37px 34px;
    position: relative;
    width: 1400px;
    margin: auto;
    z-index: 1;
}

/* CONTENIDO INTERNO */
.contenido-bloque {
    display: flex;
    justify-content: space-around;
    gap: 5rem;
    align-items: center;
    max-width: 933x;
    margin: auto;
}

.texto h2 {
    color: white;
    font-size: 32px;
    margin: 0;
}

.texto p {
        color: white;
    margin-top: 10px;
    font-size: 35px;
}

/* BUSCADOR */
.doble{
        display: flex;
    align-items: center;
    gap: 10px;
}
.input-ubicacion {
    height: 92px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    width: 513px;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.doble img{
    width: 26px;
}
.input-ubicacion span{
    font-weight: 500;    
    font-size: 25px;
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/*
.select-ubicacion {
    border: none;
    background: transparent;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    appearance: none;
    outline: none;
    cursor: pointer;
    padding-right: 25px;
}

 Flecha */
.select-wrapper::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
     transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #E39AA7;
    pointer-events: none;
}

.input-ubicacion button {
    background: #d88c98;
    border: none;
    padding: 8px 31px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 25px;
    font-family: 'Montserrat';
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.input-ubicacion button:hover{
    background-color: #ce7685;
    color: rgb(235, 235, 235);
}
.select-ubicacion {
    border: none;
    background: transparent;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    appearance: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
    padding-right: 4rem;
}

/*preguntas frecuentes*/
/* SECCIÓN GENERAL */

.faq-section {
    max-width: 1400px;
    margin: auto;
    padding: 4rem 0px;
}

.faq-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.faq-left {
    width: 40%;
}

.faq-title {
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
    color:#eaaab4;
}

.faq-title span {
    color: white; 
    font-weight: 700;
    padding-left: 50px;
}

.faq-image {
    width: 100%;
    max-width: 400px;
}

.faq-card {
    width: 44%;
       background: rgb(252 252 252 / 67%);
    padding: 60px 30px;
    border-radius: 60px;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    color: var(--color-principal-rosa);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    line-height: 1.6;
}

/*parte parallax*/

.parallax-footer {
    position: relative;
    width: 100%;
    height:  745px;
    background-image: url('images/imagen-footer.jpeg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  rgb(0 0 0 / 78%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-logo {
    max-width: 385px;
    width: 100%;
}

