/* Importar estilos comunes */
@import url('common.css');

/* Pantalla de Bienvenida */
#welcome-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out;
    z-index: 1000;
}

#welcome-logo {
    width: 100px;
    max-width: 20vw;
    height: auto;
    animation: logo-grow 1s ease-in-out forwards;
}

@keyframes logo-grow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(5); opacity: 0; }
}

.fade-out { opacity: 0; }

/* SecciÃ³n Landing (Hero) */
.landing {
    /* Propiedades estructurales */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: var(--text-color);
    padding: 100px 50px 300px;
    min-height: 120vh;
    width: 100%;
    
    /* Máscaras SVG */
    -webkit-mask-image: url("../assets/wave-mask.svg");
    mask-image: url("../assets/wave-mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
    mask-position: bottom;
    -webkit-mask-size: cover;
    mask-size: cover;
    overflow: hidden;
    
    /* Fondo base más suave */
    background: #120409;
}

.landing::before,
.landing::after {
    content: "";
    position: absolute;
    inset: -100%;  /* Aumentado de -50% a -100% para evitar bordes */
    width: 300%;   /* Aumentado de 200% a 300% */
    height: 300%;  /* Aumentado de 200% a 300% */
    animation: moveGradient 20s ease-in-out infinite alternate;
    background-size: 300% 300%;  /* Ajustado al nuevo tamaño */
    opacity: 0.8;  /* Reducido de 1 a 0.8 */
}

.landing::before {
    background: linear-gradient(
    125deg,
    transparent 15%,
    rgba(78, 0, 52, 0.7) 35%,  /* Color suavizado */
    rgba(255, 0, 171, 0.6) 50%, /* Rosa más suave */
    rgba(78, 0, 52, 0.7) 65%,   /* Color suavizado */
    transparent 85%
    );
    mix-blend-mode: lighten;
    animation-duration: 17s;
}

.landing::after {
    background: linear-gradient(
    -125deg,
    transparent 15%,
    rgba(41, 0, 25, 0.7) 35%,    /* Color suavizado */
    rgba(255, 0, 171, 0.5) 50%,  /* Rosa más suave */
    rgba(41, 0, 25, 0.7) 65%,    /* Color suavizado */
    transparent 85%
    );
    mix-blend-mode: soft-light;
    animation-duration: 13s;
}

@keyframes moveGradient {
    0% {
        transform: translate(0%, 0%) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-10%, -10%) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(10%, 10%) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(-5%, -5%) rotate(270deg) scale(1.1);
    }
    100% {
        transform: translate(0%, 0%) rotate(360deg) scale(1);
    }
}

/* Texto a la IZQUIERDA */
.landing .text-content {
    width: 55%;
    min-width: 280px;
    margin-bottom: 20px;
}

.dynamic-text-container {
    min-height: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow: hidden;
}

.dynamic-text {
    font-size: 1.5rem;
    margin: 0;
    text-align: left;
    color: #fff;
    line-height: 1.4;
    max-width: 90%;
    position: relative;
    transform-origin: left;
}

.dynamic-text.animate-out {
    animation: textOut 0.5s forwards;
}

.dynamic-text.animate-in {
    animation: textIn 0.5s forwards;
}

@keyframes textOut {
    0% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 0;
        filter: blur(5px);
    }
}

