:root {
    --primary: #FFD166;
    --secondary: #FFAB91;
    --accent: #F48FB1;
    --pink: #F48FB1;
    --purple: #CE93D8;
    --peach: #FFAB91;
    --yellow: #FFD166;

    --dark: #0a2420;
    --dark-soft: #1a3432;
    --text: #333;
    --text-light: #666;
    --white: #fff;

    --gradient-main: linear-gradient(135deg, var(--yellow) 0%, var(--peach) 50%, var(--pink) 100%);

    /* Fuentes */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: transparent;
    /* Cambia el gradiente a transparente */
}

/* Títulos usan Playfair Display */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 1001;
}

.nav-logo span {
    color: var(--text);
    transition: color 0.3s ease;
}

/* Logo transparente al inicio */
.logo-img {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img-footer {
    height: 28px;
    width: auto;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}


.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--pink);
}

.nav-cta {
    position: relative;
}

.nav-cta a {
    background: var(--dark);
    color: white;
    padding: 10px 24px;
    border-radius: 999px;
}

.nav-cta a:hover {
    background: var(--dark-soft);
    color: white;
}

/* Sobrescribir estilos del nav-cta para el dropdown */
.nav-cta .nav-user {
    background: none;
}

.nav-cta .user-menu-trigger {
    background: var(--dark) !important;
    color: white !important;
}

.nav-cta .user-dropdown,
.nav-cta .dropdown-item {
    background: none;
}

.nav-cta .user-dropdown {
    background: white !important;
}

.nav-cta .dropdown-item {
    background: transparent;
    color: var(--text);
}

.nav-cta .dropdown-item:hover {
    background: #f8f9fa;
    color: var(--text);
}

/* Botón Hamburguesa */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menú móvil con fondo blanco siempre */
@media (max-width: 968px) {
    .nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 1rem;
    }

    .nav-cta a {
        display: block;
        text-align: center;
        padding: 12px;
    }

    .lang-list {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        margin-top: 0.5rem;
        width: 100%;
    }

    .logo-img {
        height: 28px;
    }
}

/* User Dropdown in Nav */
.nav-user {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.user-menu-trigger:hover {
    background: var(--dark-soft);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sobrescribir estilos del nav-cta para el dropdown */
.nav-cta .nav-user,
.nav-cta .user-menu-trigger,
.nav-cta .user-dropdown,
.nav-cta .dropdown-item {
    background: none;
}

.nav-cta .user-dropdown {
    background: white !important;
}

.nav-cta .dropdown-item {
    background: transparent;
    color: var(--text);
}

.nav-cta .dropdown-item:hover {
    background: #f8f9fa;
    color: var(--text);
}


.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item.active-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.dropdown-item.active-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.dropdown-item.active-premium:hover::before {
    left: 100%;
}

.dropdown-item.active-premium:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 50%, var(--primary) 100%);
}

.dropdown-item.active-premium svg,
.dropdown-item.active-premium i {
    color: white;
}

.dropdown-item svg {
    width: 16px;
    height: 16px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 4px 0;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: var(--text);
}

.lang-current:hover {
    background: rgba(0, 0, 0, 0.05);
}

.lang-caret {
    font-size: 0.7rem;
    opacity: 0.7;
}

.lang-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    list-style: none;
    padding: 8px 0;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    visibility: hidden;
}

/* Dropdown activo (con click) */
.lang-list.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}



.lang-list li {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-list li:hover {
    background: rgba(0, 0, 0, 0.05);
}

.flag {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
}

.flag[data-flag="es"] {
    background-image: url("https://flagcdn.com/w20/es.png");
}

.flag[data-flag="en"] {
    background-image: url("https://flagcdn.com/w20/gb.png");
}


/* Hero con Video Background */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 120px 3rem 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: transparent;
    /* Añade esto */
}

/* Hero con Video Background */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 120px 3rem 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    /* QUITA ESTO: */
    /* overflow: hidden; */
    /* background: linear-gradient(...); */
}

/* Video Background - FULLSCREEN */
.hero-video-bg {
    position: fixed;
    /* Cambia a fixed */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    /* Detrás de todo */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(229, 244, 255, 0.75) 0%,
            rgba(249, 229, 255, 0.75) 50%,
            rgba(255, 235, 240, 0.75) 100%);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text);
}


/* Contenido y formas encima del video */
.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.features h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-display);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
}

.benefits h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gradient-word {
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-dark {
    background: var(--dark);
    color: white;
}

.btn-dark:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--peach);
    color: white;
}

