:root {
    /* PALETA: MARISOL ROSE MILK (Soft & Dreamy) */
    
    /* FONDO BASE: Rosa pastel muy suave, casi blanco */
    --bg-deep: #fff0f5; 
    
    /* GRADIENTE: 
       Un degradado sutil y luminoso:
       Desde un "Rosa Nube" (#ffe6f2) hacia un "Rosa Melocotón muy suave" (#fff5e6).
       Esto da calidez sin cansar la vista.
    */
    --bg-gradient: linear-gradient(135deg, #ffe6f2 0%, #fff0f5 50%, #fff5e6 100%);
    
    /* TEXTOS: Ahora deben ser oscuros para contrastar con el fondo claro */
    --text-main: #5e3a4b; /* Un color berenjena/vino oscuro, mucho más elegante que el negro puro */
    
    /* MODIFICADO: Oscurecido para mejor lectura (#8c6a7a era muy claro) */
    --text-muted: #6b4c5b; 
    
    /* DORADOS (Se mantienen, pero ahora resaltan sobre claro) */
    --gold-gradient: linear-gradient(to right, #BF953F, #d4af37, #B38728, #FBF5B7, #AA771C);
    --gold-solid: #D4AF37;
    
    /* COLOR DE ACENTO (Botones y detalles importantes) */
    /* Usamos el rosa fuerte de ella SOLO para detalles pequeños para que destaque */
    --pink-hot: #FF007F; 
    --pink-glow: 0 0 20px rgba(255, 0, 127, 0.2);
    
    /* CRISTAL (Adaptado para fondo claro - Efecto hielo rosado) */
    --glass-bg: rgba(255, 255, 255, 0.6); /* Blanco semi-transparente */
    --glass-border: 1px solid rgba(255, 255, 255, 0.9); /* Borde blanco nítido */
    --glass-shadow: 0 10px 30px rgba(219, 169, 189, 0.25); /* Sombra rosada suave */
    --blur-strength: blur(20px);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Animaciones */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0px); } }
@keyframes arrowSwipe { 0%, 100% { transform: translateX(0); opacity: 0.7; } 50% { transform: translateX(10px); opacity: 1; } }

* { box-sizing: border-box; margin: 0; padding: 0; }

/* FIX PROBLEMA ZOOM OUT & SCROLL */
html, body {
    width: 100%;
    overflow-x: hidden; 
    position: relative;
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* CAMBIO IMPORTANTE: Color de títulos oscuro (Vino/Berenjena) */
h1, h2, h3 { 
    font-family: var(--font-heading); 
    color: var(--text-main); /* Antes era #fff, ahora usa la variable oscura */
    letter-spacing: -0.5px; 
}

.text-gold-metallic {
    background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 700; text-shadow: 0px 4px 15px rgba(212, 175, 55, 0.3);
}

/* --- NAVBAR & HAMBURGER --- */
nav {
    /* CAMBIO 1: Usamos fixed en lugar de sticky para que siempre flote arriba */
    position: fixed; 
    top: 0; 
    left: 0; /* Aseguramos que empiece en el borde izquierdo */
    width: 100%; /* Forzamos el ancho total */
    z-index: 1000;
    
    padding: 8px 5%; 
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 240, 245, 0.95); /* Aumenté un poco la opacidad para que no se mezcle tanto con el texto al hacer scroll */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(219, 169, 189, 0.15);
    max-height: 80px; 
}

/* CAMBIO 2: Compensar el espacio */
body {
    padding-top: 85px; /* 80px del nav + 5px de aire */
}

.logo {
    font-weight: 800; font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; color: #fff;
    white-space: nowrap;
    color: var(--pink-hot); /* El logo en su rosa fuerte para identidad */
}

.logo-img {
    /* Ajuste de tamaño para la barra */
    height: 50px; 
    width: auto;
    
    /* ESTO ES LO QUE LO CENTRA: */
    display: block;
    margin: 0 auto; /* <--- AGREGA ESTA LÍNEA */
    
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(255, 182, 193, 0.5));
}

.logo-img:hover {
    transform: scale(1.05); /* Efecto zoom sutil al pasar el mouse */
}