@keyframes textIn {
    0% {
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.landing .media-content {
    width: 45%;
    min-width: 280px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor para el logo (se mueve de forma continua) */
.hero-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Logo que rota (aplica solo la rotación) */
.hero-logo {
    width: 300px;
    animation: rotateLogo 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transition: filter 0.5s ease, transform 0.5s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 10px var(--accent-color)) brightness(1.2) contrast(1.2);
    transform: scale(1.05);
    animation-play-state: paused;
}

@keyframes rotateLogo {
    0%, 50% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.landing .text-content { max-width: 50%; }
.landing .text-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.landing .text-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 12px 28px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: 
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
        letter-spacing 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 0, 171, 0.4);
    letter-spacing: 0.5px;
}

.cta-btn:hover::before {
    left: 50%;
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 3px 10px rgba(255, 0, 171, 0.3);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Contenedor para la animaciÃ³n de hexÃ¡gonos */
.hexagon-animation {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: visible;
}
.hexagon {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    animation-name: moveHexagon;
    animation-duration: 12s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes moveHexagon {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    25% { transform: translateY(calc(var(--move-amount, 60px) * 0.5)) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(var(--move-amount, 60px)) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(calc(var(--move-amount, 60px) * 0.5)) rotate(270deg); opacity: 0.6; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.8; }
}

.feature-tags {
    position: absolute;
    bottom: 260px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.tag {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Posicionamiento específico para cada tag */
.tag:first-child {
    left: calc(50% - 400px);
    transform: translateX(-50%) translateY(-30px);
}

.tag:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
}

.tag:last-child {
    left: calc(50% + 400px);
    transform: translateX(-50%) translateY(-30px);
}

/* Hovers */
.tag:first-child:hover {
    transform: translateX(-50%) translateY(-35px);
}

.tag:nth-child(2):hover {
    transform: translateX(-50%) translateY(-5px);
}

.tag:last-child:hover {
    transform: translateX(-50%) translateY(-35px);
}

/* Iconos */
.tag-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
    transition: all 0.3s ease; /* Añadida la transición */
}

.tag-icon svg {
    width: 100%;
    height: 100%;
}

.tag:hover .tag-icon {
    transform: scale(1.1);
}

/* Texto */
.tag span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

/* Descripción emergente */
.tag-description {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    width: max-content;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Transición suavizada */
    border: 1px solid var(--accent-color);
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 0, 171, 0.2);
    z-index: 10;
    pointer-events: none; /* Añadido para evitar parpadeos */
}

/* Flecha de la descripción */
.tag-description::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.8);
    border-left: 1px solid var(--accent-color);
    border-top: 1px solid var(--accent-color);
}

/* Mostrar descripción al hover */
.tag:hover .tag-description {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

/* Secciones generales (cada una se personaliza un poco en fondos) */
.features {
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(78,0,52,1) 100%);
    color: var(--text-color);
    padding: 100px 50px;
    text-align: center;
}
.how-it-works {
    background: linear-gradient(180deg, rgba(78,0,52,1) 0%, rgba(143,1,96,1) 50%, rgba(0,0,0,1) 100%);
    color: var(--text-color);
    padding: 100px 50px;
    text-align: center;
}
.testimonials {
    /* un degradado suave */
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(61,0,41,1) 100%);
    padding: 100px 50px;
    text-align: center;
    color: var(--text-color);
}
.cta {
    background: linear-gradient(180deg, rgba(61,0,41,1) 0%, rgba(13,13,13,1) 100%);
    text-align: center;
    padding: 120px 20px;
    color: var(--text-color);
}

/* --- NUEVO: CONTENEDOR INTERNO PARA MAX-WIDTH --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* margen lateral para pantallas pequeÃ±as */
}

/* TÃ­tulos de las secciones: subrayado al hover */
.features h2,
.how-it-works h2,
.testimonials h2,
.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.features h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 56%;  /* Largo inicial del subrayado en .features */
    height: 3px;
    background: var(--accent-color);
    opacity: 0.8;
    transition: width 0.3s ease;
}
/* Para la secciÃ³n CÃ³mo Funciona */
.how-it-works h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 37.5%;  /* Largo inicial diferente en .how-it-works */
    height: 3px;
    background: var(--accent-color);
    opacity: 0.8;
    transition: width 0.3s ease;
}
/* Para Testimonios */
.testimonials h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 41.3%;  /* EJEMPLO */
    height: 3px;
    background: var(--accent-color);
    opacity: 0.8;
    transition: width 0.3s ease;
}
.cta h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 66%;
    height: 3px;
    background: var(--accent-color);
    opacity: 0.8;
    transition: width 0.3s ease;
}
.features h2:hover::after {
    width: 100%;
}
.how-it-works h2:hover::after {
    width: 100%;
}
.testimonials h2:hover::after {
    width: 100%;
}
.cta h2:hover::after {
    width: 100%;
}

