@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Dancing+Script:wght@700&display=swap');

:root {
    /* Paleta de Confeitaria */
    --rose: #e75480;
    --rose-light: #ff6b9d;
    --rose-dark: #c94467;
    --berry: #8e4585;
    --cream: #fff5f5;
    --vanilla: #fffaf0;
    --chocolate: #3d2314;
    --caramel: #ffb347;
    --mint: #98d7c2;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Gradientes Doces */
    --gradient-berry: linear-gradient(135deg, #e75480 0%, #8e4585 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b9d 0%, #ffb347 100%);
    --gradient-sweet: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);

    /* Sombras */
    --shadow-soft: 0 10px 40px rgba(231, 84, 128, 0.15);
    --shadow-hover: 0 20px 60px rgba(231, 84, 128, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--vanilla);
    color: var(--chocolate);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 50px;
    /* Para a barra de escassez */
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--rose);
    position: relative;
}

/* ============================================
   BARRA DE ESCASSEZ (TOPO)
============================================ */
.scarcity-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--chocolate);
    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: linear-gradient(135deg, #fff5f5 0%, #ffe4ec 50%, #ffecd2 100%);
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(231, 84, 128, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

@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;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-berry);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    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(231, 84, 128, 0.5);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px rgba(231, 84, 128, 0.3);
    }
}

.hero-title {
    font-size: 2.8rem;
    color: var(--chocolate);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Prova Social Banner */
.social-proof-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    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 white;
    margin-left: -10px;
}

.avatars-stack img:first-child {
    margin-left: 0;
}

.avatars-stack .more {
    width: 36px;
    height: 36px;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: -10px;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.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.15);
    font-size: 0.95rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Elements */
.floating-element {
    position: fixed;
    z-index: 1;
    opacity: 0.8;
    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-berry);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(231, 84, 128, 0.4);
    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.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(231, 84, 128, 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: 0 10px 30px rgba(231, 84, 128, 0.4);
    }

    50% {
        box-shadow: 0 10px 50px rgba(231, 84, 128, 0.6), 0 0 30px rgba(231, 84, 128, 0.4);
    }
}

.micro-copy {
    font-size: 0.85rem;
    color: #666;
    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(--rose);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    color: var(--chocolate);
    margin-bottom: 16px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* ============================================
   PAIN SECTION (DOR)
============================================ */
.pain-section {
    background: white;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pain-card {
    background: #fef2f2;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--danger);
    display: flex;
    align-items: center;
    gap: 20px;
}

.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-sweet);
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.transition-text p {
    font-size: 1.2rem;
    color: var(--chocolate);
}

/* ============================================
   SOLUTION / BENEFITS
============================================ */
.solution-section {
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--rose-light);
    box-shadow: var(--shadow-soft);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-sweet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--chocolate);
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   GALLERY
============================================ */
.gallery {
    background: white;
}

.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;
}

.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;
}