.nav-desktop { display: flex; gap: 15px; align-items: center; }

.hamburger {
    display: none; 
    font-size: 1.5rem; 
    
    /* CAMBIO: De #fff a var(--text-main) para que se vea oscuro */
    color: var(--text-main); 
    
    background: none; 
    border: none; 
    cursor: pointer;
    transition: 0.3s;
}

/* --- NUEVO: TEXTO CENTRADO EN NAVBAR (Escritorio) --- */
.nav-center-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pink-hot); /* Rosa fuerte pedido */
    letter-spacing: 1px;
    white-space: nowrap;
}
.nav-center-brand .dot {
    color: var(--gold-solid);
    font-size: 1.5rem;
    line-height: 0;
}

/* --- NUEVO: INDICADOR SCROLL DOWN (Hero) --- */
.scroll-down-hero {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    animation: bounce 2s infinite;
    color: var(--gold-solid);
    font-size: 1.5rem;
    cursor: pointer;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Ocultar hint horizontal en escritorio */
.scroll-hint-horizontal { display: none; }

/* Opcional: Un pequeño efecto al tocarlo */
.hamburger:hover {
    color: var(--pink-hot); /* Se pone rosa al pasar el mouse/dedo */
    transform: scale(1.1);
}

.mobile-menu {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: #fff0f5; /* Rosa Lavender Blush */
    border-bottom: 1px solid var(--pink-hot);
    display: none; flex-direction: column; align-items: center; gap: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.mobile-menu.active { display: flex; }

/* Botones */
.btn-primary {
    display: inline-block; 
    background: var(--gold-gradient); color: #2a0a18; 
    padding: 10px 30px; border-radius: 50px; text-decoration: none;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase;
    transition: all 0.3s ease; border: none; cursor: pointer; text-align: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2); white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); color: #000; }

.btn-login {
    text-decoration: none; 
    /* CAMBIO: Texto y Borde dorados por defecto para máxima visibilidad */
    color: var(--gold-solid); 
    border: 1px solid var(--gold-solid);
    font-weight: 700; 
    font-size: 0.85rem;
    padding: 8px 20px; 
    border-radius: 50px;
    transition: all 0.3s ease; 
    background: rgba(255, 255, 255, 0.4); /* Un fondo blanco muy sutil para resaltar más */
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.btn-login:hover { 
    /* Efecto al pasar el mouse: Se llena de dorado */
    background: var(--gold-solid); 
    color: #fff; /* O puedes poner un color oscuro si prefieres contraste */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Sub-nav flecha atrás */
.sub-nav-back { max-width: 1200px; margin: 15px auto 0; padding: 0 20px; }
.btn-back-link {
    text-decoration: none; color: var(--text-muted); font-size: 0.9rem; 
    display: inline-flex; align-items: center; gap: 8px; transition: 0.3s;
}
.btn-back-link:hover { color: var(--gold-solid); transform: translateX(-5px); }

/* --- HERO SECTION --- */
.hero-section { padding: 80px 5% 40px; text-align: center; position: relative; }

.hero-pill {
    display: inline-block; 
    
    /* CAMBIO: Fondo blanco semitransparente para limpiar el ruido de fondo */
    background: rgba(255, 255, 255, 0.6); 
    
    /* CAMBIO: Borde sólido del color de ella */
    border: 1px solid var(--pink-hot); 
    
    /* CAMBIO: Texto en Rosa Neón (antes era #fff y no se veía) */
    color: var(--pink-hot); 
    
    border-radius: 50px; 
    padding: 8px 25px; 
    font-size: 0.75rem; 
    font-weight: 800; /* Un poco más gordita la letra */
    margin-bottom: 25px;
    letter-spacing: 1px; 
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.15); /* Sombra suave rosa */
}


.flagship-placeholder {
    margin: 60px auto 30px; max-width: 800px;
    background: rgba(0,0,0,0.3); backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px; padding: 50px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.flagship-text { color: var(--text-muted); font-size: 0.9rem; font-style: italic; margin-top: 10px; }

/* --- LEAD MAGNET --- */
.lead-magnet-section {
    max-width: 1000px; margin: 40px auto; padding: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.1), rgba(0,0,0,0));
    border: 1px solid rgba(255, 0, 127, 0.4);
    border-radius: 30px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    
    position: relative; 
    overflow: visible !important;

    box-shadow: 0 0 40px rgba(255, 0, 127, 0.1);
}
.lead-form input {
    padding: 15px 25px; border-radius: 50px; color: #fff; font-family: var(--font-body);
    outline: none; width: 100%; max-width: 300px; margin: 5px; transition: 0.3s;
    background: rgba(255, 255, 255, 0.6); 
    border: 1px solid rgba(219, 169, 189, 0.5); /* Borde rosa suave */
    color: var(--text-main); /* Texto oscuro al escribir */
}
.lead-form input:focus { 
    background: #fff;
    border-color: var(--pink-hot);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.15);
}

