@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   DESIGN TOKENS — 2PLUSSICILIA
   ============================================ */
:root {
    /* Azul institucional — confianza, seguridad, credibilidad INFONAVIT */
    --primary: #1a4f8b;
    --primary-dark: #12356b;
    --primary-light: #2563eb;
    /* Verde WhatsApp — acción, go, canal de confianza del segmento */
    --accent: #25d366;
    --accent-dark: #1da851;
    /* Dorado/ámbar — aspiración, calor, valor económico */
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    /* Naranja cálido — hogar, energía, urgencia positiva */
    --warm: #ea6c2e;
    --warm-light: #fb8f57;
    /* Fondos cálidos para secciones aspiracionales */
    --warm-bg: #fdf8f3;
    --warm-bg-2: #fff8f0;
    /* Tipografía y neutros */
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --bg-section: #f3f4f6;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.12), 0 4px 8px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 64px; /* altura del nav fijo */
}

/* ============================================
   #12 STICKY NAV
   ============================================ */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    height: calc(64px + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,45,123,0.12) 0%, rgba(255,107,43,0.09) 100%), rgba(10, 4, 7, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 45, 123, 0.35);
    transform: translateY(0);
    -webkit-transform: translateY(0);
    transition: background 0.35s ease, border-color 0.35s ease;
    padding-top: env(safe-area-inset-top, 0px);
}

.nav-domain {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    background: linear-gradient(90deg, #FF2D7B, #FF6B2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    margin-left: 8px;
    font-weight: 700;
}

.sticky-nav.on-hero {
    background: linear-gradient(90deg, rgba(255,45,123,0.08) 0%, rgba(255,107,43,0.06) 100%), rgba(10, 4, 7, 0.80);
    border-bottom-color: rgba(255, 45, 123, 0.2);
}

/* ============================================
   BARRA DE PROGRESO DE LECTURA
   Muestra avance de scroll — invita a continuar
   ============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #FF2D7B 0%, #FF6B2B 50%, #FFBA08 100%);
    z-index: 9999;
    transition: width 0.08s linear;
    will-change: width;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(255, 45, 123, 0.5);
}

/* ============================================
   INDICADOR DE SCROLL EN HERO — triple cascada
   Más potente y divertido: 3 chevrons en ola
   ============================================ */
.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 10;
}

.hero-scroll-indicator.hidden {
    opacity: 0;
}

.scroll-hint-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    animation: hint-pulse 2.2s ease-in-out infinite;
}

@keyframes hint-pulse {
    0%, 100% { opacity: 0.9; transform: translateY(0); }
    50%       { opacity: 0.6; transform: translateY(-2px); }
}

.scroll-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.scroll-chevron {
    width: 20px;
    height: 20px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    border-radius: 2px;
    transform: rotate(45deg);
}

/* Cascada secuencial: cada chevron entra con delay distinto */
.scroll-chevron:nth-child(1) {
    opacity: 1;
    animation: chevron-cascade 1.5s ease-in-out infinite 0s;
}
.scroll-chevron:nth-child(2) {
    opacity: 0.6;
    animation: chevron-cascade 1.5s ease-in-out infinite 0.18s;
}
.scroll-chevron:nth-child(3) {
    opacity: 0.3;
    animation: chevron-cascade 1.5s ease-in-out infinite 0.36s;
}

@keyframes chevron-cascade {
    0%   { transform: rotate(45deg) translate(0, 0);    opacity: inherit; }
    40%  { transform: rotate(45deg) translate(5px, 5px); opacity: 0.15; }
    100% { transform: rotate(45deg) translate(0, 0);    opacity: inherit; }
}

/* El hero necesita position: relative para el indicator */
.hero { position: relative; }

/* ============================================
   TICKER AUTO-DISMISS AL SCROLLEAR
   Libera espacio del viewport con transición suave
   ============================================ */
.gift-ticker {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding    0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity    0.3s ease;
    overflow: hidden;
    max-height: 80px;
}

.gift-ticker.dismissed {
    max-height: 0 !important;
    padding: 0 !important;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   GIFT TICKER
   ============================================ */
.gift-ticker {
    background: linear-gradient(90deg, rgba(255,45,123,0.10) 0%, rgba(255,107,43,0.08) 100%), rgba(10, 4, 7, 0.98);
    color: white;
    padding: 12px 0;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    animation: ticker-flash 3s ease-in-out infinite;
}

@keyframes ticker-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 500px) { .container { padding: 0 2rem; } }
@media (min-width: 768px) { .container { max-width: 900px; } }
@media (min-width: 1024px) { .container { max-width: 1100px; } }

/* Mobile-first: secciones compactas en mobile */
section { padding: 2.5rem 0; }

@media (min-width: 768px) { section { padding: 4rem 0; } }

/* ============================================
   #2 TYPOGRAPHY
   ============================================ */
/* Mobile-first base: valores para pantallas pequeñas */
h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
    line-height: 1.55;
}

/* Desktop: escala tipográfica expandida */
@media (min-width: 481px) {
    h1 { font-size: 2.4rem; line-height: 1.15; margin-bottom: 1rem; }
    h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
    h3 { font-size: 1.15rem; }
    p  { font-size: 1.05rem; margin-bottom: 1.25rem; line-height: 1.65; }
}

/* ============================================
   #1 GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    background: linear-gradient(90deg, #FF2D7B, #FF6B2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 18px rgba(255, 107, 43, 0.45));
}

/* ============================================
   #7 BUTTONS
   ============================================ */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    letter-spacing: 0.01em;
}

.btn:active { transform: scale(0.97); }

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp { background-color: var(--accent); color: var(--white); position: relative; overflow: hidden; }
.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer-sweep 4s ease-in-out infinite 1s;
}
.btn-whatsapp:hover { background-color: var(--accent-dark); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
.btn-primary { background-color: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer-sweep 4.5s ease-in-out infinite 0.5s;
}
.btn-primary:hover { background-color: var(--primary-dark); box-shadow: 0 6px 20px rgba(26, 79, 139, 0.35); }

/* Botones dentro del gamification center — paleta rosa/naranja */
.gamification-section .btn-primary {
    background: linear-gradient(135deg, #FF2D7B, #FF6B2B);
    box-shadow: 0 4px 16px rgba(255, 45, 123, 0.25);
}
.gamification-section .btn-primary:hover {
    background: linear-gradient(135deg, #e8246f, #e85f25);
    box-shadow: 0 6px 20px rgba(255, 45, 123, 0.40);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background-color: var(--primary); color: white; }
.btn-accent { background-color: var(--gold); color: var(--white); position: relative; overflow: hidden; }
.btn-accent::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: shimmer-sweep 3.5s ease-in-out infinite;
}
.btn-accent:hover { background-color: #d97706; box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45); }

.btn-hero-cta {
    font-size: 1.15rem;
    padding: 1.35rem;
    margin-top: 0.5rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    animation: pulse-cta 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
.btn-hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer-sweep 3s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 10px 32px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   TEMU-STYLE MICRO-INTERACTION ANIMATIONS
   ============================================ */
@keyframes shimmer-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes ring-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes bounce-in {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}
@keyframes badge-sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.04); }
}
@keyframes glow-breathe {
    0%, 100% { box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35); }
    50% { box-shadow: 0 4px 18px rgba(245, 158, 11, 0.6); }
}
@keyframes emoji-wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    20% { transform: rotate(-8deg) scale(1.15); }
    40% { transform: rotate(8deg) scale(1.15); }
    60% { transform: rotate(-4deg) scale(1.08); }
    80% { transform: rotate(4deg) scale(1.08); }
}
@keyframes tab-glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
    50% { box-shadow: 0 0 12px 2px rgba(59, 130, 246, 0.2); }
}
@keyframes slide-underline {
    from { left: 50%; right: 50%; }
    to { left: 10%; right: 10%; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 2.5rem 0 2rem; /* mobile-first */
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a0a0a;
    background:
        linear-gradient(
            170deg,
            rgba(10, 10, 10, 0.90) 0%,
            rgba(15, 5, 12, 0.80) 40%,
            rgba(15, 8, 5, 0.76) 70%,
            rgba(10, 10, 10, 0.84) 100%
        ),
        url('assets/media__1773820550386.jpg') center center / cover no-repeat;
    color: white;
    position: relative;
}

@media (min-width: 481px) {
    .hero { padding: 4rem 1rem 5rem; }
}

.hero .container {
    width: 100%;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.93);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 500;
}