/* Tarjetas en la secciÃ³n CaracterÃ­sticas (ya existen, aÃ±adimos .card-icon) */
.feature-cards .card {
    flex: 1 1 250px;
    background: none; /* quita el color de fondo */
    padding: 20px;
    border-radius: 0; /* sin esquinas redondeadas */
    box-shadow: none; /* sin sombra */
    transition: transform 0.3s ease; /* ya no es necesario animar shadow */
}

.feature-cards .card:hover {
    transform: translateY(-5px);
    /* ya no hay shadow al hover tampoco */
}

/* Ãcono en la tarjeta */
.card-icon {
    text-align: center;
    margin-bottom: 10px;
}
.card-icon img {
    width: 40px;
    height: 40px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.card:hover .card-icon img {
    transform: scale(1.1);
    opacity: 1;
}

/* Estilos para la vista de escritorio */
.desktop-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 10px;
    position: relative;
}

.desktop-steps .step {
    flex: 1;
    position: relative;
    padding: 40px 20px 20px; /* Aumentamos el padding superior para dar más espacio */
    background: rgba(255, 0, 171, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 171, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 25px; /* Añadimos margen superior para compensar la línea */
}

.desktop-steps .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 171, 0.2);
}

.desktop-steps .step::before {
    content: attr(data-step);
    position: absolute;
    top: -25px; /* Mantenemos la misma posición para el círculo */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 0, 171, 0.4);
}

.desktop-steps .step h3 {
    margin: 20px 0 15px;
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.desktop-steps .step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Testimonios: puedes aÃ±adir comillas, slider, etc. */
.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.testimonial-cards .testimonial {
    flex: 1 1 250px;
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}
.testimonial-cards .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(255, 0, 171, 0.5);
    background-color: #ff00aa7c;  
}
.testimonial-cards .testimonial span {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}
/* Comillas decorativas (opcional) */
.testimonial-cards .testimonial::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.15;
    transition: opacity 0.3s ease, color 0.3s ease;
}

/* Al hacer hover sobre .testimonial, se aplica a ::before */
.testimonial-cards .testimonial:hover::before {
    color: #fff;       /* Se vuelve blanco */
    opacity: 1;      /* Opcional: sube un poco la opacidad para que se note */
}

/* CTA con fondo distinto y un botÃ³n mÃ¡s grande */
.cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}
.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.signup-btn {
    padding: 15px 40px;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.3rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,127,0.3);
}