/* --- CATALOGO & TARJETAS --- */

/* Scroll Hint (Móvil) */

.scroll-hint {
    text-align: center; font-size: 0.9rem; color: var(--gold-solid);
    margin: 20px 0 10px; animation: arrowSwipe 1.5s infinite;
    display: flex; justify-content: center; align-items: center; gap: 10px;
    font-weight: 600; will-change: transform, opacity;
}

/* --- CATALOGO: GRILLA 2 COLUMNAS (Horizontal High Ticket) --- */

.masonry-grid { 
    display: grid; 
    gap: 30px; 
    padding: 20px 0;
    /* Al pedir 480px de ancho mínimo, forzamos que entren 2 en pantallas normales */
    grid-template-columns: 1fr 1fr;
}

.product-card {
    background: rgba(255, 255, 255, 0.8);    
    border: var(--glass-border); 
    border-radius: 20px; 
    overflow: hidden;
    transition: all 0.4s ease; 
    box-shadow: var(--glass-shadow);
    
    /* HORIZONTAL: Foto Izquierda / Texto Derecha */
    display: flex; 
    flex-direction: row; 
    height: 280px; /* Altura fija para alineación perfecta */
}

/* Imagen (Izquierda - 40%) */
.product-card .img-container { 
    width: 40%;   
    height: 100%; 
    overflow: hidden; 
    position: relative;
    border-right: 1px solid rgba(0,0,0,0.05); /* Línea sutil separadora */
}

.img-container img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.5s ease; 
}
.product-card:hover img { transform: scale(1.05); }

/* Contenido (Derecha - 60%) */
.product-card .card-content { 
    width: 60%; 
    padding: 25px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}

.card-content h3 { 
    color: var(--text-main); 
    font-size: 1.3rem; 
    margin-bottom: 5px;
    line-height: 1.2;
    font-weight: 700;
} 