.btn-light:hover {
    background: var(--pink);
    transform: translateY(-2px);
}

/* Hero Visual */
/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
}

/* Imagen 1 - Frame-196 */
.shape-img1 {
    width: 350px;
    height: auto;
    top: 5%;
    right: 10%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    animation: float1 8s ease-in-out infinite;
}

/* Imagen 2 - Frame-195 */
.shape-img2 {
    width: 250px;
    height: auto;
    bottom: 10%;
    right: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    animation: float2 10s ease-in-out infinite;
}

/* Figuras 3D originales */
.shape-cube {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #FFAB91, #F48FB1);
    top: 65%;
    left: 47%;
    transform: rotate(15deg);
    box-shadow: 0 30px 60px rgba(244, 143, 177, 0.3);
    border-radius: 20px;
    animation: float3 12s ease-in-out infinite;
}

.shape-cylinder {
    width: 120px;
    height: 250px;
    background: linear-gradient(135deg, #E0E0E0, #F5F5F5);
    top: 20%;
    right: 40%;
    border-radius: 100px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    animation: float4 9s ease-in-out infinite;
}

.shape-sphere {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #CE93D8, #9C7FE8);
    bottom: 25%;
    left: 0%;
    top: 25%;

    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(206, 147, 216, 0.4);
    animation: float5 11s ease-in-out infinite;
}

/* Animaciones diferentes para cada elemento */
@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-25px) rotate(-5deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-30px) rotate(18deg);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-35px) rotate(-3deg);
    }
}

@keyframes float5 {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-28px) scale(1.05);
    }
}

/* Responsive - Móvil */
@media (max-width: 968px) {
    .hero-visual {
        height: 450px;
    }

    /* Imágenes más pequeñas en móvil */
    .shape-img1 {
        width: 200px;
        top: 5%;
        right: 5%;
    }

    .shape-img2 {
        width: 180px;
        bottom: 10%;
        right: 40%;
    }

    /* Figuras más pequeñas */
    .shape-cube {
        width: 150px;
        height: 150px;
        top: 50%;
        left: 55%;
    }

    .shape-cylinder {
        width: 70px;
        height: 150px;
        top: 15%;
        right: 15%;
    }

    .shape-sphere {
        width: 160px;
        height: 160px;
        bottom: 10%;
        left: 10%;
    }
}

/* Features Section */
.features {
    background: #fefefe;
    padding: 100px 3rem;
}

