@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
    /* Paleta Espiritual Elegante */
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --navy-dark: #0f0f23;
    --cream: #fffef5;
    --cream-dark: #f5f0e1;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Gradientes Premium */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-royal: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
    --gradient-divine: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #2d1b4e 100%);

    /* Sombras Premium */
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 50px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--gold);
    position: relative;
}

/* ============================================
   BARRA DE ESCASSEZ (TOPO)
============================================ */
.scarcity-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    z-index: 1000;
    flex-wrap: wrap;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.scarcity-bar .separator {
    opacity: 0.3;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-divine);
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 20px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.3);
    }
}

.hero-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Prova Social Banner */
.social-proof-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 60px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
    width: fit-content;
}

.avatars-stack {
    display: flex;
    align-items: center;
}

.avatars-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-left: -10px;
}

.avatars-stack img:first-child {
    margin-left: 0;
}

.avatars-stack .more {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: -10px;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.result-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    color: var(--navy);
    animation: bounce 2s ease-in-out infinite;
    border-left: 4px solid var(--gold);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Elements */
.floating-element {
    position: fixed;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.floating-1 {
    top: 15%;
    left: 3%;
    font-size: 2.5rem;
    animation: floatEmoji 4s ease-in-out infinite;
}

.floating-2 {
    bottom: 25%;
    right: 3%;
    font-size: 2rem;
    animation: floatEmoji 4s ease-in-out infinite 0.5s;
}

.floating-3 {
    top: 50%;
    left: 5%;
    font-size: 1.8rem;
    animation: floatEmoji 4s ease-in-out infinite 1s;
}

@keyframes floatEmoji {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--gradient-gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-pulse {
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {

    0%,
    100% {
        box-shadow: var(--shadow-gold);
    }

    50% {
        box-shadow: 0 10px 50px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

.btn-large {
    padding: 22px 52px;
    font-size: 1.15rem;
}

.micro-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

/* ============================================
   SECTIONS
============================================ */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* ============================================
   WHAT YOU GET SECTION
============================================ */
.what-you-get {
    background: white;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-main img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
}

.showcase-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--cream);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.benefit-check {
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
}

.benefit-item small {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   PAIN SECTION (DOR)
============================================ */
.pain-section {
    background: var(--cream-dark);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pain-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--danger);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
}

.pain-icon {
    font-size: 2.5rem;
}

.pain-card p {
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
}

.transition-text {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--gradient-gold);
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.transition-text p {
    font-size: 1.2rem;
    color: var(--navy);
}

/* ============================================
   TRANSFORMATION / BENEFITS
============================================ */
.transformation-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   GALLERY
============================================ */
.gallery {
    background: var(--cream-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================
   BONUSES SECTION
============================================ */
.bonuses-section {
    background: var(--gradient-divine);
    color: white;
    padding: 100px 0;
}

.bonuses-section .section-title {
    color: white;
}

.bonuses-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bonus-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.bonus-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: white;
}

.bonus-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.bonus-price {
    font-size: 0.9rem;
    color: var(--gold);
}

.bonus-price s {
    color: rgba(255, 255, 255, 0.5);
}

.bonus-total {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    border-radius: 15px;
    font-size: 1.2rem;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--cream);
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.testimonial-card.featured {
    border: 2px solid var(--gold);
    position: relative;
}

.testimonial-result {
    background: var(--gold);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
}

.testimonial-role {
    color: var(--gold-dark);
    font-size: 0.85rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

/* ============================================
   OBJECTIONS SECTION
============================================ */
.objections-section {
    background: var(--cream-dark);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.objection-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-soft);
}

.objection-thought {
    font-style: italic;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.objection-answer {
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
    background: var(--gradient-divine);
    color: white;
    position: relative;
    overflow: hidden;
}

.urgency-box {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-icon {
    font-size: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pricing-content h2 {
    color: white;
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.pricing-content>p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Value Stack */
.value-stack {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:last-child {
    border-bottom: none;
}

.value-price {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.value-total {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    background: rgba(212, 175, 55, 0.2);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Pricing Box */
.pricing-box {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    color: var(--navy);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price-old {
    font-size: 1.2rem;
    color: #999;
}

.price-new {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold-dark);
    margin: 10px 0;
    font-family: 'Playfair Display', serif;
}

.price-new small {
    font-size: 1rem;
    font-weight: 400;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.pricing-box .micro-copy {
    color: #555;
}

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background: #f0fdf4;
    border-radius: 15px;
    text-align: left;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.guarantee-icon {
    font-size: 2.5rem;
}

.guarantee-box strong {
    display: block;
    color: var(--success);
    margin-bottom: 5px;
}

.guarantee-box p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.payment-icons img {
    height: 35px;
    opacity: 0.7;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question span {
    transition: transform 0.3s ease;
    color: var(--gold);
}

.faq-item.active .faq-question span {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
    background: var(--gradient-gold);
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    color: var(--navy);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.final-cta p {
    color: var(--navy);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.final-cta .btn-primary {
    background: var(--navy);
    color: var(--gold);
    box-shadow: var(--shadow-dark);
}

.final-cta .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
}

/* ============================================
   URGENCY BAR (BOTTOM)
============================================ */
.urgency-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-gold);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 1000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.timer {
    background: var(--navy);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1rem;
}

.urgency-btn {
    background: var(--navy);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.urgency-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   NOTIFICATIONS
============================================ */
.notif-container {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 999;
}

.notif {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.5s ease, fadeOut 0.5s ease 4.5s forwards;
    border-left: 4px solid var(--gold);
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.notif-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.notif-text {
    font-size: 0.9rem;
}

.notif-text strong {
    color: var(--gold-dark);
}

/* ============================================
   QUIZ PAGE STYLES
============================================ */
.quiz-page {
    background: var(--gradient-divine);
    min-height: 100vh;
    padding-top: 0;
}

.quiz-no-topbar {
    padding-top: 0;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px 100px;
    min-height: 100vh;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quiz Intro */
.quiz-intro {
    text-align: center;
    color: white;
}

.quiz-header {
    margin-bottom: 30px;
}

.quiz-logo {
    font-size: 4rem;
    margin-bottom: 20px;
}

.intro-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.quiz-main-title {
    font-size: 2rem;
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.intro-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.intro-gallery img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.intro-text {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.intro-benefits {
    list-style: none;
    margin-top: 15px;
}

.intro-benefits li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.quiz-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.quiz-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--gradient-gold);
    width: var(--progress, 25%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Quiz Questions */
.quiz-question {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.quiz-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.quiz-option:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.quiz-option.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
}

.quiz-option.popular {
    border-color: var(--gold);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.option-icon {
    font-size: 1.5rem;
}

.option-content strong {
    display: block;
    color: white;
}

.option-content small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Quiz Result */
.quiz-result {
    text-align: center;
    color: white;
}

.result-confetti {
    font-size: 4rem;
    margin-bottom: 20px;
}

.result-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.result-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: left;
    margin-bottom: 30px;
}

.result-projection {
    text-align: center;
    padding: 25px;
    background: var(--gradient-gold);
    border-radius: 15px;
    margin-bottom: 25px;
}

.projection-label {
    display: block;
    color: var(--navy);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.projection-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.result-analysis h3 {
    margin-bottom: 15px;
}

.result-analysis ul {
    list-style: none;
}

.result-analysis li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.result-analysis li:last-child {
    border-bottom: none;
}

.result-proof {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 20px;
    align-items: flex-start;
}

.proof-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.proof-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 5px;
}

.proof-name {
    font-size: 0.85rem;
    color: var(--gold);
}

.result-cta-section {
    margin-bottom: 30px;
}

.result-urgency {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.result-guarantee {
    margin-top: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.result-live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Quiz Footer Bar */
.quiz-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-gold);
    color: var(--navy);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    z-index: 1000;
}

.quiz-footer-bar .separator {
    opacity: 0.3;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .social-proof-banner {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 350px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonuses-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pain-grid,
    .objections-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .urgency-bar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .urgency-bar .timer {
        padding: 4px 12px;
        font-size: 0.9rem;
    }

    .urgency-bar .urgency-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .btn-primary {
        padding: 16px 36px;
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .intro-gallery img {
        width: 80px;
        height: 60px;
    }

    .intro-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .price-new {
        font-size: 3rem;
    }

    .scarcity-bar {
        font-size: 0.8rem;
        gap: 10px;
    }

    .result-badge {
        position: static;
        margin-top: 20px;
    }
}