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

body {
    font-family: 'Poppins', sans-serif;
    background: #141414;
    color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== UTILITIES ===== */
.text-lime { color: #d9ff36; }

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-block;
    background: #0bd79e;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.cta-btn:hover {
    background: #0ac28d;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(11, 215, 158, 0.3);
}

/* ===== SEÇÃO 1 - HERO ===== */
.hero-section {
    background: #A713DC;
    background-image: url('https://patriciaroberta.com.br/wp-content/uploads/2025/10/background-2.webp');
    background-size: cover;
    background-position: center;
    min-height: 739px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-inner {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text-block {
    flex: 1;
    text-align: center;
}

.hero-h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 44px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0;
}

.hero-h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 44px;
    color: #d9ff36;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.hero-img-block {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    max-width: 400px;
    width: 100%;
}

/* ===== SEÇÃO 2, 4, 8, 11, 16 - TAG ===== */
.tag-section {
    background: #141414;
    text-align: center;
    padding: 0;
}

.tag-img {
    max-width: 100%;
    width: 100%;
}

/* ===== SEÇÃO 3 - INTRO ===== */
.intro-section {
    background: #141414;
    padding: 60px 20px;
}

.intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-p1 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.intro-p2 {
    font-size: 19px;
    color: #ccc;
    line-height: 1.5;
}

.intro-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup-luz {
    max-width: 400px;
    width: 100%;
}

/* ===== SEÇÃO 5 - PROBLEMA ===== */
.problema-section {
    background: #141414;
    padding: 60px 20px;
}

.problema-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.problema-foto {
    flex: 0 0 300px;
}

.problema-foto img {
    border-radius: 12px;
    width: 100%;
}

.problema-content {
    flex: 1;
}

.problema-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.problema-boxes {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.problema-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px 18px;
}

.box-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.problema-box p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.4;
}

.problema-conclusao {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
}