.features h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 5rem;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--pink);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Benefits */
.benefits {
    padding: 120px 3rem;
    background: #fafafa;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.card-pink {
    background: linear-gradient(135deg, #FFC1CC 0%, #F48FB1 100%);
}

.card-purple {
    background: linear-gradient(135deg, #DBC8F0 0%, #CE93D8 100%);
}

.card-peach {
    background: linear-gradient(135deg, #FFD4B8 0%, #FFAB91 100%);
}

.benefit-check {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a2420 0%, #1a3432 100%);
    color: white;
    padding: 80px 3rem 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--peach);
    transform: translateY(-3px);
}

.footer-social i,
.footer-social svg {
    width: 18px;
    height: 18px;
    color: white;
    stroke: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--peach);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-disclaimer-text {
    font-size: 0.85rem !important;
    font-style: italic;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer {
        padding: 60px 2rem 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-description {
        max-width: 100%;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Section (Cómo Funciona) */
.products {
    background: var(--dark);
    padding: 100px 3rem;
}

.products .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
}

.product-card {
    text-align: left;
}

.product-icon {
    margin-bottom: 1.5rem;
}

.product-icon .icon {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    color: #FFD166;
    /* Amarillo más visible */
    display: block;
}

.feature-icon .icon {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    color: var(--pink);
}

.product-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Video Slider 3D */
.video-slider {
    background: linear-gradient(135deg, #E5F4FF 0%, #F9E5FF 50%, #FFEBF0 100%);
    padding: 100px 3rem;
    overflow: hidden;
}

.video-slider h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.slider-wrapper {
    perspective: 2000px;
    overflow: visible;
    padding: 0 50px;
}

.slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 650px;
}

.slide-card {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    background: transparent;
    opacity: 0;
    transform: translateX(100%) rotateY(-45deg) scale(0.8);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-card.active {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
    z-index: 10;
    pointer-events: auto;
}

.slide-card.prev {
    opacity: 0.4;
    transform: translateX(-80%) rotateY(45deg) scale(0.75);
    z-index: 5;
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.slide-card.next {
    opacity: 0.4;
    transform: translateX(80%) rotateY(-45deg) scale(0.75);
    z-index: 5;
    mask-image: linear-gradient(to left, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 20%, black 80%, transparent 100%);
}

.slide-video {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.slide-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.slide-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

.slide-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 968px) {
    .slide-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .slide-video {
        padding-bottom: 56.25%;
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--text);
    font-size: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: var(--peach);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: var(--peach);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--pink);
    box-shadow: 0 0 15px rgba(244, 143, 177, 0.6);
    transform: scale(1.3);
}

.indicator:hover:not(.active) {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .slider-track {
        height: 600px;
    }

    .slide-video {
        max-width: 95%;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .slider-track {
        height: 700px;
    }

    .slide-video {
        max-width: 100%;
    }

    .slide-card.prev,
    .slide-card.next {
        opacity: 0;
        transform: translateX(100%) scale(0.5);
    }

    .slider-wrapper {
        padding: 0 20px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* ===================================
   Sección Crear Landing - Ultra Premium
   =================================== */

.create-landing-section {
    position: relative;
    padding: 80px 3rem;
    background: linear-gradient(135deg,
            rgba(10, 36, 32, 0.97) 0%,
            rgba(15, 45, 40, 0.95) 50%,
            rgba(10, 36, 32, 0.97) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.create-landing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 209, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(244, 143, 177, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.create-landing-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

/* Badge flotante - tonos claros minimalistas */
.affiliate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    border-radius: 999px;
    animation: badgeGlowSweep 3s linear infinite;
    z-index: -1;
}

/* Botón principal - blanco/claro minimalista */
.btn-create-landing {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2420;
    text-decoration: none;
    border-radius: 999px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 40px rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.layer-1 {
    background: linear-gradient(135deg,
            #ffffff 0%,
            #f5f5f5 50%,
            #e8e8e8 100%);
}

.layer-2 {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.5),
            transparent);
    opacity: 0;
}

.layer-3 {
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: scale(0);
}

.btn-create-landing:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(255, 255, 255, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Botón secundario - tono claro minimalista */
.btn-secondary-landing {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.btn-secondary-landing:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
    animation: badgeIconPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes badgeGlowSweep {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes badgeIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Contenido principal */
.landing-content {
    position: relative;
    z-index: 2;
}

.landing-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.landing-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Botón principal ultra interactivo */
.btn-create-landing {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2420;
    text-decoration: none;
    border-radius: 999px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 40px rgba(34, 197, 94, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
}

.btn-bg-layers {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    overflow: hidden;
}

.layer-1,
.layer-2,
.layer-3 {
    position: absolute;
    inset: 0;
    transition: all 0.6s ease;
}

.layer-1 {
    background: linear-gradient(135deg,
            #ffffff 0%,
            #f5f5f5 50%,
            #e8e8e8 100%);
}

.layer-2 {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.5),
            transparent);
    opacity: 0;
}

.layer-3 {
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: scale(0);
}

.btn-create-landing:hover .layer-2 {
    opacity: 1;
}

.btn-create-landing:hover .layer-3 {
    transform: scale(2);
    opacity: 0;
    transition: all 0.6s ease;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.btn-icon {
    font-size: 1.3rem;
    display: inline-block;
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(10deg);
    }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transition: left 0.6s ease;
}

.btn-create-landing:hover .btn-shine {
    left: 100%;
}

.btn-create-landing:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(255, 255, 255, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.3);
}

.btn-create-landing:active {
    transform: translateY(-2px) scale(1);
}

/* Texto informativo */
.landing-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-style: italic;
}

/* Botón secundario minimalista */
.btn-secondary-landing {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(34, 197, 94, 0.08);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 999px;
    color: #4ade80;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.btn-secondary-landing:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.sparkle-icon {
    font-size: 1.1rem;
    animation: sparkleRotate 3s linear infinite;
}

@keyframes sparkleRotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-secondary-landing:hover .arrow-icon {
    transform: translateX(5px);
}

/* Elementos flotantes decorativos */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
}

.element-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFD166, transparent);
    top: -10%;
    left: -10%;
    animation: floatDrift1 20s ease-in-out infinite;
}

.element-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #F48FB1, transparent);
    bottom: -10%;
    right: -10%;
    animation: floatDrift2 18s ease-in-out infinite;
}

.element-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #22c55e, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatPulse 15s ease-in-out infinite;
}

.element-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #CE93D8, transparent);
    top: 20%;
    right: 10%;
    animation: floatDrift3 22s ease-in-out infinite;
}

@keyframes floatDrift1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 30px);
    }
}

@keyframes floatDrift2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -40px);
    }
}