.desc { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    margin-bottom: 10px; 
    /* Cortamos texto excedente */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price { 
    color: var(--gold-solid); 
    font-weight: 700; 
    font-size: 1.1rem; 
    margin-top: auto; 
}

/* Badge (Mantenemos posición) */
.badge {
    position: absolute; top: 15px; left: 15px; 
    background: var(--gold-solid); color: #000; padding: 5px 12px;
    border-radius: 50px; font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* --- WHATSAPP FLOTANTE --- */
.btn-whatsapp {
    position: fixed; bottom: 25px; right: 25px;
    background: #25D366; color: #fff;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 2000; transition: transform 0.3s;
}
.btn-whatsapp:hover { transform: scale(1.1); box-shadow: 0 0 20px #25D366; }

/* --- PRODUCT DETAIL LAYOUT --- */
.product-main-layout {
    max-width: 1200px; margin: 20px auto 40px; padding: 0 20px;
    display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}

/* --- FIX LEGIBILIDAD TEXTO PRODUCTO --- */
/* Forzamos que cualquier párrafo en la ficha de producto sea oscuro y visible */
.product-main-layout p {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500; /* Un poco más de peso para que no se pierda en el fondo */
    opacity: 0.95;
    margin-bottom: 20px;
}

.product-gallery { position: relative; }

/* --- LOGIN --- */
.login-container {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #fff;
    box-shadow: 0 15px 35px rgba(219, 169, 189, 0.3);
}
.password-wrapper { position: relative; width: 100%; }
.toggle-password {
    position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); cursor: pointer; z-index: 5;
}

/* --- FOOTER --- */
footer {
    margin-top: auto; background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted); padding: 40px 5%; text-align: center;
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.footer-row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.social-icon-inline { width: 22px; height: 22px; fill: #fff; transition: 0.3s; vertical-align: middle; }
.social-icon-inline:hover { fill: var(--pink-hot); }
.footer-credits { font-size: 0.8rem; opacity: 0.7; }

/* --- MODAL PAGOS --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(5px);
    z-index: 10000; display: none; align-items: center; justify-content: center;
}
.payment-modal {
    padding: 40px; border-radius: 20px; width: 90%; max-width: 500px;
    text-align: center; position: relative;
    background: linear-gradient(145deg, #ffffff, #ffe6f2);
    border: 1px solid #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    /* IMPORTANTE: Cambiar color de texto dentro del modal si es necesario */
    color: var(--text-main);
}
.payment-option {
    display: flex; 
    align-items: center; 
    justify-content: space-between; /* Mantiene ícono y texto alineados */
    padding: 15px 20px; 
    margin: 10px 0; 
    
    /* CAMBIO: Fondo blanco semitransparente (hielo) en vez de transparente total */
    background: rgba(255, 255, 255, 0.5); 
    
    /* CAMBIO: Borde dorado sutil para definir el botón */
    border: 1px solid rgba(212, 175, 55, 0.3); 
    
    border-radius: 10px; 
    cursor: pointer; 
    
    /* CAMBIO CRÍTICO: Texto oscuro (Vino/Berenjena) para que se lea */
    color: var(--text-main); 
    font-weight: 600; /* Un poco más de peso para legibilidad */
    
    transition: all 0.3s ease;
}

.payment-option:hover {
    /* Efecto al pasar el mouse: se vuelve blanco sólido y el borde se ilumina */
    background: #ffffff;
    border-color: var(--gold-solid);
    transform: translateY(-2px); /* Pequeña elevación */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

/* ========================================= */
/* CLASE FALTANTE PARA EL MODAL (CRÍTICO)    */
/* ========================================= */
.modal-overlay.active {
    display: flex !important; /* Esto hace que el popup aparezca */
}

/* 1. SOLUCIÓN DE CENTRADO KIT */
.kit-wrapper {
    max-width: 1000px; 
    margin: 0 auto !important; 
    padding: 0 20px;
    display: block;
}

.kit-section { padding: 60px 0; border-bottom: 1px dashed rgba(212, 175, 55, 0.3); }
.kit-section:last-child { border-bottom: none; }

/* 2. GRILLA VISUAL DE MÓDULOS */
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.module-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ocupa el alto disponible */
}
.module-card:hover { transform: translateY(-5px); border-color: var(--gold-solid); }

.module-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1.4; 
    object-fit: cover;
}

/* 3. BOTÓN PULSANTE */
.btn-pulse {
    background: var(--pink-hot);
    color: #fff;
    font-weight: 700;
    padding: 20px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
    animation: pulse-pink 2s infinite;
    width: 100%;
    max-width: 450px;
    display: block; 
    margin: 30px auto 0;
    will-change: transform, box-shadow; 
}
@keyframes pulse-pink {
    0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 0, 127, 0); }
    100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(255, 0, 127, 0); }
}