/* ============================================
   GAMIFICATION CENTER: Temu-style Tabs
============================================ */

/* Tabs row */
.gami-tabs {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(255, 45, 123, 0.12);
    border: 1.5px solid rgba(255, 45, 123, 0.20);
    padding: 4px;
}
.gami-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 0.6rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.9rem;
    color: #b06070;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.01em;
}
.gami-tab:hover:not(.active) {
    color: #FF2D7B;
    background: rgba(255, 45, 123, 0.08);
    transform: translateY(-1px);
}
.gami-tab:hover:not(.active) .gami-tab-icon {
    animation: emoji-wiggle 0.6s ease;
}
.gami-tab:active { transform: scale(0.96); }
.gami-tab::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 3.5px;
    background: transparent;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gami-tab.active {
    color: white;
    background: linear-gradient(135deg, #FF2D7B, #FF6B2B);
    box-shadow: 0 4px 14px rgba(255, 45, 123, 0.35);
    animation: bounce-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gami-tab.active::after {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    left: 20%;
    right: 20%;
    height: 3.5px;
    bottom: 4px;
    animation: slide-underline 0.4s ease-out;
}
.gami-tab.active .gami-tab-icon {
    animation: emoji-wiggle 0.6s ease;
    filter: brightness(1.1) drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.gami-tab-icon {
    font-size: 1.35rem;
    transition: transform 0.3s ease;
}
.gami-tab-label {
    white-space: nowrap;
    transition: letter-spacing 0.3s ease;
}
.gami-tab.active .gami-tab-label {
    letter-spacing: 0.03em;
}

/* ===== EL CHISMÓGRAFO — tintineante para ellas ===== */
.gami-tab-chismo { overflow: visible; }

/* Sparkle badge flotante en esquina */
.chismo-sparkle {
    position: absolute;
    top: -7px;
    right: -3px;
    font-size: 0.8rem;
    pointer-events: none;
    z-index: 3;
    animation: chismo-spark 2s ease-in-out infinite;
}
.gami-tab-chismo.active .chismo-sparkle { display: none; }

@keyframes chismo-spark {
    0%, 100% { transform: scale(1) rotate(0deg);   opacity: 1;   }
    25%       { transform: scale(1.5) rotate(25deg);  opacity: 1;   }
    50%       { transform: scale(0.8) rotate(-15deg); opacity: 0.6; }
    75%       { transform: scale(1.3) rotate(10deg);  opacity: 1;   }
}

/* Emoji 🔮 se sacude rítmicamente cuando no está activo */
.gami-tab-chismo:not(.active) .gami-tab-icon {
    animation: chismo-shake 3.2s ease-in-out infinite;
}
@keyframes chismo-shake {
    0%, 60%, 100% { transform: rotate(0deg)   scale(1);    }
    65%           { transform: rotate(-18deg) scale(1.3);  }
    70%           { transform: rotate(18deg)  scale(1.3);  }
    75%           { transform: rotate(-10deg) scale(1.15); }
    80%           { transform: rotate(6deg)   scale(1.08); }
    85%           { transform: rotate(0deg)   scale(1);    }
}

/* Pulso de brillo morado en el tab inactivo */
.gami-tab-chismo:not(.active) {
    animation: chismo-glow 2.6s ease-in-out infinite;
}
@keyframes chismo-glow {
    0%, 100% { box-shadow: none; }
    50%      { box-shadow: 0 0 12px rgba(168,85,247,0.4), inset 0 0 8px rgba(168,85,247,0.08); }
}

/* Panels */
.gami-panel {
    display: none;
    animation: fadeInScale 0.3s ease-out;
}
.gami-panel.active {
    display: block;
}

/* Card — glassmorphism */
.gami-card {
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.1rem;
    box-shadow: 0 8px 32px rgba(255, 45, 123, 0.12), 0 2px 8px rgba(0,0,0,0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.80);
}

/* Reward strip (Temu-style micro badges) */
.gami-reward-strip {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.gami-reward {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    white-space: nowrap;
    animation: badge-sparkle 3s ease-in-out infinite;
}
.gami-reward:nth-child(2) { animation-delay: 0.5s; }
.gami-reward:nth-child(3) { animation-delay: 1s; }

.quiz-header h3 { font-size: 1.45rem; margin-bottom: 0.35rem; color: var(--text-dark); }
.quiz-header p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.1rem; }

.quiz-body { flex: 1; display: flex; align-items: center; justify-content: center; }

.quiz-step {
    width: 100%;
    text-align: center;
    animation: fadeInScale 0.4s ease-out;
    display: none;
}
.quiz-step.active { display: block; }

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.step-emoji { font-size: 2.2rem; display: block; margin-bottom: 0.5rem; }
.quiz-step h4 { font-size: 1.1rem; margin-bottom: 0.8rem; line-height: 1.3; }

.quiz-input-group { margin-bottom: 0.75rem; }
.quiz-input-group input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 1rem; /* ≥16px: previene zoom automático en iOS */
    outline: none;
    transition: var(--transition);
    text-align: center;
}
.quiz-input-group input:focus { border-color: var(--primary); background: #fdfcff; }

.quiz-options { display: grid; gap: 0.45rem; width: 100%; }

.quiz-progress-wrap {
    width: 100%;
    height: 5px;
    background: #e2e8f0;
    margin-bottom: 0.8rem;
    overflow: hidden;
    border-radius: 4px;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quiz-opt {
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.90);
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 45, 123, 0.06);
    position: relative;
    overflow: hidden;
    line-height: 1.3;
}
.quiz-opt::before {
    content: '';
    position: absolute;
    right: 1rem;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 45, 123, 0.30);
    transition: all 0.25s ease;
}
.quiz-opt:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #FF2D7B;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(255, 45, 123, 0.18);
}
.quiz-opt:hover::before {
    border-color: #FF2D7B;
    background: rgba(255, 45, 123, 0.10);
}
.quiz-opt:active {
    transform: scale(0.98);
}
.quiz-opt.selected {
    border-color: #FF2D7B;
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.08), rgba(255, 107, 43, 0.05));
    animation: bounce-in 0.3s ease-out;
}
.quiz-opt.selected::before {
    background: linear-gradient(135deg, #FF2D7B, #FF6B2B);
    border-color: #FF2D7B;
    box-shadow: 0 0 0 3px rgba(255, 45, 123, 0.15);
}

.btn-block { width: 100%; }

/* Quiz Reset Button */
.quiz-reset-btn {
    display: block;
    margin: 0.6rem auto 0;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    opacity: 0.6;
}
.quiz-reset-btn:hover {
    opacity: 1;
    color: var(--primary);
    background: rgba(26, 79, 139, 0.06);
}

/* Quiz Results Special classes */
.result-score { font-size: 3.5rem; font-weight: 900; color: var(--primary); display: block; margin: 1rem 0; }
.result-desc { font-size: 0.95rem; line-height: 1.5; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ============================================ */
/* PERSONALITY RESULT — Compact Card (Temu)     */
/* ============================================ */
.pers-result-card {
    border-radius: 16px;
    overflow: hidden;
    animation: persCardIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes persCardIn {
    0% { opacity: 0; transform: scale(0.94) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* — Header — */
.pers-result-header {
    background: var(--pers-gradient);
    padding: 1rem 0.9rem 0.8rem;
    text-align: center;
    border-radius: 14px;
    margin-bottom: 0.55rem;
    position: relative;
    overflow: hidden;
}
.pers-result-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.pers-result-label {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pers-accent);
    margin-bottom: 0.2rem;
    position: relative;
}
.pers-result-emoji {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.15rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    animation: emojiPop 0.4s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    position: relative;
}
@keyframes emojiPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
.pers-result-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--pers-accent);
    margin-bottom: 0.1rem;
    position: relative;
    line-height: 1.2;
}
.pers-result-tagline {
    font-size: 0.75rem;
    color: var(--pers-accent);
    opacity: 0.8;
    font-style: italic;
    margin: 0;
    position: relative;
}

/* — Match + Traits + Palette: inline row — */
.pers-match-wrap {
    background: var(--pers-accent-bg);
    border-radius: 10px;
    padding: 0.45rem 0.65rem;
    margin-bottom: 0.45rem;
}
.pers-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.pers-match-header strong {
    font-size: 0.9rem;
    color: var(--pers-accent);
}
.pers-match-bar {
    height: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 6px;
    overflow: hidden;
}
.pers-match-fill {
    height: 100%;
    background: var(--pers-accent);
    border-radius: 6px;
    animation: matchGrow 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes matchGrow {
    0% { width: 0 !important; }
}

/* — Trait Chips — */
.pers-section-label {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.pers-traits-wrap {
    margin-bottom: 0.45rem;
}
.pers-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.pers-trait-chip {
    background: var(--pers-accent-bg);
    border: 1px solid var(--pers-accent);
    color: var(--pers-accent);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.18rem 0.45rem;
    border-radius: 50px;
    white-space: nowrap;
    animation: chipIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.pers-trait-chip:nth-child(1) { animation-delay: 0.4s; }
.pers-trait-chip:nth-child(2) { animation-delay: 0.5s; }
.pers-trait-chip:nth-child(3) { animation-delay: 0.6s; }
.pers-trait-chip:nth-child(4) { animation-delay: 0.7s; }
@keyframes chipIn {
    0% { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}

/* — Color Palette — */
.pers-palette-wrap {
    margin-bottom: 0.45rem;
}
.pers-palette {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.pers-color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.8);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.pers-vibe-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--pers-accent);
    margin-left: 0.2rem;
    font-style: italic;
}

/* — Room Breakdown — */
.pers-rooms-wrap {
    margin-bottom: 0.45rem;
}
.pers-rooms {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.pers-room-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--pers-accent-bg);
    border-radius: 8px;
    padding: 0.35rem 0.55rem;
    animation: roomSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.pers-room-item:nth-child(1) { animation-delay: 0.6s; }
.pers-room-item:nth-child(2) { animation-delay: 0.7s; }
.pers-room-item:nth-child(3) { animation-delay: 0.8s; }
@keyframes roomSlide {
    0% { opacity: 0; transform: translateX(-8px); }
    100% { opacity: 1; transform: translateX(0); }
}
.pers-room-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pers-room-item strong {
    font-size: 0.7rem;
    color: var(--pers-accent);
    display: inline;
    margin-right: 0.25rem;
}
.pers-room-item span {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* — Quote — */
.pers-quote-wrap {
    text-align: center;
    margin-bottom: 0.45rem;
    padding: 0.35rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.pers-quote {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--pers-accent);
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* — Guide Box — */
.pers-guide-box {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
    margin: 0.45rem 0;
    text-align: left;
}
.pers-guide-title {
    font-weight: 800;
    font-size: 0.73rem;
    color: #92400e;
    margin-bottom: 0.15rem;
}
.pers-guide-desc {
    font-size: 0.68rem;
    color: #78350f;
    line-height: 1.4;
    margin: 0;
}
.pers-form-label {
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

/* Share strip — viral loop prominente */
.pers-share-strip {
    background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.06));
    border: 1.5px solid rgba(37,211,102,0.35);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin: 0.6rem 0 0.85rem;
    text-align: center;
}
.pers-share-reto {
    font-size: 0.72rem;
    color: var(--text-dark);
    margin: 0 0 0.55rem;
    line-height: 1.4;
}
.pers-share-reto strong { color: #15803d; }
.pers-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.4rem;
    background: linear-gradient(135deg, #25d366, #1ebe5a);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.01em;
}
.pers-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.45);
}
.pers-share-btn:active { transform: translateY(0); }

/* Share quiz result button (viral) */
.btn-share-result {
    display: block;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.45rem 0.75rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 8px;
    color: #166534;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.btn-share-result:hover {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.15);
}
.btn-share-result:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .gami-card { padding: 0.65rem; }
    .step-emoji { font-size: 1.6rem; margin-bottom: 0.3rem; }
    .quiz-step h4 { font-size: 0.9rem; margin-bottom: 0.5rem; }
    .quiz-opt { padding: 0.45rem 0.6rem; font-size: 0.75rem; border-radius: 8px; gap: 0.4rem; }
    .quiz-opt::before { width: 16px; height: 16px; right: 0.6rem; }
    .quiz-options { gap: 0.3rem; }
    .quiz-progress-wrap { margin-bottom: 0.5rem; height: 4px; }
    .quiz-input-group { margin-bottom: 0.5rem; }
    .quiz-input-group input { padding: 0.55rem 0.75rem; font-size: 1rem; } /* ≥16px: previene zoom iOS */
    .gamification-section { padding: 1rem 0; }
    .gami-tab { padding: 0.5rem 0.3rem; font-size: 0.78rem; border-radius: 8px; }
    .gami-tab-icon { font-size: 1rem; }
    .gami-tabs { padding: 3px; border-radius: 11px; }
    .gami-reward { font-size: 0.6rem; padding: 0.2rem 0.4rem; }
    .gami-reward-strip { margin-bottom: 0.4rem; gap: 0.3rem; }

    /* Compact result card on mobile */
    .pers-result-header { padding: 0.7rem 0.65rem 0.55rem; margin-bottom: 0.35rem; }
    .pers-result-emoji { font-size: 1.8rem; }
    .pers-result-title { font-size: 0.92rem; }
    .pers-result-tagline { font-size: 0.68rem; }
    .pers-match-wrap { padding: 0.35rem 0.5rem; margin-bottom: 0.3rem; }
    .pers-match-header { font-size: 0.62rem; }
    .pers-match-header strong { font-size: 0.8rem; }
    .pers-match-bar { height: 5px; }
    .pers-section-label { font-size: 0.55rem; margin-bottom: 0.15rem; }
    .pers-traits { gap: 0.2rem; }
    .pers-trait-chip { font-size: 0.58rem; padding: 0.12rem 0.35rem; }
    .pers-traits-wrap { margin-bottom: 0.3rem; }
    .pers-color-dot { width: 16px; height: 16px; }
    .pers-palette { gap: 0.25rem; }
    .pers-vibe-label { font-size: 0.58rem; }
    .pers-palette-wrap { margin-bottom: 0.3rem; }
    .pers-rooms { gap: 0.2rem; }
    .pers-room-item { padding: 0.25rem 0.4rem; gap: 0.3rem; border-radius: 6px; }
    .pers-room-icon { font-size: 0.9rem; }
    .pers-room-item strong { font-size: 0.62rem; }
    .pers-room-item span { font-size: 0.6rem; }
    .pers-rooms-wrap { margin-bottom: 0.3rem; }
    .pers-quote { font-size: 0.68rem; }
    .pers-quote-wrap { padding: 0.25rem 0; margin-bottom: 0.3rem; }
    .pers-guide-box { padding: 0.4rem 0.5rem; margin: 0.3rem 0; }
    .pers-guide-title { font-size: 0.65rem; }
    .pers-guide-desc { font-size: 0.6rem; }
    .pers-form-label { font-size: 0.65rem; margin-bottom: 0.3rem; }
    .btn-share-result { padding: 0.35rem 0.6rem; font-size: 0.65rem; margin-top: 0.3rem; }
}
@media (min-width: 1024px) {
    .hero {
        padding: 3.5rem 0 3.5rem;
        min-height: 80vh;
    }

    .hero .container {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 0 4rem;
        align-items: center;
        text-align: left;
    }

    /* hero-content se convierte en grid propio:
       col 1 = avatar anclado arriba-izq
       col 2 = location, h1, subtitle, socials */
    .hero-content {
        display: grid;
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto auto auto auto;
        column-gap: 2rem;
        row-gap: 0.4rem;
        align-items: start;
    }

    .hero-brand {
        grid-column: 1;
        grid-row: 1 / span 4;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: 0;
        padding-top: 0.25rem;
    }

    .hero-brand-logo {
        width: 140px;
        height: 140px;
        border: 3px solid rgba(255, 45, 123, 0.65);
        box-shadow: 0 0 0 6px rgba(255, 45, 123, 0.14), 0 16px 36px rgba(0,0,0,0.4);
    }

    .location-badge { grid-column: 2; grid-row: 1; }

    .hero-content h1  { grid-column: 2; grid-row: 2; margin-top: 0.5rem; font-size: 3.25rem; line-height: 1.1; }

    .hero-subtitle    {
        grid-column: 2;
        grid-row: 3;
        margin: 0.6rem 0 0;
    }

    .social-icon-box  { grid-column: 2; grid-row: 4; margin-top: 1rem; display: flex !important; }

    .hero-subtitle { margin: 0 0 1.5rem; }

    .hero-cta-box {
        flex: 0 0 400px;
        background: rgba(8, 3, 6, 0.88);
        padding: 2.5rem;
        border-radius: 28px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 45, 123, 0.22);
        box-shadow: 0 24px 48px rgba(0,0,0,0.45);
    }
}

/* #10 Trust Strip in Hero */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255, 45, 123, 0.07);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 45, 123, 0.2);
}