@keyframes floatDrift3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 50px);
    }
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Partículas de fondo */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.particle:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 12s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.particle:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 13s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 40%;
    animation-delay: 5s;
    animation-duration: 10s;
}

.particle:nth-child(7) {
    top: 30%;
    left: 90%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(8) {
    top: 90%;
    left: 15%;
    animation-delay: 7s;
    animation-duration: 12s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .create-landing-section {
        padding: 80px 2rem;
        min-height: auto;
    }

    .affiliate-badge {
        font-size: 0.75rem;
        padding: 10px 20px;
        margin-bottom: 2rem;
    }

    .landing-title {
        margin-bottom: 1.5rem;
    }

    .landing-description {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .btn-create-landing {
        padding: 16px 36px;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .landing-info {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .btn-secondary-landing {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .float-element {
        filter: blur(40px);
    }

    .element-1,
    .element-2 {
        width: 250px;
        height: 250px;
    }

    .element-3 {
        width: 200px;
        height: 200px;
    }

    .element-4 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 640px) {
    .btn-create-landing {
        padding: 14px 28px;
    }

    .btn-secondary-landing {
        width: 100%;
        justify-content: center;
    }
}

/* COoKIES */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.cookie-text a {
    color: #FFD166;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD166 0%, #F48FB1 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 209, 102, 0.4);
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions button {
        width: 100%;
    }
}

/* ===================================
   Sección Formulario de Contacto
   =================================== */

.contact-form-section {
    position: relative;
    padding: 100px 3rem;
    background: #ffffff;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 209, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(244, 143, 177, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    z-index: 2;
}

/* Encabezado de contacto */
.contact-header {
    position: sticky;
    top: 100px;
}

.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(206, 147, 216, 0.1);
    border: 1px solid rgba(206, 147, 216, 0.3);
    border-radius: 999px;
    color: #9c27b0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(206, 147, 216, 0.6);
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-start-now {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-main);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 143, 177, 0.4);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.btn-start-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-start-now:hover::before {
    left: 100%;
}

.btn-start-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 143, 177, 0.5);
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--pink);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tarjeta del formulario */
.contact-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 3rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card-header h3 {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Formulario */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(244, 143, 177, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-input[readonly] {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
    cursor: not-allowed;
    color: var(--text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

/* Botón de envío - WhatsApp en verde */
.btn-submit-contact {
    padding: 16px 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.btn-submit-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.btn-submit-contact:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-header {
        position: static;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-form-section {
        padding: 60px 2rem;
    }
}

@media (max-width: 640px) {
    .contact-card {
        padding: 1.5rem;
    }

    .card-header h3 {
        font-size: 1rem;
    }
}

/* Contenedor de botones */
.form-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

/* Botón WhatsApp - Verde */
.btn-whatsapp {
    padding: 16px 24px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

/* Botón Email - Degradado Minca */
.btn-email {
    padding: 16px 24px;
    background: var(--gradient-main);
    border: none;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(244, 143, 177, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-email:hover::before {
    left: 100%;
}

.btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 143, 177, 0.5);
}

/* Botón Telegram - Degradado Azul */
.btn-telegram {
    padding: 16px 24px;
    background: linear-gradient(135deg, #0088cc, #00a0dc, #229ed9);
    border: none;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-telegram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-telegram:hover::before {
    left: 100%;
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 136, 204, 0.5);
    background: linear-gradient(135deg, #006699, #0088cc, #00a0dc);
}

.telegram-icon {
    width: 18px;
    height: 18px;
}

.btn-whatsapp:active,
.btn-email:active,
.btn-telegram:active {
    transform: translateY(-1px);
}

.email-icon {
    width: 18px;
    height: 18px;
}

/* Sponsor Badge Contact - Estilo Premium */
.sponsor-highlight {
    margin-bottom: 20px;
}

/* Sponsor Badge Contact - Estilo Botón Gradient */
.sponsor-badge-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 30px;
    background: var(--gradient-main);
    border: none;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(244, 143, 177, 0.3);
    transition: transform 0.3s ease;
}

.sponsor-badge-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(244, 143, 177, 0.4);
}

.sponsor-icon {
    font-size: 1.3rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.sponsor-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sponsor-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sponsor-info {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    padding-left: 4px;
}

.sponsor-info strong {
    color: var(--pink);
}

/* Responsive - Stack vertical en móvil */
@media (max-width: 640px) {
    .form-buttons {
        grid-template-columns: 1fr;
    }
}

/* Ajuste cuando solo hay botón de email */
.form-buttons.email-only {
    grid-template-columns: 1fr;
}

.form-buttons.email-only .btn-email {
    max-width: 100%;
}

/* Modal de confirmación bonito */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-modal.show {
    display: flex;
}

.success-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.success-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-circle {
    stroke: #4ade80;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: circleStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes circleStroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-check {
    stroke: #4ade80;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes checkStroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.success-message {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-btn {
    padding: 12px 36px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 143, 177, 0.4);
}

/* ========================================= */
/* REGISTRATION BUTTONS - MINIMALISTA      */
/* ========================================= */

.registration-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Botón Minca - Minimalista Verde */
.btn-register-minca {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.btn-register-minca:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Botón VT Markets - Minimalista Morado */
.btn-register-vt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.btn-register-vt:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Strategy Selector - Minimalista */
.strategy-selector-home {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-strategy-trigger-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-strategy-trigger-home:hover {
    border-color: #667eea;
    background: #f9fafb;
}

.btn-strategy-trigger-home.active {
    border-color: #667eea;
}

.chevron-icon {
    transition: transform 0.3s ease;
    color: #9ca3af;
}

.btn-strategy-trigger-home.active .chevron-icon {
    transform: rotate(180deg);
    color: #667eea;
}

/* Strategy Dropdown - Minimalista */
.strategy-dropdown-home {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.strategy-dropdown-home.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.strategy-header-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f3f4f6;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.strategy-option-home {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    text-decoration: none;
    color: #374151;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
}

.strategy-option-home:hover {
    background: #667eea;
    color: white;
}

.option-emoji {
    font-size: 18px;
}

.option-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.option-text strong {
    font-size: 14px;
    font-weight: 700;
}

.option-text small {
    font-size: 12px;
    opacity: 0.7;
}

.strategy-option-home:hover .option-text strong,
.strategy-option-home:hover .option-text small {
    color: white;
}

/* Botón Ir a Estrategia */
.btn-go-strategy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 28px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    margin-top: 1rem;
}

.btn-go-strategy:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .registration-buttons {
        width: 100%;
    }
}

/* Botón VT Markets */
.btn-register-vt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-register-vt:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-go-strategy {
    width: 100%;
    text-align: center;
}

/* ============================================ */
/* VIDEO SLIDER PREMIUM - ESPECTACULAR         */
/* ============================================ */

/* Section Header Premium */
.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
}

.step-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--yellow), var(--peach));
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-header-premium h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video wrapper con glow */
.slide-video-wrapper {
    position: relative;
}

.video-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--peach));
    opacity: 0.15;
    filter: blur(40px);
    border-radius: 30px;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.slide-card.active .video-glow {
    opacity: 0.25;
}

/* Step Number - Minimalista */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: var(--dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

/* Slide Content Premium */
.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* CTA Buttons Premium */
.cta-buttons-premium {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-minca {
    background: var(--dark);
    color: white;
}

.btn-minca:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 36, 32, 0.2);
}

.btn-vt {
    background: white;
    color: var(--dark);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.btn-vt:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.15);
}

.btn-icon-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-premium:hover .btn-icon-arrow {
    transform: translateX(3px);
}

.btn-activate {
    background: var(--dark);
    color: white;
}

.btn-activate:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 36, 32, 0.2);
}

.btn-landing {
    background: var(--dark);
    color: white;
}

.btn-landing:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 36, 32, 0.2);
}

