/* ===== VARIABLES ===== */
:root {
    --primary: #FF2D7A;
    --primary-dark: #E02060;
    --bg: #0A0A0F;
    --bg-light: #111118;
    --bg-card: #16161F;
    --bg-card-hover: #1E1E2A;
    --text: #FFFFFF;
    --text-secondary: #A0A0B0;
    --text-muted: #6B6B7B;
    --border: #2A2A3A;
    --success: #00D4AA;
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text);
}

.logo svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    font-size: 0.85rem;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-secondary);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-big {
    width: 300px;
    height: 300px;
    opacity: 0.15;
}

.logo-big svg {
    width: 100%;
    height: 100%;
}

/* ===== STATS VISUAL ===== */
.stats {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.stats-visual {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated rings */
.stats-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 45, 122, 0.15);
    pointer-events: none;
}

.stats-ring-1 {
    width: 280px;
    height: 280px;
    animation: ringPulse 4s ease-in-out infinite;
}

.stats-ring-2 {
    width: 360px;
    height: 360px;
    border-color: rgba(255, 45, 122, 0.1);
    animation: ringPulse 4s ease-in-out infinite 0.8s;
}

.stats-ring-3 {
    width: 440px;
    height: 440px;
    border-color: rgba(255, 45, 122, 0.06);
    animation: ringPulse 4s ease-in-out infinite 1.6s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Glow effect */
.stats-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 122, 0.25) 0%, rgba(255, 45, 122, 0.08) 40%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Center logo */
.stats-logo {
    position: relative;
    z-index: 2;
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 0 30px rgba(255, 45, 122, 0.5));
}

.stats-logo svg {
    width: 100%;
    height: 100%;
}

/* Floating stat cards */
.stat-float-card {
    position: absolute;
    background: rgba(22, 22, 31, 0.9);
    border: 1px solid rgba(255, 45, 122, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(10px);
    z-index: 3;
    animation: floatCard 5s ease-in-out infinite;
}

.stat-float-left {
    left: 0;
    top: 50%;
    transform: translateY(-80%);
    animation-delay: 0s;
}

.stat-float-right-top {
    right: 0;
    top: 50%;
    transform: translateY(-100%);
    animation-delay: 1.5s;
}

.stat-float-right-bottom {
    right: 0;
    top: 50%;
    transform: translateY(20%);
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(var(--float-y, -80%)) translateX(0); }
    50% { transform: translateY(var(--float-y, -80%)) translateX(-6px); }
}

.stat-float-right-top { --float-y: -100%; }
.stat-float-right-bottom { --float-y: 20%; }
.stat-float-left { --float-y: -80%; }

.stat-float-right-top,
.stat-float-right-bottom {
    animation-name: floatCardRight;
}

@keyframes floatCardRight {
    0%, 100% { transform: translateY(var(--float-y, 20%)) translateX(0); }
    50% { transform: translateY(var(--float-y, 20%)) translateX(6px); }
}

.stat-float-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-float-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive stats visual */
@media (max-width: 768px) {
    .stats-visual {
        height: 320px;
    }

    .stats-logo {
        width: 100px;
        height: 100px;
    }

    .stats-ring-1 { width: 200px; height: 200px; }
    .stats-ring-2 { width: 260px; height: 260px; }
    .stats-ring-3 { width: 320px; height: 320px; }
    .stats-glow { width: 180px; height: 180px; }

    .stat-float-card {
        padding: 12px 16px;
        border-radius: 10px;
    }

    .stat-float-number {
        font-size: 1.1rem;
    }

    .stat-float-label {
        font-size: 0.7rem;
    }

    .stat-float-left {
        left: 10px;
    }

    .stat-float-right-top,
    .stat-float-right-bottom {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .stats-visual {
        height: 260px;
    }

    .stats-logo {
        width: 80px;
        height: 80px;
    }

    .stats-ring-1 { width: 160px; height: 160px; }
    .stats-ring-2 { width: 210px; height: 210px; }
    .stats-ring-3 { width: 260px; height: 260px; }
    .stats-glow { width: 140px; height: 140px; }

    .stat-float-card {
        padding: 10px 12px;
    }

    .stat-float-number {
        font-size: 0.95rem;
    }

    .stat-float-label {
        font-size: 0.65rem;
    }
}

/* ===== GOLPE DE REALIDAD ===== */
.golpe {
    padding: 100px 0;
    text-align: center;
}

.golpe-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.golpe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.golpe-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    text-align: left;
}

.golpe-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.golpe-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.golpe-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== COSAS QUE NADIE TE DICE ===== */
.nadie {
    padding: 80px 0;
    background: var(--bg-light);
}

.nadie-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.nadie-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.nadie-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.nadie-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.nadie-card p strong {
    color: var(--text);
    display: block;
    margin-top: 4px;
}