/* ============================================
   CONTENT SECTION
============================================ */
.content-section {
    background: var(--gradient-berry);
    color: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.content-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

.content-info h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.content-info>p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.content-list {
    list-style: none;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list .check {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}

.content-list li div strong {
    display: block;
    font-size: 1.05rem;
}

.content-list li div small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.testimonial-card.featured {
    border: 2px solid var(--rose);
    position: relative;
}

.testimonial-result {
    background: var(--success);
    color: white;
    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(--rose-light);
}

.testimonial-name {
    font-weight: 700;
    color: var(--chocolate);
    font-size: 1.05rem;
}

.testimonial-role {
    color: var(--rose);
    font-size: 0.85rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

/* ============================================
   OBJECTIONS SECTION
============================================ */
.objections-section {
    background: white;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.objection-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid var(--rose);
}

.objection-thought {
    font-style: italic;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.objection-answer {
    color: var(--chocolate);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
    background: linear-gradient(135deg, var(--chocolate) 0%, #2d1810 100%);
    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;
}

.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;
    padding: 25px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-price {
    text-decoration: line-through;
    opacity: 0.6;
}

.value-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--caramel);
}

/* Pricing Box */
.pricing-box {
    background: white;
    color: var(--chocolate);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.pricing-badge {
    background: var(--danger);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.price-old {
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 5px;
    margin-top: 20px;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 5px;
}

.price-new small {
    font-size: 1rem;
    font-weight: 600;
    color: #888;
}

.price-cash {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.price-cash strong {
    color: var(--chocolate);
    font-size: 1.3rem;
}

.guarantee-box {
    background: #f0fdf4;
    border: 1px solid var(--success);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    margin-top: 20px;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-box strong {
    color: var(--success);
}

.guarantee-box p {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.payment-icons img {
    height: 30px;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    background: var(--vanilla);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 24px 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-answer {
    padding: 0 30px 24px;
    color: #666;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
    background: var(--gradient-sweet);
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.2rem;
    color: var(--chocolate);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    margin-top: 20px;
}

/* ============================================
   URGENCY BAR (BOTTOM)
============================================ */
.urgency-bar {
    background: var(--rose);
    color: white;
    padding: 15px 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.urgency-bar .timer {
    background: white;
    color: var(--rose);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
}

.urgency-btn {
    background: white;
    color: var(--rose);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.urgency-btn:hover {
    background: var(--chocolate);
    color: white;
}

/* ============================================
   NOTIFICATIONS
============================================ */
.notif-container {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 99;
}

.notif {
    background: white;
    border-left: 4px solid var(--success);
    color: var(--chocolate);
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 10px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.5s forwards;
    max-width: 320px;
}

.notif img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

@keyframes slideIn {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--chocolate);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 120px;
    /* Extra padding por causa da urgency bar */
    text-align: center;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {

    .hero-grid,
    .content-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 350px;
        margin: 0 auto;
    }

    .social-proof-banner {
        margin: 0 auto 30px;
    }

    .result-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 35px;
        /* Barra topo menor */
    }

    /* BARRA TOPO - BEM MENOR */
    .scarcity-bar {
        font-size: 0.7rem;
        padding: 6px 10px;
        gap: 6px;
    }

    .scarcity-bar .separator {
        display: none;
    }

    .pulse-dot {
        width: 6px;
        height: 6px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .benefits-grid,
    .pain-grid,
    .objections-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 0;
    }

    .pricing-box {
        padding: 25px 15px;
    }

    /* BARRA RODAPÉ - BEM MENOR */
    .urgency-bar {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    .urgency-bar span:first-child {
        display: none;
        /* Esconde emoji/texto longo */
    }

    .urgency-bar .timer {
        padding: 4px 10px;
        font-size: 0.75rem;
        border-radius: 15px;
    }

    .urgency-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
        border-radius: 20px;
    }

    .floating-element {
        display: none;
    }

    /* Footer com menos padding */
    .footer {
        padding: 30px 0 70px;
    }
}

/* ============================================
   QUIZ STYLES
============================================ */
.quiz-page {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4ec 50%, #ffecd2 100%);
    min-height: 100vh;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px 100px;
}

.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

/* ============================================
   QUIZ INTRO (TELA DE ABERTURA)
============================================ */
.quiz-intro .quiz-header {
    margin-bottom: 20px;
}

.intro-badge {
    display: inline-block;
    background: var(--gradient-berry);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.intro-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.intro-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-gallery img:hover {
    transform: scale(1.05);
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--rose-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
}

.intro-text {
    background: white;
    padding: 24px;
    border-radius: 20px;
    margin: 24px 0;
    text-align: left;
}

.intro-text>p {
    font-size: 1.1rem;
    color: var(--chocolate);
    margin-bottom: 16px;
}

.intro-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
}

.intro-benefits li:last-child {
    border-bottom: none;
}

/* Mobile intro */
@media (max-width: 768px) {
    .intro-gallery {
        gap: 8px;
    }

    .intro-gallery img {
        border-radius: 12px;
    }

    .intro-stats {
        gap: 10px;
    }

    .stat-item {
        padding: 12px 14px;
        min-width: 90px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .intro-text {
        padding: 18px;
    }

    .intro-text>p {
        font-size: 1rem;
    }

    .intro-benefits li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

.quiz-logo {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.quiz-main-title {
    font-size: 1.8rem;
    color: var(--chocolate);
    margin-bottom: 12px;
    line-height: 1.3;
}

.quiz-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 24px;
}

.quiz-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #555;
}

.quiz-trust-badges span {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Progress Bar */
.progress-container {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    height: 8px;
    background: var(--gradient-berry);
    border-radius: 10px;
    width: 25%;
    transition: width 0.5s ease;
    margin-bottom: 10px;
}

.progress-text {
    font-size: 0.85rem;
    color: #888;
}

/* Quiz Steps */
.quiz-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-size: 1.5rem;
    color: var(--chocolate);
    text-align: center;
    margin-bottom: 8px;
}

.quiz-hint {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quiz-option {
    background: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quiz-option:hover {
    transform: translateY(-3px);
    border-color: var(--rose-light);
    box-shadow: var(--shadow-soft);
}

.quiz-option.selected {
    border-color: var(--rose);
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4ec 100%);
    transform: scale(1.02);
}

.quiz-option.popular {
    border-color: var(--caramel);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--caramel);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.option-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-sweet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--chocolate);
    margin-bottom: 4px;
}

.option-content small {
    color: #888;
    font-size: 0.9rem;
}

/* Quiz Result */
.quiz-result {
    text-align: center;
}

.result-confetti {
    font-size: 4rem;
    animation: bounce 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.result-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.result-title {
    font-size: 1.8rem;
    color: var(--chocolate);
    margin-bottom: 30px;
    line-height: 1.4;
}

.result-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-bottom: 30px;
}

.result-projection {
    background: var(--gradient-sweet);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 24px;
}

.projection-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.projection-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--rose-dark);
}

.result-analysis h3 {
    font-size: 1.1rem;
    color: var(--chocolate);
    margin-bottom: 16px;
}

.result-analysis ul {
    list-style: none;
    padding: 0;
}

.result-analysis li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

.result-analysis li:last-child {
    border-bottom: none;
}

.result-proof {
    display: flex;
    gap: 16px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    margin-top: 24px;
    align-items: flex-start;
}

.proof-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.proof-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.proof-name {
    font-size: 0.85rem;
    color: var(--rose);
    font-weight: 600;
}

.result-cta-section {
    margin-bottom: 30px;
}

.result-urgency {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.btn-large {
    padding: 24px 60px;
    font-size: 1.2rem;
}

.result-guarantee {
    font-size: 0.85rem;
    color: #666;
    margin-top: 16px;
}

.result-live-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.quiz-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px;
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    border-top: 1px solid #eee;
}

/* Footer bar escuro (escassez) */
.quiz-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--chocolate);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    z-index: 1000;
    flex-wrap: wrap;
}

.quiz-footer-bar .separator {
    opacity: 0.3;
}

/* Quiz sem topbar */
.quiz-no-topbar {
    padding-top: 0;
}

.quiz-no-topbar .quiz-container {
    padding-bottom: 80px;
}

/* Quiz Mobile */
@media (max-width: 768px) {

    /* Barras menores no mobile */
    .scarcity-bar {
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 8px;
    }

    .scarcity-bar .separator {
        display: none;
    }

    .quiz-footer {
        padding: 8px;
        font-size: 0.7rem;
    }

    .quiz-container {
        padding: 15px 16px 70px;
    }

    .quiz-header {
        margin-bottom: 25px;
    }

    .quiz-logo {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .quiz-main-title {
        font-size: 1.3rem;
    }

    .quiz-subtitle {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .quiz-trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        font-size: 0.75rem;
    }

    .quiz-trust-badges span {
        padding: 6px 10px;
    }

    /* Progress bar menor */
    .progress-container {
        padding: 12px 16px;
        margin-bottom: 20px;
    }

    .progress-bar {
        height: 6px;
    }

    .progress-text {
        font-size: 0.75rem;
    }

    .quiz-question {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }

    .quiz-hint {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* OPÇÕES MAIS CLARAS - Parecem botões clicáveis */
    .quiz-options {
        gap: 12px;
    }

    .quiz-option {
        padding: 16px;
        border: 2px solid #e5e5e5;
        border-radius: 14px;
        background: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        /* Indicador visual de clicável */
        cursor: pointer;
        position: relative;
    }

    /* Seta indicando que é clicável */
    .quiz-option::after {
        content: '→';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--rose);
        font-size: 1.2rem;
        font-weight: bold;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .quiz-option:hover::after,
    .quiz-option:active::after {
        opacity: 1;
        transform: translateY(-50%) translateX(3px);
    }

    .quiz-option:active {
        transform: scale(0.98);
        border-color: var(--rose);
    }

    .quiz-option.selected::after {
        content: '✓';
        color: white;
        background: var(--success);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

    .option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .option-content strong {
        font-size: 1rem;
    }

    .option-content small {
        font-size: 0.8rem;
    }

    /* Badge popular menor */
    .popular-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
        top: -8px;
        right: 12px;
    }

    /* Resultado */
    .result-confetti {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .result-badge-top {
        padding: 6px 14px;
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .result-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .result-card {
        padding: 20px;
        border-radius: 18px;
    }

    .result-projection {
        padding: 18px;
        margin-bottom: 18px;
    }

    .projection-label {
        font-size: 0.8rem;
    }

    .projection-value {
        font-size: 1.4rem;
    }

    .result-analysis h3 {
        font-size: 1rem;
    }

    .result-analysis li {
        padding: 10px 0;
        font-size: 0.85rem;
    }

    .result-proof {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .proof-avatar {
        margin: 0 auto;
        width: 45px;
        height: 45px;
    }

    .proof-content p {
        font-size: 0.85rem;
    }

    .proof-name {
        font-size: 0.8rem;
    }

    .result-urgency {
        padding: 12px 16px;
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .btn-large {
        padding: 18px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }

    .result-guarantee {
        font-size: 0.75rem;
        margin-top: 12px;
    }

    .result-live-counter {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .result-live-counter .pulse-dot {
        width: 8px;
        height: 8px;
    }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
    .quiz-main-title {
        font-size: 1.15rem;
    }

    .quiz-option {
        padding: 14px;
    }

    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .option-content strong {
        font-size: 0.95rem;
    }

    .projection-value {
        font-size: 1.2rem;
    }
}