/* Dropdown Minimalista */
.strategy-dropdown-premium {
    position: relative;
    margin-bottom: 1rem;
}

.dropdown-trigger-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-trigger-premium:hover {
    border-color: var(--dark);
}

.dropdown-trigger-premium.active {
    border-color: var(--dark);
    border-radius: 10px 10px 0 0;
}

.trigger-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.trigger-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trigger-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.trigger-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.2s ease;
}

.dropdown-trigger-premium.active .trigger-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu Minimalista */
.dropdown-menu-premium {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid var(--dark);
    border-top: none;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-menu-premium.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-inner {
    padding: 6px;
}

.dropdown-item-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.dropdown-item-premium:hover {
    background: rgba(0, 0, 0, 0.04);
}

.dropdown-item-premium.selected {
    background: var(--dark);
}

.dropdown-item-premium.selected .item-name,
.dropdown-item-premium.selected .item-desc {
    color: white;
}

.item-color {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-color.alpha {
    background: #ef4444;
}

.item-color.momentum {
    background: #f97316;
}

.item-color.balance {
    background: #22c55e;
}

.item-color.horizon {
    background: #3b82f6;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.item-desc {
    font-size: 0.7rem;
    color: var(--text-light);
}

.item-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    opacity: 0;
    color: white;
    transition: opacity 0.2s ease;
}

.dropdown-item-premium.selected .item-check {
    opacity: 1;
}

/* Responsive slider */
@media (max-width: 968px) {
    .slide-card {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }
}

/* ============================================ */
/* STEPS HERO - LAMBORGHINI STYLE             */
/* ============================================ */

.steps-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: transparent;
}