/* 4. VALUE STACK (TABLA DE PRECIOS) */
.value-stack-container {
    background: #fff;
    border: 2px solid var(--gold-solid);
    border-radius: 20px;
    overflow: hidden;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.stack-row { display: flex; justify-content: space-between; padding: 15px 20px; border-bottom: 1px dashed #eee; color: #666; }
.stack-total { background: #fdfdfd; padding: 25px; text-align: center; border-top: 2px solid var(--gold-solid); }

/* 5. STICKY BAR */
.sticky-timer { 
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); 
    width: 90%; max-width: 500px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    color: #fff; 
    padding: 12px 20px; 
    z-index: 9999; 
    border-radius: 50px;
    display: flex; justify-content: space-between; align-items: center; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); 
    border: 1px solid var(--gold-solid);
    animation: slideUp 0.5s ease-out;
}
@keyframes slideUp { from { transform: translate(-50%, 100px); } to { transform: translate(-50%, 0); } }

/* CHECKLIST ESTILIZADA */
.check-list li { margin-bottom: 15px; display: flex; align-items: start; gap: 10px; color: var(--text-muted); text-align: left; }
.check-list i { color: var(--pink-hot); margin-top: 5px; }

@keyframes blink { 
    0% { opacity: 1; } 
    50% { opacity: 0.3; } 
    100% { opacity: 1; } 
}

/* Contenedor Principal */
.fenix-description-container {
font-family: 'Outfit', sans-serif; /* Asumiendo la fuente del proyecto */
line-height: 1.6;
color: #333; /* Gris oscuro para lectura */
background: rgba(255, 255, 255, 0.8); /* Efecto Frosted sutil */
padding: 20px;
border-radius: 12px;
border: 1px solid rgba(212, 175, 55, 0.2); /* Borde dorado muy sutil */
}

/* Tipografía y Énfasis */
.highlight-gold {
color: #D4AF37; /* Dorado metálico */
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.highlight-pink {
color: #FF007F; /* Rosa Fuerte de la marca */
font-weight: 700;
}

.text-dark {
color: #1a1a1a;
font-weight: 600;
}

/* Grid de "No improvisas..." */
.fenix-benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 10px;
margin: 20px 0;
background: #fdfbf7; /* Crema muy suave */
padding: 15px;
border-radius: 8px;
}

.benefit-item {
display: flex;
align-items: center;
gap: 8px;
}

.check-icon {
color: #FF007F; /* Rosa */
font-weight: bold;
font-size: 1.1em;
}

.benefit-text {
font-weight: 500;
font-size: 0.95em;
color: #4a0e28; /* Tono vino oscuro */
}

/* Lista de Pasos */
.fenix-roadmap {
margin: 25px 0;
}

.roadmap-title {
font-size: 1.1em;
margin-bottom: 12px;
color: #D4AF37;
text-transform: uppercase;
letter-spacing: 1px;
}

.roadmap-list {
list-style: none;
padding: 0;
margin: 0;
}

.roadmap-list li {
display: flex;
align-items: flex-start;
margin-bottom: 10px;
font-size: 1em;
}

.arrow-icon {
color: #D4AF37;
margin-right: 10px;
font-weight: bold;
}

/* Cierre */
.fenix-outro {
border-top: 1px solid rgba(0,0,0,0.05);
padding-top: 15px;
font-style: italic;
text-align: center;
color: #555;
}

/* --- NUEVOS ESTILOS PARA REDISEÑO --- */

/* 1. HERO COMPACTO */
.new-hero-container {
    padding: 100px 5% 60px; /* Padding top alto por el navbar fixed */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-identity {
    flex: 1;
    max-width: 500px;
}

.profile-frame {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--gold-solid);
    padding: 3px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.profile-pic-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Caja del Lead Magnet en el Hero */
.lead-magnet-compact {
    flex: 1;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--pink-hot);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(255, 0, 127, 0.1);
}

/* Inputs del form compacto */
.compact-form input {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
}

/* 2. SECCIÓN QUIÉN SOY (BIO) */
.bio-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.bio-image-wrapper {
    flex: 1;
    position: relative;
}

/* Marco decorativo detrás de la foto */
.bio-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px; left: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold-solid);
    border-radius: 20px;
    z-index: 0;
}

.bio-img-full {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bio-content-text {
    flex: 1.2;
}

/* --- NUEVO: PERFIL CON TEXTO AL LADO --- */

/* Contenedor para poner foto y texto en fila */
.hero-profile-row {
    display: flex;
    align-items: center; /* Centra verticalmente */
    gap: 20px; /* Espacio entre la foto y el texto */
    margin-bottom: 25px; /* Espacio antes del título grande */
}

/* Ajuste para quitar el margen que tenía antes la foto sola */
.hero-profile-row .profile-frame {
    margin-bottom: 0; 
    flex-shrink: 0; /* Evita que la foto se aplaste */
}

/* Estilos del texto nuevo */
.mini-bio-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; /* Alineado a la izquierda siempre (para estar pegado a la foto) */
}