.trust-strip--single {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 0.25rem 0.5rem;
}

.trust-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF2D7B, #FF6B2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 107, 43, 0.35));
}

.trust-item small {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: block;
    margin-top: 2px;
}

.trust-divider {
    width: 1px;
    background: rgba(255, 45, 123, 0.3);
    margin: 0.25rem 0;
}

.price-anchor {
    text-align: center;
    color: #fff;
    margin-bottom: 1.25rem;
}

.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 43, 0.15) 0%, rgba(255, 186, 8, 0.1) 100%);
    border: 2px solid #FF6B2B;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0.75rem;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B2B;
    letter-spacing: -0.5px;
}

.price-anchor small {
    font-size: 0.85rem;
    opacity: 0.75;
    display: block;
    margin-bottom: 0.3rem;
}

.price-anchor strong {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    display: block;
    margin-bottom: 0.4rem;
}

.price-anchor p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0.3rem 0 0;
    font-weight: 400;
}

.cta-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin: 0.75rem 0 0;
}

/* ============================================
   #10 TRUST BAR
   ============================================ */
.trust-bar {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .trust-bar-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
}

.trust-badge i { color: var(--accent); }

/* ============================================
   LOCATION BADGE + SOCIAL ICONS
   ============================================ */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
}

.social-icon-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