/* Smooth transition fade from previous section */
.steps-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.8) 30%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 50;
    pointer-events: none;
}

.steps-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Circular Navigation */
.hex-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.hex-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--text);
    transform: translateY(-50%) scale(1.05);
}

.hex-prev {
    left: 40px;
}

.hex-next {
    right: 40px;
}

/* Slides Track */
.steps-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.step-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Media Background */
.slide-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide-media video,
.slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    inset: 0;
    /* Light overlay like hero section */
    background: linear-gradient(135deg,
            rgba(229, 244, 255, 0.80) 0%,
            rgba(249, 229, 255, 0.75) 50%,
            rgba(255, 235, 240, 0.80) 100%);
}

/* Hero Content */
.slide-hero-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 10;
}

.step-tag {
    display: inline-block;
    padding: 8px 20px;
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

/* Step Colors - Each step has a different brand color */
.step-slide[data-slide="0"] .step-tag {
    background: var(--pink);
}

.step-slide[data-slide="1"] .step-tag {
    background: var(--purple);
}

.step-slide[data-slide="2"] .step-tag {
    background: var(--peach);
}

.step-slide[data-slide="0"] .hero-title em {
    color: var(--pink);
}

.step-slide[data-slide="1"] .hero-title em {
    color: var(--purple);
}

.step-slide[data-slide="2"] .hero-title em {
    color: var(--peach);
}

.step-slide[data-slide="0"] .hero-btn-primary {
    background: var(--pink);
}

.step-slide[data-slide="1"] .hero-btn-primary {
    background: var(--purple);
}

.step-slide[data-slide="2"] .hero-btn-primary {
    background: var(--peach);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title em {
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 400px;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.hero-btn-primary {
    color: #0a0a0a;
}

.hero-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateX(5px);
}

.hero-btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(0, 0, 0, 0.3);
}

.hero-btn-outline:hover {
    border-color: var(--text);
    background: rgba(0, 0, 0, 0.05);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.strategy-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Each strategy has its own color background with opacity */
/* Alpha - Rosa pastel */
.strategy-card[data-strategy="alpha"] {
    background: rgba(244, 143, 177, 0.15);
    border-color: rgba(244, 143, 177, 0.3);
}

.strategy-card[data-strategy="alpha"]:hover {
    background: rgba(244, 143, 177, 0.25);
    border-color: rgba(244, 143, 177, 0.5);
}

.strategy-card[data-strategy="alpha"].selected {
    background: rgba(244, 143, 177, 0.85);
    border-color: #f48fb1;
}

/* Momentum - Melocotón pastel */
.strategy-card[data-strategy="momentum"] {
    background: rgba(255, 204, 188, 0.15);
    border-color: rgba(255, 204, 188, 0.3);
}

.strategy-card[data-strategy="momentum"]:hover {
    background: rgba(255, 204, 188, 0.25);
    border-color: rgba(255, 204, 188, 0.5);
}

.strategy-card[data-strategy="momentum"].selected {
    background: rgba(255, 204, 188, 0.85);
    border-color: #ffccbc;
}

/* Balance - Verde menta pastel */
.strategy-card[data-strategy="balance"] {
    background: rgba(167, 243, 208, 0.15);
    border-color: rgba(167, 243, 208, 0.3);
}

.strategy-card[data-strategy="balance"]:hover {
    background: rgba(167, 243, 208, 0.25);
    border-color: rgba(167, 243, 208, 0.5);
}

.strategy-card[data-strategy="balance"].selected {
    background: rgba(167, 243, 208, 0.85);
    border-color: #a7f3d0;
}

/* Horizon - Lavanda pastel */
.strategy-card[data-strategy="horizon"] {
    background: rgba(206, 147, 216, 0.15);
    border-color: rgba(206, 147, 216, 0.3);
}

.strategy-card[data-strategy="horizon"]:hover {
    background: rgba(206, 147, 216, 0.25);
    border-color: rgba(206, 147, 216, 0.5);
}

.strategy-card[data-strategy="horizon"].selected {
    background: rgba(206, 147, 216, 0.85);
    border-color: #ce93d8;
}

.strategy-card.selected .strategy-name {
    color: white;
}

.strategy-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
}

/* Step Indicators */
.step-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 100;
}

