/* =====================
   DESIGN SYSTEM & VARS
   ===================== */
:root {
    /* Cores Infantis & Vibrantes */
    --color-primary: #FF9F43;
    /* Laranja Alegre */
    --color-primary-dark: #FF7F00;
    --color-secondary: #00D2D3;
    /* Azul Piscina */

    --color-btn-gradient: linear-gradient(180deg, #1DD1A1, #10AC84);
    --color-btn-hover: linear-gradient(180deg, #10AC84, #01906A);
    --color-btn-shadow: rgba(16, 172, 132, 0.5);

    --color-red: #FF6B6B;
    --color-yellow: #FECA57;
    --color-purple: #9B59B6;

    /* Backgrounds Suaves */
    --bg-light: #F8F9FA;
    --bg-soft-yellow: #FFF9E6;
    --bg-soft-blue: #F0F8FF;

    /* Textos */
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --text-light: #FFFFFF;

    /* Fontes */
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Poppins', sans-serif;

    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* =====================
   RESET & BASICS
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* =====================
   UTILITIES
   ===================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.d-block {
    display: block;
}

.bg-soft-yellow {
    background-color: var(--bg-soft-yellow);
}

.bg-soft-blue {
    background-color: var(--bg-soft-blue);
}

/* Highlights (Estilo Marcador de Texto Infantil) */
.highlight-red {
    color: var(--color-red);
}

.highlight-orange-text {
    color: var(--color-primary-dark);
}

.highlight-red-text {
    color: var(--color-red);
    font-weight: bold;
}

.highlight-bg {
    background-color: var(--color-yellow);
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    color: var(--text-dark);
    transform: rotate(-1deg);
}

.highlight-orange-bg {
    background-color: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.highlight-purple-bg {
    background-color: var(--color-purple);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.highlight-red-bg {
    background-color: var(--color-red);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--color-btn-gradient);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px var(--color-btn-shadow);
    border-bottom: 5px solid #01906A;
}

.btn-primary:active {
    transform: translateY(4px);
    border-bottom: 1px solid #01906A;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--color-btn-shadow);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(16, 172, 132, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 172, 132, 0);
    }
}

.btn-pulse {
    animation: pulse 2.5s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

.pulse-soft {
    animation: pulse-soft 3s infinite ease-in-out;
}

/* Revelação no Scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}


/* =====================
   TOPBAR
   ===================== */
.topbar {
    background-color: var(--color-purple);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    background: radial-gradient(circle at top right, #3C1EAF 0%, #17094F 100%);
    color: white;
    padding: 3rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-soft-yellow);
    transform: skewY(-2deg);
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.urgency-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.hero-main-img {
    max-width: 450px;
    margin-bottom: 1.5rem;
}

.headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bncc-badge {
    background-color: #337915;
    color: white;
    font-family: var(--font-heading);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.subheadline {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-image-box-mini img {
    max-width: 80px;
    margin-bottom: 1.5rem;
}

/* Hero Pricing */
.pricing-card {
    background: white;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-lg);
    display: inline-block;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px dashed var(--color-primary);
    transform: rotate(2deg);
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.by-text {
    font-size: 1.1rem;
    margin: 5px 0;
}

.new-price {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-top: 5px;
}

.people-watching {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.secure-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =====================
   COMO FUNCIONA GRID
   ===================== */
.how-it-works {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-bottom: 6px solid var(--color-yellow);
    transition: transform 0.3s ease;
}

.feature-card:nth-child(2) {
    border-bottom-color: var(--color-secondary);
}

.feature-card:nth-child(3) {
    border-bottom-color: var(--color-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
}

/* =====================
   MODULES (Alternados)
   ===================== */
.modules {
    padding: 5rem 0;
    background-color: white;
}

.badge-tag {
    background-color: var(--color-purple);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.module-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.module-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: var(--bg-soft-blue);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid #E3F2FD;
}

.module-item.reverse {
    flex-direction: row-reverse;
    background: var(--bg-soft-yellow);
    border-color: #FFF3CD;
}

.module-img-box {
    flex: 1;
    text-align: center;
}

.module-img-box img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    /* Efeito 3D sutil no mockup */
}

.module-text-box {
    flex: 1;
}

.module-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.module-text-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* =====================
   BONUS SECTION
   ===================== */
.bonus {
    padding: 5rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bonus-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 8px solid var(--color-purple);
}

.bonus-img {
    width: 140px;
    height: auto;
}

.bonus-tag {
    background-color: var(--color-yellow);
    color: var(--text-dark);
    font-family: var(--font-heading);
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.bonus-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* =====================
   DEPOIMENTOS
   ===================== */
.testimonials {
    padding: 5rem 0;
    background-color: white;
}

.testimonial-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.depo-img {
    max-width: 320px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =====================
   FINAL OFFER
   ===================== */
.final-offer {
    padding: 5rem 0;
    background: var(--bg-soft-yellow);
}

.offer-badge-top h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 4px solid var(--color-primary);
}

.offer-header {
    background: var(--bg-soft-blue);
    padding: 2rem;
    text-align: center;
    border-bottom: 2px dashed #E3F2FD;
}

.offer-header h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-body {
    padding: 3rem;
}

.old-price-offer {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.price-big {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.offer-benefits {
    list-style: none;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.offer-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-benefits i {
    color: #10AC84;
    font-size: 1.2rem;
}

.secure-logos {
    max-width: 500px;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-soft-yellow);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.guarantee-selo {
    max-width: 140px;
    /* Aumentado */
    width: 100%;
}

.guarantee-box h5 {
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.guarantee-box p {
    font-size: 0.9rem;
    margin: 0;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =====================
   OFERTA BÁSICA
   ===================== */
.offer-basic {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid #E0E0E0;
    overflow: hidden;
}

.offer-basic-header {
    background: #E0E0E0;
    padding: 1rem;
    text-align: center;
}

.offer-basic-header h4 {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.offer-basic-body {
    padding: 2rem;
    text-align: center;
}

.old-price-basic {
    color: var(--text-muted);
    font-size: 1rem;
}

.new-price-basic {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-purple);
    margin: 0.5rem 0;
}

.basic-desc {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: bold;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #f1f2f6;
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

/* =====================
   FAQ SECTION
   ===================== */
.faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #E3F2FD;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary-dark);
}

.faq-question i {
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--bg-soft-blue);
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Estado Expandido */
.faq-question.active+.faq-answer {
    max-height: 300px;
    /* Suficiente para texto longo */
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* =====================
   UPSELL MODAL (POPUP)
   ===================== */
.upsell-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    /* Desfoque bonito no bg */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.upsell-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.upsell-box {
    background: white;
    width: 90%;
    max-width: 550px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 4px solid var(--color-red);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.upsell-overlay.show .upsell-box {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    line-height: 1;
}

.upsell-header {
    background: var(--color-red);
    color: white;
    padding: 1.5rem;
}

.upsell-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.upsell-body {
    padding: 2.5rem 2rem;
}

.upsell-price {
    font-size: 3.5rem;
    margin-top: 1rem;
    margin-bottom: 0;
    color: white;
}

.w-100 {
    width: 100%;
}

/* Animação quicando pro popup ficar dinâmico */
@keyframes bounce-in {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    80% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounce-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* =====================
   RESPONSIVIDADE (MOBILE)
   ===================== */
@media screen and (max-width: 991px) {
    .headline {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .module-item,
    .module-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }

    .pricing-card {
        padding: 1rem 2rem;
        transform: rotate(0);
    }

    .new-price {
        font-size: 2.5rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .offer-body {
        padding: 1.5rem;
    }
}