.mini-bio-name {
    font-family: var(--font-heading); /* Playfair Display */
    font-weight: 700;
    color: var(--pink-hot); /* El rosa fuerte de la marca */
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.mini-bio-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* --- AJUSTE RESPONSIVE (MÓVIL) --- */
@media (max-width: 900px) {
    /* En móvil, centramos todo el bloque para que se vea equilibrado */
    .hero-profile-row {
        justify-content: center; 
        text-align: left; /* Mantenemos el texto a la izquierda de la foto */
    }
    
    /* Opcional: Si sientes que en móvil el texto queda muy grande */
    .mini-bio-name { font-size: 1rem; }
    .mini-bio-desc { font-size: 0.85rem; }
}

/* --- AJUSTES DE ESPACIO HERO (DESKTOP) --- */

/* 1. Modifica esta clase existente para dar más ancho total */
.new-hero-container {
    padding: 120px 5% 60px; /* Un poco más de aire arriba */
    max-width: 1350px;      /* ANTES: 1200px. AHORA: Más ancho para descomprimir */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;              /* ANTES: 50px. AHORA: Más separación entre Marisol y la Tarjeta */
}

/* 2. Dale más prioridad de espacio a la columna izquierda */
.hero-identity {
    flex: 1.3; /* Esto hace que ocupe más ancho que la tarjeta (que será flex: 1) */
    min-width: 450px; /* Asegura que el texto nunca se aplaste demasiado */
}

/* 3. Estilo para la nueva portada del ebook gratis */
.book-pop {
    width: 120px;       /* Tamaño controlado */
    display: block;
    margin: -70px auto 20px; /* MARGEN NEGATIVO: Hace que "flote" saliendo por arriba */
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3); /* Sombra fuerte para efecto 3D */
    transform: rotate(-3deg); /* Una leve inclinación queda muy estético */
    border: 2px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}

.book-pop:hover {
    transform: rotate(0deg) scale(1.05); /* Efecto interactivo sutil */
}

/* ANIMACIÓN LATIDO DORADO */
@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        border-color: #D4AF37;
    }
    70% {
        /* El borde se expande como una onda */
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); 
        border-color: #FFD700;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
        border-color: #D4AF37;
    }
}

.golden-heartbeat {
    animation: goldPulse 2s infinite;
    transition: all 0.3s ease;
}

/* Opcional: Que se detenga o brille más al pasar el mouse */
.golden-heartbeat:hover {
    animation: none;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    border-color: var(--pink-hot) !important; /* Un toque rosa al tocarlo */
}

/* ========================================= */
/* ZONA RESPONSIVE UNIFICADA (MÓVIL)         */
/* ========================================= */