.step-dot {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
}

.step-dot:hover:not(.active) {
    border-color: var(--text);
    color: var(--text);
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .hex-nav {
        width: 50px;
        height: 58px;
    }

    .hex-prev {
        left: 20px;
    }

    .hex-next {
        right: 20px;
    }

    .slide-hero-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-hero {
        height: 100vh;
        min-height: 100vh;
    }

    /* Hide original navigation on mobile - they will be cloned into content */
    .steps-slider>.hex-nav {
        display: none !important;
    }

    /* Container for navigation arrows below actions */
    .mobile-nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    /* Mobile nav buttons inside the container */
    .mobile-nav-container .hex-nav {
        position: relative !important;
        width: auto !important;
        height: auto !important;
        display: inline-flex !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 12px 20px;
        margin: 0;
        gap: 10px;
    }

    .mobile-nav-container .hex-nav svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .mobile-nav-container .hex-prev {
        order: 1;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center;
    }

    .mobile-nav-container .hex-next {
        order: 2;
        padding: 12px 18px !important;
        border-radius: 50px !important;
    }

    /* Show nav text on mobile */
    .mobile-nav-container .nav-text {
        display: inline !important;
        font-size: 0.8rem;
        white-space: normal;
        max-width: 150px;
        line-height: 1.2;
        text-align: left;
    }

    /* Ensure video is visible on mobile */
    .slide-media {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

    .slide-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Adjust content positioning for mobile */
    .slide-hero-content {
        padding: 140px 20px 180px;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.8rem;
    }

    .strategy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .strategy-card {
        padding: 16px 12px;
    }

    .strategy-name {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Step indicators adjustment */
    .step-indicators {
        bottom: 30px;
        gap: 0.5rem;
    }

    .step-dot {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    /* Tutorial button adjustment */
    .tutorial-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    /* Steps section title */
    .steps-section-title {
        font-size: clamp(1rem, 5vw, 1.5rem);
        top: 80px;
        padding: 0 20px;
    }
}

/* Tutorial Button */
.tutorial-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tutorial-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--text);
}

.tutorial-btn svg {
    width: 16px;
    height: 16px;
}

/* Tutorial Modal */
.tutorial-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tutorial-modal.active {
    opacity: 1;
    visibility: visible;
}

.tutorial-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.tutorial-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.tutorial-modal.active .tutorial-modal-content {
    transform: scale(1);
}

.tutorial-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tutorial-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.tutorial-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tutorial-video-wrapper iframe,
.tutorial-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* ===================================
   Strategy Info Modal
   =================================== */

.strategy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.strategy-modal.active {
    opacity: 1;
    visibility: visible;
}

.strategy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.strategy-modal-content {
    position: relative;
    z-index: 2001;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.strategy-modal.active .strategy-modal-content {
    transform: scale(1) translateY(0);
}

.strategy-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.strategy-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Strategy Info Card */
.strategy-info-card {
    background: linear-gradient(135deg,
            rgba(30, 30, 40, 0.95) 0%,
            rgba(20, 20, 30, 0.98) 100%);
    border-radius: 20px;
    padding: 40px 50px;
    min-width: 380px;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.strategy-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: white;
}

/* Badge colors por estrategia */
.strategy-info-card[data-strategy="alpha"] .strategy-badge {
    background: rgba(244, 143, 177, 0.9);
}

.strategy-info-card[data-strategy="momentum"] .strategy-badge {
    background: rgba(255, 171, 145, 0.9);
}

.strategy-info-card[data-strategy="balance"] .strategy-badge {
    background: rgba(167, 243, 208, 0.9);
    color: #1a3432;
}

.strategy-info-card[data-strategy="horizon"] .strategy-badge {
    background: rgba(206, 147, 216, 0.9);
}

.strategy-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strategy-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.strategy-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 400;
}

.strategy-value {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.strategy-value.risk {
    color: #ff6b6b;
}

.strategy-info-card[data-strategy="balance"] .strategy-value.risk,
.strategy-info-card[data-strategy="horizon"] .strategy-value.risk {
    color: #4ade80;
}

.strategy-info-card[data-strategy="momentum"] .strategy-value.risk {
    color: #ffa500;
}

.strategy-value.highlight {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.strategy-suffix {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-style: italic;
}

/* Animación de entrada */
@keyframes strategyCardIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
    }
}

.strategy-modal.active .strategy-info-card {
    animation: strategyCardIn 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .strategy-info-card {
        min-width: 300px;
        max-width: 90vw;
        padding: 30px;
    }

    .strategy-badge {
        font-size: 0.9rem;
        padding: 8px 18px;
    }

    .strategy-value.highlight {
        font-size: 1.1rem;
    }

    .strategy-modal-close {
        top: -45px;
        right: 5px;
    }
}

/* Steps Section Title - Minimalist Premium Design */
.steps-section-title {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: var(--dark);
    pointer-events: none;
    z-index: 100;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 500;
    padding: 0 20px;
    opacity: 0;
    animation: titleFadeIn 1s ease-out 0.3s forwards;
}

/* Subtle underline accent */
.steps-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--peach));
    margin: 12px auto 0;
    border-radius: 2px;
    opacity: 0;
    animation: lineGrow 0.8s ease-out 0.8s forwards;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15px);
        letter-spacing: 12px;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 6px;
    }
}

