/* VARIÁVEIS DE CORES: Clean, moderno, com amarelo suave */
:root {
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --accent-yellow: #f59e0b;
    /* Amarelo menos brutal, mais clean (amber-500) */
    --accent-yellow-hover: #d97706;
    --border-color: #e2e8f0;
    --dark-section: #0f172a;
    --success-green: #10b981;
}

.top-banner {
    background-color: var(--accent-yellow);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.top-banner span {
    font-variant-numeric: tabular-nums;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* UTILITÁRIOS */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #ffffff !important;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--dark-section);
}

.highlight {
    color: var(--accent-yellow);
    font-weight: 800;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

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

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

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

/* BOTÃO CTA */
.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    background-color: var(--accent-yellow);
    color: #ffffff;
    text-align: center;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.cta-button:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* SEÇÃO 1: HERO */
.hero {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        width: 100%;
    }

    .cta-button {
        margin-left: 0;
    }
}

.badge {
    display: inline-block;
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--accent-yellow-hover);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-mockup-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-topics {
    margin-top: 32px;
    width: 100%;
}

.topics-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

@media (min-width: 992px) {
    .topics-grid {
        justify-content: flex-start;
    }
}

.topic-tag {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.topic-tag:hover {
    background-color: var(--accent-yellow);
    color: #fff;
    border-color: var(--accent-yellow);
}

/* SEÇÃO 2: MÓDULOS */
.modules {
    padding: 80px 0;
}

.card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* SEÇÃO: PARA QUEM É - MODERN CARDS */
.who-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--accent-yellow);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
}

.who-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.who-card p {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* SEÇÃO 3: BENEFÍCIOS */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
}

.benefit-item .check {
    background-color: var(--success-green);
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* SEÇÃO 4: BÔNUS */
.bonuses {
    padding: 80px 0;
}

.bonuses-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
}

.bonus-badge {
    background-color: var(--accent-yellow);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

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

.bonus-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* SEÇÃO 5: OFERTA */
.offer {
    padding: 100px 0;
}

.offer-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.price-card {
    background: linear-gradient(145deg, var(--dark-section), #1e293b);
    color: #ffffff;
    border: 2px solid var(--accent-yellow);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.25);
    position: relative;
    overflow: hidden;
}

.card-offer-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.timer-mini-card {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: var(--accent-yellow);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.timer-mini-card p {
    margin: 0;
}

.offer-deliverables {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    padding: 0;
}

.offer-deliverables li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #e2e8f0;
    font-weight: 500;
}

/* CTA específico da oferta */
.price-card .cta-button {
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    border: none;
    transition: all 0.3s ease;
}

.price-card .cta-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.anchor-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 600;
}

.anchor-price span {
    text-decoration: line-through;
    color: #ef4444;
    /* red */
}

.real-price-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.price {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.payment-info {
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 32px;
}

.timer-box {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
}

.timer-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.timer {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
    font-variant-numeric: tabular-nums;
}

.security-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 24px;
}

/* SEÇÃO 6: CARROSSEL */
.carousel-section {
    padding: 80px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}


.carousel-slide p {
    font-weight: 600;
    color: var(--text-dark);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.control-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.control-btn:hover {
    background: var(--bg-light);
}

/* SEÇÃO 7: DEPOIMENTOS */
.testimonials {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.depo-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.depo-author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* SEÇÃO 8: GARANTIA */
.guarantee {
    padding: 80px 0;
}

.guarantee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 700px;
}

@media (min-width: 768px) {
    .guarantee-container {
        flex-direction: row;
        text-align: left;
    }
}

.guarantee-icon {
    font-size: 5rem;
    line-height: 1;
}

.guarantee-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.guarantee-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.guarantee-text strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* SEÇÃO 9: FAQ */
.faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 700px;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

.faq-question.active::after {
    content: '−';
}

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

.faq-question.active+.faq-answer {
    max-height: 300px;
}

/* SEÇÃO 10: RODAPÉ */
.footer {
    padding: 48px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer .disclaimer {
    margin-top: 16px;
    color: #94a3b8;
    font-size: 0.8rem;
}