@media (min-width: 1024px) { .social-icon-box { justify-content: flex-start; } }

.social-icon-box a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-icon-box a:hover { transform: scale(1.15) translateY(-2px); }
.icon-fb { background-color: #1877F2; }
.icon-wa { background-color: #25D366; }
.icon-tt { background-color: #000000; }

/* ============================================
   PERSONAS SECTION
   ============================================ */
.personas-section {
    padding: 4.2rem 0;
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
}

.persona-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .persona-grid { grid-template-columns: repeat(3, 1fr); }
}

.persona-card {
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #fff8ee 0%, #fff4e4 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.faq-left, .faq-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }

.faq-commercial {
    background: linear-gradient(135deg, rgba(255,45,123,0.08) 0%, rgba(255,107,43,0.06) 100%);
    border: 1.5px solid rgba(255, 45, 123, 0.3);
}

.faq-commercial:hover {
    border-color: #FF2D7B;
    box-shadow: 0 4px 16px rgba(255, 45, 123, 0.15);
}

.faq-commercial a {
    display: inline-block;
    margin-top: 0.75rem;
    transition: all 0.25s ease;
}

.faq-commercial a:hover {
    transform: translateX(3px);
}

.faq-item strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.faq-item p { font-size: 0.95rem; margin-bottom: 0; color: var(--text-muted); }

/* ============================================
   PAIN SECTION
   ============================================ */
.pain-section {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.pain-section h2, .pain-section p { color: var(--white); }
.pain-section > .container > p { opacity: 0.9; max-width: 600px; margin: 0 auto 2.5rem; }

.pain-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

.pain-card {
    background: rgba(255,255,255,0.09);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 4px solid var(--accent);
    text-align: left;
    font-size: 0.95rem;
    color: white;
    transition: var(--transition);
}

.pain-card:hover { background: rgba(255,255,255,0.14); }
.pain-card strong { display: block; font-size: 1rem; margin-bottom: 0.5rem; color: white; }
.pain-icon { color: var(--accent); font-size: 1.4rem; margin-bottom: 0.75rem; display: block; }

/* ============================================
   SOLUTION SECTION
   ============================================ */
/* Teoría de colores: sección del depa = cálida/aspiracional.
   El hogar debe sentirse como hogar, no como brochure corporativo. */
.solution {
    padding: 5rem 0 4.5rem;
    background: linear-gradient(160deg, var(--warm-bg) 0%, #fdf5ec 45%, #ffffff 100%);
}

.solution h2 { text-align: center; margin-bottom: 0.85rem; font-size: 2.1rem; }
.solution > .container > p.reveal { text-align: center; margin-bottom: 2.75rem; color: var(--text-muted); font-size: 1.05rem; }

.real-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
}

@media (min-width: 768px) {
    .real-gallery {
        flex-direction: row;
        align-items: stretch;
        gap: 1.5rem;
    }
    .real-gallery > div { flex: 1; }
}

/* Gallery card: framed container for overlay caption */
.real-gallery > div {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(26, 79, 139, 0.2), 0 2px 8px rgba(0,0,0,0.08);
    background: #000;
}

.feed-img {
    width: 100%;
    height: 290px;
    border-radius: 0;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.real-gallery > div:hover .feed-img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Gallery PiP (picture-in-picture) fachada thumbnail */
.gallery-pip-wrap { position: relative; }
.gallery-pip-badge {
    position: absolute;
    bottom: 52px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
}
.gallery-pip-img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.9);
}
.gallery-pip-label {
    background: rgba(0,0,0,0.68);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

/* Overlay caption — glass gradient bottom bar */
.feed-caption,
.real-gallery > div > p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.1rem 1.2rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(0deg, rgba(8,16,46,0.82) 0%, rgba(8,16,46,0) 100%);
    text-shadow: 0 1px 5px rgba(0,0,0,0.6);
    letter-spacing: 0.01em;
    text-align: left;
}

/* Features — full width, 4 cols on desktop */
.features-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    max-width: none;
    margin: 0;
}

@media (min-width: 768px) {
    .features-list { grid-template-columns: repeat(4, 1fr); }
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
    padding: 1rem 1.15rem;
    border-radius: 14px;
    border: 1.5px solid rgba(26, 79, 139, 0.1);
    box-shadow: 0 2px 10px rgba(26, 79, 139, 0.07);
    font-size: 0.93rem;
    transition: var(--transition);
}

.features-list li:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 79, 139, 0.13);
}

