: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 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 {
    width: 18px;
    height: 18px;
}

.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;
    width: auto;
    max-width: 90%;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100%) rotateY(-45deg) scale(0.8);
    pointer-events: none;
}

.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 {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slide-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.slide-content {
    padding: 2rem;
    text-align: center;
    background: transparent;
    backdrop-filter: none;
}

.slide-content h3 {
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.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: 120px 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;
    min-height: 90vh;
    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: 3rem;
    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: 2.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);
}

.btn-whatsapp:active,
.btn-email:active {
    transform: translateY(-1px);
}

.email-icon {
    width: 18px;
    height: 18px;
}

/* 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);
}