/* Breakpoints principales */
@media (max-width: 768px) {
    
    /* Landing responsive */
    .landing {
        padding: 120px 20px 160px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }
    
    /* Separamos los estilos que eran comunes */
    .landing .text-content {
        width: 100%;
        max-width: 90%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }
    
    /* Estilos independientes para media-content */
    .landing .media-content {
        width: 100%;
        max-width: 90%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: -100px; /* Este es el cambio clave para subir solo el logo */
    }
    
    /* El resto del código permanece igual */
    .landing .text-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .dynamic-text-container {
        min-height: 80px;
    }
    .dynamic-text {
        font-size: 1.2rem;
        padding-right: 20px;
        text-align: center;
        transform-origin: center;
        margin: 0 auto;
    }
    
    @keyframes textOut {
        0% {
            opacity: 1;
            filter: blur(0);
        }
        100% {
            opacity: 0;
            filter: blur(5px);
        }
    }
    
    @keyframes textIn {
        0% {
            opacity: 0;
            filter: blur(5px);
        }
        100% {
            opacity: 1;
            filter: blur(0);
        }
    }
    
    .landing .text-content .cta-btn {
        width: 100%;
        max-width: 250px;
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .hero-logo {
        width: min(200px, 60vw);
        height: auto;
    }
    
    
    .feature-tags {
        bottom: 200px;
    }
    
    .tag {
        gap: 6px;
    }
    
    .tag:first-child {
        left: calc(50% - 150px);
        transform: translateX(-50%) translateY(-60px);
    }
    
    .tag:nth-child(2) {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .tag:last-child {
        left: calc(50% + 150px);
        transform: translateX(-50%) translateY(-60px);
    }
    
    .tag:first-child:hover {
        transform: translateX(-50%) translateY(-65px);
    }
    
    .tag:nth-child(2):hover {
        transform: translateX(-50%) translateY(-5px);
    }
    
    .tag:last-child:hover {
        transform: translateX(-50%) translateY(-65px);
    }
    
    .tag-icon {
        width: 20px;
        height: 20px;
    }
    
    .tag span {
        font-size: 0.8rem;
    }
    
    .tag-description {
        top: calc(100% + 10px);
        max-width: 200px;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .tag-description::before {
        top: -5px;
        width: 10px;
        height: 10px;
    }
    
    .features h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
        font-weight: 600;
        position: relative;
        display: inline-block;
        padding: 0 10px;
        color: var(--text-color);
        transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .features h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .features h2:hover {
        color: var(--accent-color);
    }
    
    .how-it-works h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        font-weight: 600;
        position: relative;
        display: inline-block;
        padding: 0 10px;
        color: var(--text-color);
        transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .how-it-works h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .how-it-works h2:hover {
        color: var(--accent-color);
    }
    
    .desktop-steps {
        display: none !important;
    }
    
    .steps-slider {
        display: block;
        width: 100%;
        max-width: 600px;
        margin-top: 10px; /* Añadimos más espacio superior */
        margin: 50px auto 0;
        position: relative;
        padding: 30px 20px; /* Aumentamos el padding general del slider */
        background: rgba(255, 0, 171, 0.05);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 0, 171, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .steps-slider:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(255, 0, 171, 0.2);
    }
    
    .steps-track {
        display: flex;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        cursor: grab;
        touch-action: pan-y pinch-zoom;
    }
    
    .steps-track:active {
        cursor: grabbing;
    }
    
    .steps-slider .step {
        min-width: 100%;
        padding: 65px 30px 30px; /* Aumentado el padding superior para dar más espacio */
        opacity: 0;
        transform: scale(0.8) translateX(100px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        position: relative; /* Aseguramos que tenga posición relativa */
    }
    
    .steps-slider .step.active {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    
    .steps-slider .step::before {
        content: attr(data-step);
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px; /* Aumentado de 30px */
        height: 40px; /* Aumentado de 30px */
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        box-shadow: 0 0 25px rgba(255, 0, 171, 0.4); /* Aumentado el brillo */
        font-size: 1.4rem; /* Aumentado el tamaño del número */
    }
    
    .steps-slider .step h3 {
        margin: 25px 0 15px; /* Ajustado el margen superior para compensar el número más grande */
        font-size: 1.8rem; /* Aumentado de 1.4rem */
        font-weight: 600;
        color: var(--accent-color);
        text-shadow: 0 0 15px rgba(255, 0, 171, 0.3); /* Añadido un sutil brillo al título */
    }
    
    .slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    .slider-dots {
        display: flex;
        gap: 12px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 0, 171, 0.3);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: var(--accent-color);
        transform: scale(1.5);
        box-shadow: 0 0 15px rgba(255, 0, 171, 0.6);
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        border: none;
        background: rgba(255, 0, 171, 0.1);
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .slider-arrow::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--accent-color);
        border-bottom: 2px solid var(--accent-color);
        top: 50%;
        left: 50%;
    }
    
    .slider-arrow.prev::before {
        transform: translate(-25%, -50%) rotate(135deg);
    }
    
    .slider-arrow.next::before {
        transform: translate(-75%, -50%) rotate(-45deg);
    }
    
    .slider-arrow:hover {
        background: var(--accent-color);
    }
    
    .slider-arrow:hover::before {
        border-color: white;
    }
    
    .slider-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
        font-weight: 600;
        position: relative;
        display: inline-block;
        padding: 0 10px;
        color: var(--text-color);
        transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .testimonials h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .testimonials h2:hover {
        color: var(--accent-color);
    }
    
    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        font-weight: 600;
        position: relative;
        display: inline-block;
        padding: 0 10px;
        color: var(--text-color);
        transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .cta h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .cta h2:hover {
        color: var(--accent-color);
    }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .landing .text-content,
    .landing .media-content {
        width: 48%;
    }
    
    .feature-cards .card {
        flex: 1 1 45%;
    }
}

/* Optimización para pantallas pequeñas */
@media (max-width: 480px) {
    .landing .text-content h1 {
        font-size: 1.8rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .signup-btn {
        width: 100%;
        max-width: 300px;
    }
}