.nav-links{display:flex;align-items:center;gap:1.5rem;padding:0 2rem;width:100%;height:100%;}
.nav-links a{color:white;text-decoration:none;font-weight:600;font-size:0.9rem;transition:var(--transition);}
.nav-links a:hover{color:var(--accent);}
.nav-link-desktop{border:1.5px solid #FF2D7B;padding:0.45rem 1rem;border-radius:var(--radius-sm);letter-spacing:0.3px;color:#FF2D7B !important;background:rgba(255,45,123,0.08);transition:all 0.25s ease;}
.nav-link-desktop:hover{background:rgba(255,45,123,0.2);border-color:#FF2D7B;color:white !important;transform:translateY(-1px);box-shadow:0 3px 12px rgba(255,45,123,0.3);}
.nav-btn{background:var(--gold);color:#1a1a1a !important;padding:0.5rem 1.25rem;border-radius:var(--radius-sm);font-weight:700;letter-spacing:0.3px;box-shadow:0 2px 8px rgba(245,158,11,0.35);animation:glow-breathe 2.5s ease-in-out infinite;position:relative;overflow:hidden;transition:opacity 0.15s ease,transform 0.15s ease,background 0.2s;}
.nav-btn::after{content:'';position:absolute;top:0;left:-100%;width:50%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent);animation:shimmer-sweep 3s ease-in-out infinite;}
.nav-btn:hover{background:#e8930a;transform:translateY(-2px);box-shadow:0 4px 16px rgba(245,158,11,0.55);}

/* Hamburger button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    margin-left: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
}
.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: linear-gradient(90deg, #FF2D7B, #FF6B2B);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
    display: none;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(20, 4, 12, 0.99) 0%, rgba(15, 6, 4, 0.99) 100%);
    padding: 0.5rem 1.25rem 1rem;
    border-top: 1px solid rgba(255, 45, 123, 0.35);
}
.nav-drawer a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 45, 123, 0.12);
    transition: color 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: #FF2D7B; }
.nav-drawer.open { display: flex; }

/* ============================================
   QUAL RESULT CARD — expediente de calificación
   ============================================ */
.qual-result-card { text-align: center; }

.qual-card-header { margin-bottom: 0.85rem; }

.qual-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FF2D7B;
    border: 1px solid rgba(255,45,123,0.35);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}

.qual-advisor-wrap {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
}

.qual-advisor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.qual-advisor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(255,45,123,0.04) 0%,
        rgba(10,10,10,0.0) 35%,
        rgba(10,10,10,0.72) 100%
    );
}

.qual-advisor-label {
    position: absolute;
    bottom: 10px;
    left: 0; right: 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.qual-advisor-label strong { font-size: 0.88rem; }
.qual-advisor-label span  { font-size: 0.68rem; opacity: 0.82; }

.qual-score-section {
    background: rgba(255,45,123,0.04);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(255,45,123,0.12);
}

.qual-score-label {
    font-size: 0.68rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.qual-score-bar-wrap {
    height: 7px;
    background: rgba(255,45,123,0.12);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.qual-score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF2D7B, #FF6B2B);
    border-radius: 99px;
    animation: bar-fill 1.2s ease-out forwards;
}

@keyframes bar-fill {
    from { width: 0% !important; }
    to   { width: var(--target-w); }
}

.qual-score-pct {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #FF2D7B, #FF6B2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}
.qual-score-pct span { font-size: 1.2rem; }

.qual-status { font-size: 0.78rem; font-weight: 600; color: #666; }

.qual-cta-section { text-align: left; }
.qual-cta-text {
    font-size: 0.83rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 0.85rem;
    text-align: center;
}

/* Floating WhatsApp button */
.float-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 2500;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    animation: ring-pulse 2s ease-out infinite;
}
.float-wa-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
    animation: none;
}

@media (max-width: 1023px) {
    .nav-link-desktop { display: none; }
    .nav-btn { display: none; }
    .float-wa-btn { bottom: 18px; right: 14px; width: 52px; height: 52px; font-size: 1.5rem; }
}

.brand-logo {
    padding: 0;
    margin-right: 0.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo:hover {
    color: inherit;
}

.brand-logo-img {
    height: 40px;
    width: 40px;
    display: block;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.85);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

/* Coin flip avatar — nav
   IMPORTANTE: sin overflow:hidden en el padre para que rotateY funcione en 3D.
   El clip circular lo aplican los hijos directamente. */
.coin-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.75);
    box-shadow: 0 0 0 3px rgba(37,211,102,0.18);
    flex-shrink: 0;
    perspective: 200px;
}
.coin-face-img,
.coin-face-gift {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.coin-face-img {
    object-fit: cover;
    display: block;
}
.coin-face-gift {
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: rotateY(90deg);
}

/* ============================================
   HERO MOBILE: avatar reposicionado como badge
   de confianza de la asesora (no como logo).
   Sociales deshabilitados: ocultos.
   ============================================ */
@media (max-width: 1023px) {
    /* Sociales deshabilitados — señal negativa, ocultar */
    .social-icon-box { display: none; }

    /* Avatar: visible pero después del H1/subtítulo.
       Crea señal "tu asesora presentó esto" no "este es el logo". */
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    .location-badge { order: 1; }
    .hero-content h1 { order: 2; }
    .hero-subtitle   { order: 3; }
    .hero-brand {
        order: 4;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0.6rem;
        margin-bottom: 0;
        gap: 0.6rem;
    }
    .hero-brand-logo {
        height: 48px;
        width: 48px;
        border: 2.5px solid rgba(37, 211, 102, 0.9); /* ring verde = canal de confianza */
        box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18), 0 4px 12px rgba(0,0,0,0.3);
    }
}

/* ============================================
   GIFT TOAST — popup de regalo al acercarse
   a la sección promo. Slide up desde abajo.
   ============================================ */
.gift-toast {
    position: fixed;
    bottom: 85px; /* sobre el botón flotante de WhatsApp */
    left: 1rem;
    right: 1rem;
    max-width: 460px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a365d 0%, var(--primary) 100%);
    color: white;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 1500;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    border: 1.5px solid rgba(245, 158, 11, 0.45);
    cursor: pointer;
    /* Estado inicial: oculto abajo */
    transform: translateY(160px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity   0.35s ease;
}

.gift-toast.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.gift-toast-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    animation: gift-wiggle 2.5s ease-in-out infinite;
}

@keyframes gift-wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15%       { transform: rotate(-10deg) scale(1.15); }
    30%       { transform: rotate(8deg) scale(1.15); }
    45%       { transform: rotate(-5deg) scale(1.08); }
    60%       { transform: rotate(3deg) scale(1.05); }
}

.gift-toast-text {
    flex: 1;
    font-size: 0.82rem;
    line-height: 1.35;
    color: rgba(255,255,255,0.95);
}

.gift-toast-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--gold-light);
    margin-bottom: 0.1rem;
}

.gift-toast-close {
    background: rgba(255,255,255,0.12);
    border: none;
    color: rgba(255,255,255,0.7);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.gift-toast-close:hover { background: rgba(255,255,255,0.22); }

.hero-brand {
    margin-bottom: 0.85rem;
}

.hero-brand-logo {
    height: 72px;
    width: 72px;
    display: inline-block;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.92);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.footer-brand-logo {
    height: 64px;
    width: 64px;
    margin: 0 auto 0.8rem;
    display: block;
    border-radius: 50%;
    border: 2px solid rgba(26, 79, 139, 0.2);
}

.features-list li i { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }

/* ============================================
   PROMO SECTION
   ============================================ */
.promo-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2c5282 100%);
    color: white;
    text-align: center;
}

.promo-terms {
    font-size: 0.78rem;
    opacity: 0.7;
    color: white;
    margin: 0;
}

