/* ========================================
   CSS Reset & Variables
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-escuro: #525542;
    --verde-cta: #3F933B;
    --verde-cta-hover: #358030;
    --rosa-claro: #FEFAFF;
    --branco: #FFFFFF;
    --texto: #242424;
    --texto-claro: #666666;

    --font-titulo: 'Bodoni Moda', sans-serif;
    --font-corpo: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-corpo);
    color: var(--texto);
    line-height: 1.6;
    background-color: var(--rosa-claro);
}

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

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

ul {
    list-style: none;
}

/* ========================================
   Header Bar
======================================== */
.header-bar {
    background-color: var(--verde-escuro);
    height: 40px;
    width: 100%;
}

/* ========================================
   Buttons
======================================== */
.btn-cta {
    display: inline-block;
    background-color: var(--verde-cta);
    color: var(--branco);
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-cta:hover {
    background-color: var(--verde-cta-hover);
    transform: translateY(-2px);
}

.btn-cta.btn-small {
    padding: 12px 30px;
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: inline-block;
    background-color: var(--branco);
    color: var(--texto);
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-whatsapp:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding: 60px 5% 40px;
    background-color: var(--rosa-claro);
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero .logo {
    width: 60px;
    margin: 0 auto 30px;
    opacity: 0.7;
}

.hero .subtitulo {
    color: var(--texto-claro);
    font-size: 1rem;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: var(--font-titulo);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--verde-escuro);
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero .video-container {
    margin-bottom: 30px;
}

/* ========================================
   Video Container
======================================== */
.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 600px) {
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* ========================================
   Badges Section
======================================== */
.badges-section {
    padding: 40px 5%;
    background-color: var(--rosa-claro);
    text-align: center;
}

.badges-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 20px;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.badge {
    font-size: 0.85rem;
    color: var(--texto);
    padding: 10px 0;
    border-left: 2px solid var(--verde-escuro);
    padding-left: 15px;
}

/* ========================================
   Para Quem Section
======================================== */
.para-quem {
    padding: 80px 5%;
    background-color: var(--verde-escuro);
    text-align: center;
}

.para-quem h2 {
    font-family: var(--font-titulo);
    font-size: 2.8125rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 50px;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: var(--branco);
    border-radius: 12px;
    padding: 35px 25px;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 15px;
}

.card p {
    font-size: 0.9rem;
    color: var(--texto-claro);
    line-height: 1.7;
}

/* ========================================
   Módulos Section (Accordion)
======================================== */
.modulos {
    padding: 80px 5%;
    background-color: var(--rosa-claro);
    text-align: center;
}

.modulos h2 {
    font-family: var(--font-titulo);
    font-size: 2.6875rem;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 20px;
}

.modulos .btn-cta {
    margin-bottom: 40px;
}

.modulos-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.modulo {
    background-color: var(--branco);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.modulo-titulo {
    background-color: var(--verde-escuro);
    color: var(--branco);
    padding: 20px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.modulo-titulo:hover {
    background-color: #464839;
}

.modulo-titulo::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.modulo.active .modulo-titulo::after {
    content: '−';
}

.modulo-conteudo {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.modulo.active .modulo-conteudo {
    max-height: 500px;
}

.modulo-conteudo ul {
    padding: 20px 25px;
    list-style: none;
}

.modulo-conteudo li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--texto-claro);
    border-bottom: 1px solid #eee;
}

.modulo-conteudo li:last-child {
    border-bottom: none;
}

/* ========================================
   Depoimentos Section
======================================== */
.depoimentos {
    padding: 80px 5%;
    background-color: var(--verde-escuro);
    text-align: center;
}

.depoimentos h2 {
    font-family: var(--font-titulo);
    font-size: 2.8125rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 50px;
}

.depoimentos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.depoimento {
    background-color: var(--branco);
    border-radius: 12px;
    padding: 30px;
    max-width: 280px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.depoimento p {
    font-size: 0.9rem;
    color: var(--texto-claro);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.depoimento .autor {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.depoimento .autor strong {
    display: block;
    color: var(--verde-escuro);
    font-size: 0.9rem;
}

.depoimento .autor span {
    font-size: 0.8rem;
    color: var(--texto-claro);
}

/* ========================================
   Possibilidades Section
======================================== */
.possibilidades {
    padding: 80px 5%;
    background-color: var(--verde-escuro);
    text-align: center;
}

.possibilidades h2 {
    font-family: var(--font-titulo);
    font-size: 2.8125rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 40px;
}

.possibilidades .cards-container {
    margin-bottom: 40px;
}

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

.possibilidades .destaque {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
}

.destaque-box {
    background-color: var(--branco);
    border-radius: 50px;
    padding: 20px 40px;
    display: inline-block;
}

.destaque-box p {
    font-family: var(--font-titulo);
    font-size: 1.3rem;
    color: var(--verde-escuro);
}

/* ========================================
   Mentoria Section
======================================== */
.mentoria {
    padding: 80px 5%;
    background-color: var(--branco);
    text-align: center;
}

.mentoria h2 {
    font-family: var(--font-titulo);
    font-size: 2.52rem;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 20px;
}

.mentoria p {
    color: var(--texto-claro);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto 15px;
}

.mentoria .btn-whatsapp {
    margin-top: 20px;
}

/* ========================================
   Bônus Section
======================================== */
.bonus {
    padding: 80px 5%;
    background-color: var(--verde-escuro);
    text-align: center;
}

.bonus h2 {
    font-family: var(--font-titulo);
    font-size: 3.55rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 15px;
}

.bonus-intro {
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.bonus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-item {
    background-color: var(--branco);
    border-radius: 12px;
    padding: 30px;
    max-width: 300px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.bonus-tag {
    display: inline-block;
    background-color: var(--verde-cta);
    color: var(--branco);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 15px;
}

.bonus-item ul {
    padding-left: 20px;
    list-style: disc;
}

.bonus-item li {
    font-size: 0.9rem;
    color: var(--texto-claro);
    margin-bottom: 8px;
}

.beneficios {
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.beneficios p {
    color: var(--branco);
    margin-bottom: 15px;
}

.beneficios ul {
    padding-left: 20px;
    list-style: disc;
}

.beneficios li {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ========================================
   Preço Section
======================================== */
.preco {
    padding: 60px 5%;
    background-color: var(--verde-escuro);
    text-align: center;
}

.preco .de {
    color: var(--branco);
    font-size: 1rem;
    margin-bottom: 10px;
}

.preco .de s {
    opacity: 0.8;
}

.preco .valor {
    font-family: var(--font-titulo);
    font-size: 3rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 30px;
}

.preco .btn-cta {
    background-color: var(--verde-cta);
    color: var(--branco);
}

/* ========================================
   Recapitulando Section
======================================== */
.recapitulando {
    padding: 80px 5%;
    background-color: var(--verde-escuro);
    text-align: center;
}

.logo-recap {
    width: 60px;
    margin: 0 auto 30px;
    filter: brightness(0) invert(1);
}

.recapitulando h2 {
    font-family: var(--font-titulo);
    font-size: 3rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 40px;
}

.recap-box {
    background-color: var(--branco);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

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

.recap-lista li {
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.recap-lista li:last-child {
    border-bottom: none;
}

.recap-preco {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--verde-cta);
}

/* ========================================
   Certificado Section
======================================== */
.certificado {
    padding: 80px 5%;
    background-color: var(--verde-escuro);
    text-align: center;
}

.certificado h2 {
    font-family: var(--font-titulo);
    font-size: 3.125rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 20px;
}

.certificado p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.certificado .btn-cta {
    margin-top: 20px;
    background-color: var(--branco);
    color: var(--verde-escuro);
}

/* ========================================
   Professoras Section
======================================== */
.professoras {
    padding: 80px 5%;
    background-color: var(--branco);
    text-align: center;
}

.professoras > h2 {
    font-family: var(--font-titulo);
    font-size: 2rem;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 50px;
}

.professora-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--verde-escuro);
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 30px;
}

.professora-image {
    flex: 1;
    min-width: 250px;
}

.professora-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professora-info {
    flex: 2;
    padding: 40px;
    text-align: left;
    min-width: 300px;
}

.professora-info h3 {
    font-family: var(--font-titulo);
    font-size: 2.62rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 15px;
}

.professora-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========================================
   FAQ Section
======================================== */
.faq {
    padding: 80px 5%;
    background-color: var(--verde-escuro);
}

.faq h2 {
    font-family: var(--font-titulo);
    font-size: 2.62rem;
    font-weight: 600;
    color: var(--branco);
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: var(--branco);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--verde-escuro);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--texto-claro);
    font-size: 0.9rem;
}

/* ========================================
   Contato Section
======================================== */
.contato {
    padding: 40px 5%;
    background-color: var(--verde-escuro);
    text-align: center;
}

/* ========================================
   Footer
======================================== */
.footer {
    padding: 30px 5%;
    background-color: #3d3f33;
    text-align: center;
}

.footer p {
    color: var(--branco);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .professora-card {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        border-left: none;
        border-top: 2px solid var(--verde-escuro);
        padding-left: 0;
        padding-top: 10px;
    }

    .para-quem h2,
    .modulos h2,
    .depoimentos h2,
    .possibilidades h2,
    .mentoria h2,
    .bonus h2,
    .recapitulando h2,
    .certificado h2,
    .professoras > h2,
    .faq h2 {
        font-size: 1.5rem;
    }

    .preco .valor {
        font-size: 2.5rem;
    }

    .btn-cta,
    .btn-whatsapp {
        padding: 14px 36px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.3rem;
    }

    .card,
    .bonus-item,
    .depoimento {
        padding: 25px 20px;
    }

    .professora-info,
    .recap-box {
        padding: 30px 20px;
    }
}