/* ===== SEÇÃO 6 - ESTATÍSTICAS ===== */
.stats-section {
    background: #141414;
    padding: 60px 20px;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.stats-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

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

.stat-box {
    background: rgba(167, 19, 220, 0.15);
    border: 1px solid rgba(167, 19, 220, 0.3);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
}

.stat-numero {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 900;
    color: #d9ff36;
    display: block;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.4;
}

/* ===== SEÇÃO 7 - MAS... ===== */
.mas-section {
    background: #141414;
    padding: 60px 20px;
    min-height: 419px;
    display: flex;
    align-items: center;
}

.mas-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mas-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.mas-text {
    font-size: 17px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.mas-text strong {
    color: #fff;
}

.mas-destaque {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #d9ff36;
}

/* ===== SEÇÃO 9 - SISTEMA ===== */
.sistema-section {
    background: #141414;
    padding: 60px 20px;
}

.sistema-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sistema-logo {
    max-width: 120px;
    margin: 0 auto 30px;
}

.sistema-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sistema-text {
    font-size: 17px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sistema-mockup {
    max-width: 500px;
    margin: 0 auto 30px;
}

.sistema-negativo {
    margin-bottom: 30px;
}

.sistema-negativo p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.8;
}

.sistema-mas {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.sistema-positivo {
    margin-bottom: 30px;
}

.sistema-positivo p {
    font-size: 17px;
    color: #ccc;
    line-height: 2;
}

.sistema-entrega {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sistema-features p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sistema-resultado {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
}

/* ===== SEÇÃO 10 - COMPARAÇÃO ===== */
.comparacao-section {
    background: #141414;
    padding: 60px 20px;
}

.comparacao-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.comparacao-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.comparacao-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.comparacao-col {
    border-radius: 14px;
    padding: 30px 24px;
}

.comparacao-ruim {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.comparacao-bom {
    background: rgba(11, 215, 158, 0.08);
    border: 1px solid rgba(11, 215, 158, 0.25);
}

.comparacao-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.comparacao-ruim h3 { color: #ef4444; }
.comparacao-bom h3 { color: #0bd79e; }

.comparacao-col ul {
    list-style: none;
}

.comparacao-col li {
    font-size: 15px;
    color: #ccc;
    padding: 6px 0;
    padding-left: 8px;
}

.comparacao-ruim li::before {
    content: '•';
    color: #ef4444;
    margin-right: 8px;
}

.comparacao-bom li::before {
    content: '•';
    color: #0bd79e;
    margin-right: 8px;
}

.comparacao-economia {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.comparacao-economia strong {
    color: #d9ff36;
}

/* ===== SEÇÃO 12 - O QUE VOCÊ RECEBE ===== */
.recebe-section {
    background: #141414;
    padding: 60px 20px 20px;
    text-align: center;
}

.recebe-inner {
    max-width: 800px;
    margin: 0 auto;
}

.recebe-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.recebe-sub {
    font-size: 17px;
    color: #ccc;
}

/* ===== SEÇÃO 13 - 4 SEMANAS ===== */
.semanas-section {
    background: #141414;
    padding: 40px 20px 60px;
}

.semanas-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.semana-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(167, 19, 220, 0.08);
    border: 1px solid rgba(167, 19, 220, 0.2);
    border-radius: 14px;
    padding: 24px;
}

.semana-img {
    width: 200px;
    flex-shrink: 0;
    border-radius: 10px;
}

.semana-info {
    flex: 1;
}

.semana-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #d9ff36;
    margin-bottom: 10px;
}

.semana-info p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 4px;
}

/* ===== SEÇÃO 14 - DEPOIMENTOS ===== */
.depo-section {
    background: transparent;
    padding: 60px 20px;
    text-align: center;
}

.depo-inner {
    max-width: 800px;
    margin: 0 auto;
}

.depo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

.depo-text {
    font-size: 17px;
    color: #ccc;
    line-height: 1.6;
}

/* ===== SEÇÃO 15 - BÔNUS ===== */
.bonus-section {
    background: #141414;
    padding: 60px 20px;
}

.bonus-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bonus-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(167, 19, 220, 0.08);
    border: 1px solid rgba(167, 19, 220, 0.25);
    border-radius: 14px;
    padding: 24px;
}

.bonus-img {
    width: 200px;
    flex-shrink: 0;
    border-radius: 10px;
}

.bonus-info {
    flex: 1;
}

.bonus-info p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 4px;
}

.bonus-info p b {
    color: #fff;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.bonus-valor {
    font-weight: 700;
    color: #d9ff36 !important;
    margin-top: 10px !important;
    font-size: 16px !important;
}

.bonus-valor del {
    color: #999;
}

/* ===== SEÇÃO 17 - OFERTA ===== */
.oferta-section {
    background: #141414;
    padding: 60px 20px;
}

.oferta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.oferta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.oferta-text {
    font-size: 17px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.oferta-preco-box {
    background: rgba(167, 19, 220, 0.1);
    border: 2px solid #A713DC;
    border-radius: 18px;
    padding: 40px 30px;
}

.oferta-preco-grande {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #d9ff36;
    line-height: 1;
    margin-bottom: 10px;
}

.oferta-pagamento {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.oferta-de {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 24px;
}

.oferta-de del {
    color: #ef4444;
}

.oferta-nota {
    font-size: 13px;
    color: #999;
    margin-top: 14px;
}

/* ===== SEÇÃO 18 - RECAPITULAÇÃO ===== */
.recap-section {
    background: #141414;
    padding: 60px 20px;
}

.recap-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.recap-img {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.mockup-geral {
    max-width: 350px;
    width: 100%;
}

.recap-content {
    flex: 1;
}

.recap-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.recap-list {
    margin-bottom: 30px;
}

.recap-list p {
    font-size: 16px;
    color: #ccc;
    line-height: 2;
}

.recap-list del {
    color: #999;
}

.recap-preco-grande {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: #d9ff36;
    line-height: 1;
    margin-bottom: 6px;
}

.recap-parcelas {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 24px;
}

.recap-nota {
    font-size: 13px;
    color: #999;
    margin-top: 14px;
    text-align: center;
}

/* ===== SEÇÃO 19 - GARANTIA ===== */
.garantia-section {
    background: #e2f546;
    padding: 50px 20px;
    min-height: 389px;
    display: flex;
    align-items: center;
}

.garantia-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.garantia-esquerda {
    flex: 0 0 200px;
    text-align: center;
}

.garantia-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 33px;
    font-weight: 900;
    color: #141414;
    line-height: 1.2;
    margin-bottom: 16px;
}

.garantia-divider {
    width: 80px;
    height: 3px;
    background: #141414;
    margin: 0 auto;
}

.garantia-direita {
    flex: 1;
}

.garantia-direita p {
    font-size: 16px;
    color: #141414;
    line-height: 1.6;
}

.garantia-direita strong {
    font-weight: 800;
}

/* ===== SEÇÃO 20 - FAQ ===== */
.faq-section {
    background: #000;
    padding: 80px 20px;
    min-height: 800px;
}

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

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    font-size: 22px;
    font-weight: 700;
    color: #d9ff36;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    padding-bottom: 18px;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 22px;
}

.cta-faq {
    display: block;
    text-align: center;
}

/* ===== SEÇÃO 21 - FOOTER ===== */
.footer-section {
    background: transparent;
    padding: 30px 20px;
    text-align: center;
    min-height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    max-width: 100px;
    margin: 0 auto;
    opacity: 0.7;
}

/* ===== RESPONSIVE TABLET ===== */
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-h1, .hero-h2 {
        font-size: 32px;
    }

    .intro-inner {
        flex-direction: column;
        text-align: center;
    }

    .problema-inner {
        flex-direction: column;
    }

    .problema-foto {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .comparacao-grid {
        grid-template-columns: 1fr;
    }

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

    .recap-inner {
        flex-direction: column;
        text-align: center;
    }

    .recap-img {
        flex: none;
    }

    .garantia-inner {
        flex-direction: column;
        text-align: center;
    }

    .semana-card {
        flex-direction: column;
        text-align: center;
    }

    .semana-img {
        width: 150px;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
    }

    .bonus-img {
        width: 150px;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 600px) {
    .hero-h1, .hero-h2 {
        font-size: 24px;
    }

    .hero-mockup {
        max-width: 250px;
    }

    .intro-p1 {
        font-size: 18px;
    }

    .intro-p2 {
        font-size: 15px;
    }

    .mockup-luz {
        max-width: 280px;
    }

    .problema-title {
        font-size: 20px;
    }

    .stats-title, .comparacao-title, .sistema-title,
    .recebe-title, .bonus-title, .oferta-title, .recap-title {
        font-size: 20px;
    }

    .stat-numero {
        font-size: 28px;
    }

    .mas-title {
        font-size: 24px;
    }

    .mas-destaque {
        font-size: 18px;
    }

    .oferta-preco-grande {
        font-size: 56px;
    }

    .recap-preco-grande {
        font-size: 44px;
    }

    .garantia-titulo {
        font-size: 26px;
    }

    .depo-title {
        font-size: 22px;
    }

    .semana-img, .bonus-img {
        width: 120px;
    }

    .cta-btn {
        font-size: 15px;
        padding: 16px 28px;
    }
}