/* ===== ¿QUÉ ES INSERTARTE? ===== */
.que-es {
    padding: 100px 0;
}

.que-es-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.que-es-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.que-es-final {
    font-size: 1.3rem !important;
    color: var(--text) !important;
    font-weight: 600;
    margin-top: 32px;
}

.que-es-final strong {
    color: var(--primary);
}

/* ===== PROBLEM ===== */
.problem {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.problem-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.problem-icon {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SCENARIOS ===== */
.scenarios {
    padding: 100px 0;
    background: var(--bg-light);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scenario-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.scenario-card:hover {
    border-color: var(--primary);
}

.scenario-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.scenario-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== MÉTODO INSERTARTE ===== */
.process {
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary);
}

.step-number {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-quote {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    font-style: italic;
}

/* ===== PLANS ===== */
.plans {
    padding: 100px 0;
    background: var(--bg-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    border-color: var(--primary);
}

.plan-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255, 45, 122, 0.05) 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header {
    margin-bottom: 20px;
    padding-top: 8px;
}

.plan-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.plan-tag {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

.plan-ideal {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 45, 122, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.plan-ideal p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.plan-ideal ul {
    list-style: none;
    padding: 0;
}

.plan-ideal ul li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.plan-ideal ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 20px;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.btn-plan {
    width: 100%;
    justify-content: center;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px 20px;
}

.btn-plan:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ===== QUIZ / DIAGNÓSTICO ===== */
.quiz {
    padding: 60px 0;
}

.quiz-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
}

.quiz-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.quiz-box > p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.quiz-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.quiz-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.btn-quiz {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.btn-quiz:hover {
    background: var(--bg);
    color: var(--text);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 120px 0;
    text-align: center;
}

.cta-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-cta-final {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-cta-final:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: #00B894;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .logo-big {
        width: 200px;
        height: 200px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .golpe-title {
        font-size: 2.2rem;
    }

    .services-grid,
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .nadie-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .golpe-grid,
    .problem-grid,
    .scenarios-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .golpe-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .golpe-grid,
    .problem-grid,
    .scenarios-grid,
    .testimonials-grid,
    .services-grid,
    .plans-grid,
    .process-grid,
    .nadie-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .quiz-box {
        padding: 32px 24px;
    }

    .quiz-tags {
        gap: 8px;
    }

    .quiz-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .cta-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .golpe-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .plan-ideal {
        padding: 12px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CUESTIONARIO INTERACTIVO ===== */
.quiz {
    padding: 80px 0;
}

.quiz-intro {
    max-width: 700px;
    margin: 0 auto;
}

.quiz-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
}

.quiz-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.quiz-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.95;
}

.quiz-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.6;
}

.quiz-meta {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 16px;
}

/* Quiz Container */
.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    animation: quizFadeIn 0.4s ease;
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-progress {
    margin-bottom: 32px;
}

.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-card);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 0%;
}

.quiz-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.quiz-progress-percent {
    color: var(--primary);
    font-weight: 700;
}

.quiz-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(255, 45, 122, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 45, 122, 0.2);
}

.quiz-question {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.4;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: inherit;
    color: var(--text);
    font-size: 1rem;
    width: 100%;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.quiz-option.selected {
    border-color: var(--primary);
    background: rgba(255, 45, 122, 0.08);
}

.quiz-option-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
}

.quiz-option:hover .quiz-option-letter {
    border-color: var(--primary);
    color: var(--primary);
}

.quiz-option.selected .quiz-option-letter {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.quiz-option-text {
    font-weight: 500;
}

.quiz-nav {
    display: flex;
    justify-content: flex-start;
}

.btn-quiz-nav {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-quiz-nav:hover {
    background: var(--bg-card);
    color: var(--text);
    border-color: var(--text-secondary);
}

/* Quiz Result */
.quiz-result {
    max-width: 700px;
    margin: 0 auto;
    animation: quizFadeIn 0.5s ease;
}

.quiz-result-box {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
}

.quiz-result-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.quiz-result-plan {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
}

.quiz-result-scores {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.quiz-result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.quiz-result-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quiz-result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.quiz-result-value.good {
    color: var(--success);
}

.quiz-result-value.regular {
    color: #F5A623;
}

.quiz-result-value.bad {
    color: var(--primary);
}

.quiz-result-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

#quizResultCta {
    margin-bottom: 16px;
    display: inline-flex;
}

/* Responsive Quiz */
@media (max-width: 768px) {
    .quiz-box {
        padding: 32px 24px;
    }

    .quiz-question {
        font-size: 1.1rem;
    }

    .quiz-option {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .quiz-result-box {
        padding: 32px 24px;
    }

    .quiz-result-plan {
        font-size: 1.5rem;
    }

    .quiz-result-scores {
        gap: 20px;
    }
}