.promo-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.promo-bono-form-wrap {
    max-width: 500px;
    margin: 0 auto;
    padding-top: 1.35rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bono-form {
    background: rgba(255, 255, 255, 0.09);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 1.25rem;
}

.bono-form-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bono-form-row input {
    flex: 1 1 180px;
    min-width: 0;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.bono-form-row input::placeholder { color: rgba(255, 255, 255, 0.5); }
.bono-form-row input:focus {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.18);
}

.bono-form-disclaimer {
    font-size: 0.71rem;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 0.6rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.bono-success-msg {
    background: rgba(37, 211, 102, 0.14);
    border: 1.5px solid rgba(37, 211, 102, 0.38);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
}

/* ============================================
   B2B ADVISOR NETWORK (discreto, alto impacto)
   ============================================ */
.advisor-network-section {
    padding: 1.1rem 0 0.8rem;
    background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
}

.advisor-network-card {
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid rgba(26, 79, 139, 0.18);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
    padding: 0.95rem 1rem;
    text-align: left;
}

.advisor-network-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.casaya-badge {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FF2D7B;
    border: 1px solid rgba(255, 45, 123, 0.35);
    border-radius: 3px;
    padding: 3px 8px;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.2s;
    white-space: nowrap;
}
.casaya-badge:hover {
    background: rgba(255, 45, 123, 0.06);
    color: #FF2D7B;
}

.advisor-network-card h3 {
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.advisor-network-card p {
    margin-bottom: 0.7rem;
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.5;
}

.advisor-network-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    background: linear-gradient(135deg, #113d72, #1a5fa8);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.66rem 1rem;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.advisor-network-cta::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer-sweep 4s ease-in-out infinite;
}
.advisor-network-cta:hover {
    background: linear-gradient(135deg, #0d2f57, #15478a);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(17, 61, 114, 0.35);
}

@media (min-width: 900px) {
    .advisor-network-card {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1rem 1.2rem;
        align-items: center;
    }

    .advisor-network-card h3,
    .advisor-network-card p,
    .advisor-network-eyebrow {
        grid-column: 1;
    }

    .advisor-network-cta {
        grid-column: 2;
        grid-row: 1 / span 3;
        align-self: center;
    }
}

@media (max-width: 768px) {
    .advisor-network-section {
        padding-top: 1rem;
    }

    .advisor-network-card {
        padding: 0.95rem 0.9rem;
    }

    .advisor-network-cta {
        width: 100%;
        min-height: 44px;
    }
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.location-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .location-grid { grid-template-columns: 1fr 1fr; }
}

.location-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.location-list li i { color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }

.location-img-wrap {
    background: var(--border);
    border-radius: 24px;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.location-hero-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============================================
   GAMIFICATION CENTER: UX ENHANCEMENT
   ============================================ */
.gamification-section {
    padding: 2rem 0;
    background: linear-gradient(-45deg, #FFE8F0, #FFF0E8, #FFE4EE, #FFF5EC, #FFD6E8, #FFE8D6);
    background-size: 400% 400%;
    animation: mesh-move 12s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes mesh-move {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Background decorative blobs for interactivity */
.gamification-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 45, 123, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.gamification-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

/* Visibility fixes for overlays */
.location-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: white;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.location-map-overlay p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
}

.location-map-overlay a {
    background: white;
    color: var(--primary-dark) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.location-map-open-btn {
    background: white;
    color: var(--primary-dark);
    border: 0;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    min-height: 44px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.location-map-open-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26,79,139,0.08), transparent);
    animation: shimmer-sweep 3s ease-in-out infinite;
}
.location-map-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    background: #f0f6ff;
}

.inline-map-panel {
    margin-top: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.inline-map-header h3 {
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.inline-map-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.2rem 0 0.85rem;
}

.inline-map-controls {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
}

.map-mode-btn {
    flex: 0 0 auto;
    border: 1px solid rgba(26, 79, 139, 0.22);
    background: #f8fbff;
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}
.map-mode-btn:hover:not(.active) {
    background: #e8f0fe;
    border-color: var(--primary);
    transform: translateY(-1px);
}
.map-mode-btn:active { transform: scale(0.95); }

.map-mode-btn.active {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 3px 10px rgba(26, 79, 139, 0.3);
    animation: bounce-in 0.25s ease-out;
}

.inline-map-controls::-webkit-scrollbar {
    height: 6px;
}

.inline-map-controls::-webkit-scrollbar-thumb {
    background: rgba(26, 79, 139, 0.3);
    border-radius: 999px;
}

.map-route-caption {
    margin: 0.1rem 0 0.65rem;
    font-size: 0.82rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.inline-map-frame-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

#inline-transport-map {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
    background: #eef2f7;
}

.location-distance-wrap {
    margin-top: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.8rem;
    background: #fcfdff;
}

.location-distance-wrap h4 {
    color: var(--primary-dark);
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
}

.location-distance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.distance-item {
    border: 1px solid #e6edf7;
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
    background: #fff;
}

.distance-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.82rem;
    line-height: 1.25;
    margin-bottom: 0.15rem;
}

.distance-item span {
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.distance-disclaimer {
    margin-top: 0.55rem;
    font-size: 0.74rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .location-distance-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit-section {
    padding: 3.25rem 0;
    text-align: center;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.visit-section p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.visit-micro-trust {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
/* Testimonios = humanos, cercanos. Fondo cálido refuerza autenticidad. */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--warm-bg-2) 0%, #faf6f0 100%);
}

/* ============================================
   SHARE SECTION
   ============================================ */
.share-section {
    padding: 2.4rem 0 1.6rem;
    background: linear-gradient(180deg, #eaf6ef 0%, #f5fbf7 100%);
}

/* ============================================
   SCROLL RHYTHM (limpio y sin ruido)
   ============================================ */
.testimonials,
.share-section,
.visit-section,
.faq-section,
.personas-section,
.promo-section {
    position: relative;
}

.testimonials + .share-section,
.share-section + .visit-section,
.visit-section + .faq-section,
.faq-section + .personas-section,
.personas-section + .promo-section {
    box-shadow: inset 0 1px 0 rgba(17, 24, 39, 0.06);
}

.share-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    padding: 1.35rem;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.share-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.share-card h2 {
    font-size: 1.45rem;
    margin-bottom: 0.45rem;
}

.share-card p {
    margin-bottom: 0.8rem;
    color: #4b5563;
}

.share-buttons {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr;
    margin-top: 0.4rem;
}

.share-btn {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-dark);
    border-radius: 12px;
    padding: 0.8rem 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 46px;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.02);
}
.share-btn:active {
    transform: scale(0.97);
}

.share-btn-whatsapp {
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.08);
    color: #0f5132;
}
.share-btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.6);
}

.share-btn-facebook {
    border-color: rgba(24, 119, 242, 0.3);
    background: rgba(24, 119, 242, 0.08);
    color: #154c9e;
}
.share-btn-facebook:hover {
    background: rgba(24, 119, 242, 0.18);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.25);
    border-color: rgba(24, 119, 242, 0.5);
}

.share-btn-copy {
    border-color: rgba(26, 79, 139, 0.25);
    background: rgba(26, 79, 139, 0.06);
    color: var(--primary-dark);
}
.share-btn-copy:hover {
    background: rgba(26, 79, 139, 0.14);
    box-shadow: 0 6px 18px rgba(26, 79, 139, 0.2);
    border-color: rgba(26, 79, 139, 0.4);
}

.share-feedback {
    min-height: 1.3rem;
    margin-top: 0.6rem;
    font-size: 0.82rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.footer-share-link {
    margin-top: 0.9rem;
    background: transparent;
    border: 0;
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.footer-share-link:hover {
    color: var(--primary-dark);
}

@media (min-width: 768px) {
    .share-buttons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .share-card {
        padding: 1.75rem;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1rem 0.9rem;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.stars { font-size: 0.8rem; margin-bottom: 0.5rem; }

.testimonial-card p {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.75rem;
    color: var(--primary);
}

/* ============================================
   #11 REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LEGAL LAYER: Privacy Modal, Cookie Bar, Footer Legal
   ============================================ */
.priv-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem 1.5rem;
    animation: fadeIn 0.25s ease;
    overflow-y: auto;
}

.priv-overlay[hidden] {
    display: none;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.priv-box {
    background: white;
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
    margin: auto;
    padding-top: 0;
}

.priv-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: white;
    border: 1.5px solid #e5e7eb;
    font-size: 1.75rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 8px;
    z-index: 20;
}

.priv-close:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: #f5f7fa;
}

.priv-content {
    padding: 2.5rem 2rem 2rem;
}

.priv-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.priv-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
}

.priv-content p, .priv-content li, .priv-content span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.priv-content ul, .priv-content ol {
    margin: 0.85rem 0 0.85rem 1.5rem;
}

.priv-updated {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.priv-inai {
    background: rgba(26, 79, 139, 0.08);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 16, 46, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.1rem 1.2rem;
    padding-bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    z-index: 9998;
    animation: slideUp 0.35s ease;
}

.cookie-bar[hidden] {
    display: none;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}

.cookie-bar-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    flex: 1 1 300px;
}

.cookie-text-link {
    background: transparent;
    border: none;
    color: #fbbf24;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    transition: color 0.2s;
    text-decoration: underline;
}

.cookie-text-link:hover { color: #fcd34d; }

.cookie-bar-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
    min-height: 44px;
}

.cookie-accept:hover { background: var(--primary-light); }

.cookie-read {
    background: transparent;
    color: #fbbf24;
    border: 1.5px solid #fbbf24;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    min-height: 44px;
}

.cookie-read:hover {
    background: #fbbf24;
    color: #1f2937;
}

/* Footer Legal Strip */
.footer-legal {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal p {
    margin: 0.6rem 0;
    line-height: 1.5;
}

.footer-legal-link {
    background: transparent;
    border: none;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-size: 0.8rem;
    transition: color 0.2s;
    text-decoration: underline;
}

.footer-legal-link:hover { color: var(--primary-light); }

.bono-priv-link {
    background: transparent;
    border: none;
    color: inherit;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    text-decoration: underline;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.bono-priv-link:hover { opacity: 1; }

@media (max-width: 768px) {
    .cookie-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-bar-actions {
        width: 100%;
    }
    .cookie-accept { flex: 1; }\n}\n\n@media (max-width: 768px) {
    .gamification-section {
        padding: 2.8rem 0;
    }

    .gamification-grid {
        gap: 1rem;
    }

    .step-emoji {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .quiz-step h4 {
        font-size: 1.12rem;
        margin-bottom: 1rem;
    }

    .btn {
        font-size: 1rem;
        padding: 1.05rem 1.1rem;
    }

    .btn-hero-cta {
        font-size: 1.04rem;
        padding: 1.15rem;
    }

    .share-card h2 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .share-card p {
        font-size: 0.95rem;
    }

    .share-btn {
        font-size: 0.94rem;
        padding: 0.78rem 0.85rem;
    }
}

/* Mobile Legal Layer Responsive */
@media (max-width: 768px) {
    .priv-overlay {
        padding: 0.75rem;
        align-items: flex-start;
        padding-top: 1.5rem;
    }

    .priv-box {
        max-height: 90vh;
        margin: 0 auto;
        border-radius: 12px;
    }

    .priv-content {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .priv-content h2 { font-size: 1.35rem; }
    .priv-content h3 { font-size: 1rem; margin-top: 1.25rem; }
    .priv-content p { font-size: 0.88rem; }
    .priv-updated { font-size: 0.78rem; }

    .priv-close {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
        top: 0.6rem;
        right: 0.6rem;
    }

    .cookie-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 1rem;
    }

    .cookie-bar-text {
        font-size: 0.88rem;
        flex-basis: 100%;
    }

    .cookie-bar-actions {
        width: 100%;
        gap: 0.7rem;
    }

    .cookie-accept {
        flex: 1;
        padding: 0.75rem 1rem;
    }

    .cookie-read {
        flex: 1;
        padding: 0.75rem 1rem;
    }

    .footer-legal {
        margin-top: 1.5rem;
        padding-top: 1rem;
        font-size: 0.75rem;
    }

    .footer-legal p { line-height: 1.5; margin: 0.5rem 0; }
    .footer-legal-link { font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   UTILITY CLASSES (extracted from inline styles)
   ============================================ */
/* Línea cálida decorativa bajo los h2 de sección — guía la vista hacia abajo */
.section-heading {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.85rem;
}
.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold), var(--warm));
}
.section-intro { text-align: center; max-width: 760px; margin: 0 auto 1.75rem; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.social-disabled { cursor: default; opacity: 0.5; pointer-events: none; }
.ticker-sep { opacity: 0.4; }
.btn-centered { max-width: 380px; margin: 2rem auto 0; }
.btn-centered-sm { max-width: 320px; margin: 2rem auto 0; }
.btn-centered-md { max-width: 360px; margin: 1.5rem auto 0; }
.gamification-intro { text-align: center; max-width: 760px; margin: 0 auto 2rem; }
.gamification-heading { font-size: 2.05rem; color: var(--primary); margin-bottom: 0.65rem; }
.location-heading { font-size: 2rem; color: var(--primary); margin-bottom: 1.5rem; }
.quiz-intro-text { margin-bottom: 15px; font-size: 0.9em; opacity: 0.9; }
.map-overlay-icon { color: white; margin-bottom: 1rem; opacity: 0.9; }
.map-overlay-title { font-size: 1.4rem; font-weight: 800; }
.map-overlay-subtitle { font-size: 0.95rem; opacity: 0.9; margin-bottom: 1.5rem; }
.promo-title { color: white; margin-bottom: 0.75rem; }
.promo-subtitle { color: rgba(255,255,255,0.88); margin-bottom: 0.3rem; font-size: 1.02rem; }

/* Footer */
.site-footer { padding: 3rem 0; text-align: center; background-color: var(--white); }
.footer-title { font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.footer-disclaimer { font-size: 0.875rem; color: var(--text-muted); padding-top: 0.5rem; }

/* ============================================
   MOBILE TIGHTENING — compact readable layout
   ============================================ */
/* Compactación extra para pantallas muy pequeñas (<480px).
   h1/h2/h3/p/section ahora viven en el base (mobile-first).
   Aquí solo overrides específicos de componentes. */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    /* Hero */
    .hero-subtitle { font-size: 0.92rem; margin-bottom: 1rem; }
    .location-badge { font-size: 0.78rem; padding: 0.3rem 0.7rem; }
    .trust-strip { padding: 0.65rem 0; margin-bottom: 1rem; }
    .trust-num { font-size: 1.3rem; }
    .trust-item small { font-size: 0.62rem; }
    .price-anchor { font-size: 1.2rem; margin-bottom: 1rem; }
    .price-anchor strong { font-size: 1.35rem; }
    .price-anchor p { font-size: 0.82rem; }
    .btn-hero-cta { font-size: 0.95rem; padding: 0.9rem 1rem; }
    .cta-sub { font-size: 0.72rem; }
    /* Trust bar */
    .trust-bar { padding: 1.5rem 0; }
    .trust-bar-grid { gap: 0.5rem; }
    .trust-badge { padding: 0.6rem 0.5rem; font-size: 0.72rem; }
    .trust-badge i { font-size: 1.1rem; }
    /* Secciones con padding propio que necesitan compactarse */
    .pain-section { padding: 2.5rem 0; }
    .pain-card { padding: 1rem; font-size: 0.88rem; }
    .solution { padding: 2.5rem 0; }
    .features-list li { padding: 0.75rem 1rem; font-size: 0.88rem; }
    .testimonials { padding: 2.5rem 0; }
    .testimonial-card { padding: 1.25rem; }
    .testimonial-card p { font-size: 0.88rem; }
    .promo-section { padding: 2.5rem 0; }
    .promo-eyebrow { font-size: 0.72rem; }
    .visit-section { padding: 2rem 0; }
    .faq-section { padding: 2.5rem 0; }
    .faq-item strong { font-size: 0.92rem; }
    .faq-item p { font-size: 0.85rem; }
    .gift-ticker { padding: 8px 0; font-size: 0.78rem; }
    .personas-section { padding: 2.5rem 0; }
    .persona-card { padding: 1.1rem; }
    .persona-card h3 { font-size: 1rem; }
    .persona-card p { font-size: 0.85rem; }
    .location-section { padding: 2.5rem 0; }
    .share-section { padding: 1.5rem 0 1rem; }
    .share-card { padding: 1.25rem; }
    .advisor-network-section { padding: 2rem 0; }
    .site-footer { padding: 2rem 0; }
    .footer-legal { font-size: 0.72rem; }
}

/* ============================================================
   PANINI CARD — Resultado Chismógrafo
   ============================================================ */
.panini-card {
    background: var(--pers-gradient);
    border-radius: 20px;
    overflow: hidden;
    max-width: 290px;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 0 3px #f59e0b, 0 0 0 6px #fbbf24, 0 12px 40px rgba(0,0,0,0.22);
    position: relative;
}
.panini-header {
    background: rgba(0,0,0,0.72);
    color: #fbbf24;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: center;
    padding: 0.45rem 0;
    text-transform: uppercase;
}
.panini-visual {
    background: var(--pers-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 0 1.25rem;
    position: relative;
}
.panini-visual::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 28px;
    background: var(--pers-gradient);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.panini-emoji-big {
    font-size: 5rem;
    line-height: 1;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
    position: relative;
    z-index: 1;
}
.panini-edition {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 1rem 0.2rem;
    font-size: 0.58rem;
    font-weight: 800;
    color: var(--pers-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
}
.panini-name {
    font-size: 1.2rem;
    font-weight: 900;
    text-align: center;
    padding: 0 1rem 0.1rem;
    color: #1e293b;
    line-height: 1.2;
}
.panini-tagline {
    font-size: 0.7rem;
    text-align: center;
    padding: 0 1rem 0.7rem;
    color: var(--pers-accent);
    font-style: italic;
    font-weight: 600;
}
.panini-divider {
    height: 1px;
    background: var(--pers-accent);
    opacity: 0.18;
    margin: 0 1rem;
}
.panini-traits-row {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
    padding: 0.55rem 0.75rem;
}
.panini-trait {
    background: var(--pers-accent-bg);
    color: var(--pers-accent);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.18rem 0.5rem;
    border-radius: 20px;
    white-space: nowrap;
}
.panini-match-row {
    padding: 0.4rem 1rem 0.5rem;
}
.panini-match-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.3rem;
}
.panini-match-bar {
    height: 5px;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}
.panini-match-fill {
    height: 100%;
    background: var(--pers-accent);
    border-radius: 10px;
    transition: width 0.8s ease;
}
.panini-quote {
    font-size: 0.7rem;
    font-style: italic;
    text-align: center;
    padding: 0.6rem 1.25rem 0.75rem;
    color: #334155;
    line-height: 1.55;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.panini-footer {
    background: rgba(0,0,0,0.08);
    text-align: center;
    padding: 0.45rem;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--pers-accent);
    text-transform: uppercase;
}

/* ============================================================
   PLACEHOLDERS PENDIENTES — recordatorio visual para el equipo
   ============================================================ */
@keyframes ph-blink {
    0%, 100% { opacity: 1; background-color: rgba(220, 38, 38, 0.18); }
    50%       { opacity: 0.5; background-color: rgba(220, 38, 38, 0.45); }
}
.ph {
    color: #dc2626 !important;
    font-weight: 700;
    border-radius: 3px;
    padding: 0 3px;
    animation: ph-blink 1.2s ease-in-out infinite;
    cursor: help;
}

/* ============================================
   SATÉLITES "YA" DECORATIVOS
   ============================================ */
.satellites-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.satellite-ya {
    position: fixed;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #FF2D7B;
    letter-spacing: -0.02em;
    pointer-events: none;
    z-index: 1;
}

.satellite-ya-1 { animation: orbit-1 12s linear infinite; }
.satellite-ya-2 { animation: orbit-2 14s linear infinite; }
.satellite-ya-3 { animation: orbit-3 16s linear infinite; }
.satellite-ya-4 { animation: orbit-4 18s linear infinite; }
.satellite-ya-5 { animation: orbit-5 13s linear infinite; }
.satellite-ya-6 { animation: orbit-6 15s linear infinite; }
.satellite-ya-7 { animation: orbit-7 17s linear infinite; }
.satellite-ya-8 { animation: orbit-8 19s linear infinite; }

@keyframes orbit-1 { 0%   { transform: translate(300px, 200px) rotate(0deg) translateX(120px) rotate(-0deg); } 100% { transform: translate(300px, 200px) rotate(360deg) translateX(120px) rotate(-360deg); } }
@keyframes orbit-2 { 0%   { transform: translate(800px, 400px) rotate(0deg) translateX(150px) rotate(-0deg); } 100% { transform: translate(800px, 400px) rotate(360deg) translateX(150px) rotate(-360deg); } }
@keyframes orbit-3 { 0%   { transform: translate(150px, 600px) rotate(0deg) translateX(100px) rotate(-0deg); } 100% { transform: translate(150px, 600px) rotate(360deg) translateX(100px) rotate(-360deg); } }
@keyframes orbit-4 { 0%   { transform: translate(700px, 800px) rotate(0deg) translateX(140px) rotate(-0deg); } 100% { transform: translate(700px, 800px) rotate(360deg) translateX(140px) rotate(-360deg); } }
@keyframes orbit-5 { 0%   { transform: translate(350px, 1000px) rotate(0deg) translateX(110px) rotate(-0deg); } 100% { transform: translate(350px, 1000px) rotate(360deg) translateX(110px) rotate(-360deg); } }
@keyframes orbit-6 { 0%   { transform: translate(900px, 1200px) rotate(0deg) translateX(160px) rotate(-0deg); } 100% { transform: translate(900px, 1200px) rotate(360deg) translateX(160px) rotate(-360deg); } }
@keyframes orbit-7 { 0%   { transform: translate(200px, 1400px) rotate(0deg) translateX(130px) rotate(-0deg); } 100% { transform: translate(200px, 1400px) rotate(360deg) translateX(130px) rotate(-360deg); } }
@keyframes orbit-8 { 0%   { transform: translate(750px, 1600px) rotate(0deg) translateX(145px) rotate(-0deg); } 100% { transform: translate(750px, 1600px) rotate(360deg) translateX(145px) rotate(-360deg); } }

/* Alternate colors for satellite variety */
.satellite-ya-2 { color: #FF6B2B; }
.satellite-ya-4 { color: #FF6B2B; }
.satellite-ya-6 { color: #FF6B2B; }
.satellite-ya-8 { color: #FF6B2B; }

/* Override satellite styles for static positioning */
.satellite-ya {
    position: fixed !important;
    pointer-events: none !important;
    z-index: 1 !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    color: #FF2D7B !important;
    opacity: 0.6 !important;
}

.satellite-ya-1 { animation: float-1 6s ease-in-out infinite; }
.satellite-ya-2 { animation: float-2 7s ease-in-out infinite; }
.satellite-ya-3 { animation: float-3 8s ease-in-out infinite; }
.satellite-ya-4 { animation: float-4 6.5s ease-in-out infinite; }
.satellite-ya-5 { animation: float-5 7.5s ease-in-out infinite; }
.satellite-ya-6 { animation: float-6 8.5s ease-in-out infinite; }
.satellite-ya-7 { animation: float-7 6s ease-in-out infinite; }
.satellite-ya-8 { animation: float-8 7s ease-in-out infinite; }

@keyframes float-1 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes float-2 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(20px); } }
@keyframes float-3 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
@keyframes float-4 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(15px); } }
@keyframes float-5 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-25px); } }
@keyframes float-6 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(25px); } }
@keyframes float-7 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-18px); } }
@keyframes float-8 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(18px); } }

/* Simplify and ensure satellite visibility */
.satellite-ya {
    position: fixed !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
    opacity: 0.8 !important;
    pointer-events: none !important;
    z-index: 999 !important;
    letter-spacing: -0.03em !important;
}