@keyframes lineGrow {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 60px;
    }
}

/* Desktop: Adjust button width to fit text */
.steps-slider>.hex-next {
    width: auto;
    padding: 15px 20px 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: absolute;
    overflow: visible;
}

.hex-next::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    padding: 3px;
    background: transparent;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Step-specific pulsing colors - using data-step attribute */
.hex-next[data-step="0"]::before {
    background: var(--pink);
}

.hex-next[data-step="1"]::before {
    background: var(--purple);
}

.hex-next[data-step="2"]::before {
    background: var(--peach);
}

/* Step-specific glow on hover */
.hex-next[data-step="0"]:hover {
    box-shadow: 0 0 25px rgba(244, 143, 177, 0.6);
    border-color: var(--pink);
}

.hex-next[data-step="1"]:hover {
    box-shadow: 0 0 25px rgba(206, 147, 216, 0.6);
    border-color: var(--purple);
}

.hex-next[data-step="2"]:hover {
    box-shadow: 0 0 25px rgba(255, 171, 145, 0.6);
    border-color: var(--peach);
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hex-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
    /* Maintain vertical centering */
}

.nav-text {
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Hide text on larger tablets but show on mobile */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-text {
        display: none;
    }

    .hex-next {
        width: 50px !important;
        height: 50px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        justify-content: center;
    }
}

/* Mobile specific styles */
@media (max-width: 768px) {

    /* Hide original navigation on mobile (will be cloned into content) */
    .steps-slider>.hex-nav {
        display: none !important;
    }

    /* Mobile nav container styles */
    .mobile-nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .mobile-nav-container .hex-nav {
        position: relative !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        padding: 12px 20px !important;
        display: inline-flex !important;
        gap: 8px;
    }

    .mobile-nav-container .hex-prev {
        order: 1;
        border-radius: 50% !important;
        width: 45px !important;
        height: 45px !important;
        padding: 0 !important;
        justify-content: center;
    }

    .mobile-nav-container .hex-next {
        order: 2;
        border-radius: 50px !important;
        padding: 12px 20px !important;
        width: auto !important;
        height: auto !important;
    }

    .mobile-nav-container .nav-text {
        display: inline !important;
        font-size: 0.8rem;
        white-space: normal;
        max-width: 160px;
        line-height: 1.2;
        text-align: left;
    }

    .mobile-nav-container .hex-nav svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .steps-section-title {
        top: 80px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .steps-hero {
        min-height: 100vh;
    }

    .slide-hero-content {
        padding: 120px 15px 160px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .step-tag {
        font-size: 0.65rem;
        padding: 6px 16px;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 0.85rem;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 0.75rem;
    }

    .strategy-grid {
        gap: 0.5rem;
    }

    .strategy-card {
        padding: 12px 8px;
    }

    .strategy-name {
        font-size: 0.65rem;
    }

    .mobile-nav-container {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .mobile-nav-container .hex-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .mobile-nav-container .hex-next {
        padding: 10px 16px !important;
    }

    .mobile-nav-container .nav-text {
        font-size: 0.75rem;
        max-width: 140px;
    }

    .step-indicators {
        bottom: 20px;
    }

    .step-dot {
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
    }

    .steps-section-title {
        font-size: 0.9rem;
        top: 70px;
    }
}