/* PUNTO DE QUIEBRE PRINCIPAL (Tablets y Celulares - 900px) */
@media (max-width: 900px) {

    /* --- NAVEGACIÓN --- */
    .nav-desktop, .nav-center-brand { display: none !important; }
    .hamburger { display: block !important; font-size: 1.8rem; color: var(--text-main); }
    .logo-img { height: 40px; }
    
    /* --- HERO & LEAD MAGNET (Rediseño) --- */
    .new-hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
        gap: 40px;
    }
    .hero-identity { min-width: auto; flex: 1; margin-bottom: 20px; }
    
    /* Tarjeta Rosa en Móvil */
    .new-hero-container .lead-magnet-section {
        width: 100% !important;
        margin: 50px 0 0 0 !important;
        padding: 30px 20px !important;
    }
    
    /* Libro flotante ajustado */
    .book-pop { width: 100px; margin: -60px auto 15px; }
    
    /* Inputs full width */
    .lead-form input, .lead-form button { width: 100% !important; max-width: 100% !important; }

    /* --- TARJETA KIT FÉNIX (Fix Centrado) --- */
    #producto-estrella { padding: 0 15px !important; margin-top: 40px !important; }
    #producto-estrella > div { flex-direction: column-reverse !important; width: 100% !important; height: auto !important; }
    #producto-estrella > div > div:first-child { padding: 30px 20px !important; min-width: 100% !important; text-align: center !important; }
    #producto-estrella > div > div:nth-child(2) { min-width: 100% !important; padding: 20px 0; }
    #producto-estrella img { max-width: 80% !important; margin: 0 auto !important; display: block; transform: none !important; }
    #producto-estrella h2 { font-size: 2rem !important; }
    #producto-estrella button { width: 100% !important; }
    #producto-estrella ul li { justify-content: center; }

    /* --- SECCIÓN QUIÉN SOY --- */
    .bio-container { flex-direction: column; gap: 40px; }
    .bio-image-wrapper::before { left: 10px; top: 10px; }
    .hero-bio { padding-top: 40px !important; padding-bottom: 20px !important; }
    .hero-bio .bio-text h1 { font-size: 2.5rem !important; }

    /* --- CATALOGO HORIZONTAL (Scroll Snap) --- */
    .masonry-grid, .module-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 20px; padding-bottom: 25px;
        width: 100vw; margin-left: -5%; padding-left: 5%; padding-right: 5%;
    }
    .masonry-grid::-webkit-scrollbar, .module-grid::-webkit-scrollbar { display: none; }
    
    .product-card, .module-card {
        min-width: 260px; max-width: 260px;
        scroll-snap-align: center; flex-shrink: 0;
        flex-direction: column !important; height: auto !important;
    }
    .product-card .img-container { width: 100% !important; height: 250px !important; }
    .product-card .card-content { width: 100% !important; text-align: center !important; }
    .product-card .btn-primary { width: 100% !important; }

    .scroll-hint-horizontal { display: flex; align-items: center; justify-content: center; gap: 10px; animation: arrowSwipe 2s infinite; }
    .scroll-hint { display: none !important; }
}

/* PUNTO DE QUIEBRE PEQUEÑO (Móviles angostos - 480px) */
@media (max-width: 480px) {
    h1 { font-size: 2rem !important; }
    .fenix-benefits-grid { grid-template-columns: 1fr; }
    .new-hero-container { padding-left: 15px; padding-right: 15px; }
}

/* --- CUSTOM ALERT (Reemplazo de alertas nativas) --- */
.custom-alert-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    z-index: 20000; /* Por encima de todo */
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}

.custom-alert-overlay.active {
    display: flex; opacity: 1;
}

.custom-alert-box {
    background: linear-gradient(145deg, #ffffff, #fff0f5);
    border: 1px solid #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    padding: 30px; border-radius: 20px; width: 90%; max-width: 400px;
    text-align: center; transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-alert-overlay.active .custom-alert-box {
    transform: scale(1);
}

.alert-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
/* CORRECCIÓN: Usamos 'filter' en lugar de 'drop-shadow' directo */

.alert-icon.success { 
    color: #4CAF50; 
    filter: drop-shadow(0 5px 15px rgba(76, 175, 80, 0.3)); 
}

.alert-icon.error { 
    color: var(--pink-hot); 
    filter: drop-shadow(0 5px 15px rgba(255, 0, 127, 0.3)); 
}

.alert-title { font-family: var(--font-heading); color: var(--text-main); margin-bottom: 10px; font-size: 1.5rem; }
.alert-msg { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }

.btn-alert {
    background: var(--gold-solid); color: #fff; border: none;
    padding: 10px 30px; border-radius: 50px; font-weight: 700; cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); transition: 0.3s;
}
.btn-alert:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5); }

/* --- SWITCH MONEDA --- */
.currency-switch-container {
    display: flex; align-items: center; gap: 8px; margin-right: 15px;
    background: rgba(255,255,255,0.5); padding: 5px 10px; border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.currency-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); opacity: 0.5; }
.currency-label.active { color: var(--text-main); opacity: 1; }

.switch { position: relative; display: inline-block; width: 34px; height: 18px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 12px; width: 12px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--gold-solid); }
input:checked + .slider:before { transform: translateX(16px); }

/* Animación de entrada suave */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicamos la animación al bloque del perfil */
.hero-profile-row {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Empieza invisible */
}