/* ==========================================================================
   RESET & CONFIGURAÇÕES INICIAIS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    background-color: #FFFFFF;
    color: #383838;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================================================
   VARIÁVEIS E TIPOGRAFIA
   ========================================================================== */
:root {
    /* Cores Principais */
    --primary: #008080;
    --primary-light: #41BDBD;
    --primary-lighter: #9BD8D8;
    --primary-dark: #012E2E;

    --secondary: #663EA4;
    --secondary-light: #9269D3;
    --secondary-lighter: #B487FA;
    --secondary-dark: #22123B;
    
    /* Escala de Cinza e Textos */
    --text-dark: #181818;
    --text-medium: #383838;
    --text-light: #FFFFFF;
    
    --bg-light: #F8F8F8;
    --bg-gray: #EEEEEE;
    --bg-dark: #0C0C0C;

    /* Fontes */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-libre: 'Libre Franklin', sans-serif;

    /* Bordas e Sombras */
    --radius-card: 16px;
    --radius-btn: 5px;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-btn: 0 8px 20px rgba(0, 0, 0, 0.2);
    
    /* Espaçamentos Globais */
    --section-padding: 100px 0;
    --container-width: 1140px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.5;
}

.fw-normal {
    font-weight: 400 !important;
}

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

/* ==========================================================================
   LAYOUT GERAL
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   BOTÕES (Padronizados)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    border-radius: var(--radius-btn);
    padding: 24px 54px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-btn);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary, .btn-buy {
    background-image: radial-gradient(at top right, var(--secondary) 0%, var(--secondary-lighter) 100%);
    border-bottom: 4px solid var(--secondary-dark);
}

.btn-secondary {
    background-image: radial-gradient(at top right, var(--primary) 0%, var(--primary-lighter) 100%);
    border-bottom: 4px solid var(--primary-dark);
}

.btn-buy-alt {
    color: #000000;
    background-image: radial-gradient(at top right, #FFFFFF 0%, var(--secondary-lighter) 100%);
    border-bottom: 4px solid var(--secondary-dark);
}

.btn-faq {
    background-image: radial-gradient(at top right, var(--secondary) 0%, var(--secondary-lighter) 100%);
    border-bottom: 4px solid var(--secondary-dark);
    font-size: 16px;
    padding: 16px 32px;
    white-space: nowrap;
    width: auto;
    position: relative;
    z-index: 2;
}

.btn-faq .btn-icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   SEÇÕES DA PÁGINA
   ========================================================================== */

/* 1. HERO */
.hero {
    background-color: var(--primary);
    background-image: url('assets/hero-background.png');
    background-position: top center;
    background-size: cover;
    padding: 145px 0; 
    position: relative;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: flex-start;
}

.hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-logo {
    width: 35%;
    margin-top: -18%;
    margin-bottom: 0;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.hero-title {
    font-size: 48px;
    line-height: 57px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-subtitle {
    margin-top: -4%;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-btn {
    margin-top: -1%;
}

/* 2. MÓDULOS PREVIEW (Jornada) */
.modules-preview {
    background-color: var(--bg-light);
    background-image: url('assets/section-02.png');
    background-position: center center;
    background-size: cover;
    padding: 80px 0;
}

.modules-preview-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.calendar-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.modules-preview-heading {
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 50px auto;
    letter-spacing: -0.5px;
}

.modules-preview-heading strong {
    font-weight: 800;
}

.modules-preview-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 50px;
    align-items: stretch;
}

.preview-card {
    background-color: #FFFFFF;
    padding: 25px 20px;
    border-radius: var(--radius-card);
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.preview-card-icon {
    width: 32px;
    height: 32px;
    background-color: #61DFCA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px #E8EEF8;
    margin-left: 5px;
}

.preview-card-icon svg {
    color: #0BB89B;
    width: 18px;
    height: 18px;
    stroke-width: 4;
}

.preview-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.4;
}

.preview-btn {
    margin-top: 10px;
}

/* 3. PARA QUEM É O CURSO */
.target-audience {
    background-color: var(--primary);
    background-image: url('assets/section-03.png');
    background-position: center center;
    background-size: cover;
    padding: 87px 0 76px 0;
}

.audience-heading {
    text-align: center;
    font-size: 50px;
    line-height: 57px;
    color: var(--text-light);
    margin: 0 10% 4% 10%;
}

.audience-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}

.audience-card {
    flex: 1;
    background-color: transparent;
    background-image: radial-gradient(at top right, var(--secondary) 0%, var(--bg-dark) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

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

.audience-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audience-icon svg {
    width: 38px;
    height: 38px;
    color: var(--text-light);
    stroke-width: 1.5px;
}

.audience-title {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
}

.audience-desc {
    font-size: 14.5px; 
    color: rgba(255, 255, 255, 0.85); 
    line-height: 1.5;
}

/* 4. O QUE VOCÊ IRÁ APRENDER (ACCORDION) */
.learn-modules {
    background-color: var(--bg-light);
    background-image: url('assets/section-04.png');
    background-position: center right;
    background-size: cover;
    padding: 110px 0;
}

.learn-container {
    max-width: 842px;
}

.learn-heading {
    text-align: center;
    font-size: 48px;
    line-height: 57px;
    color: var(--text-dark);
    margin: 0 0 50px 0;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-image: radial-gradient(at top right, var(--primary) 0%, #41BDBD 100%);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.accordion-title {
    width: 100%;
    text-align: left;
    padding: 25px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.accordion-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.accordion-item:not(.active) .accordion-icon svg {
    transform: rotate(-90deg);
}

.accordion-content {
    padding: 0 25px 25px 25px;
    color: var(--text-light);
    font-size: 16px;
}

/* 5. OFERTA (PRICING) */
.pricing {
    background-color: var(--bg-gray);
    background-image: url('assets/section-02.png');
    background-position: center left;
    background-size: cover;
    padding: 87px 0 76px 0;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: stretch;
    max-width: 1197px;
}

.pricing-card, .benefits-card {
    width: 50%;
    border-radius: var(--radius-card);
    padding: 45px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.pricing-card {
    background-image: linear-gradient(180deg, var(--primary) 0%, #37B8B8 100%);
    color: var(--text-light);
}

.benefits-card {
    background-image: linear-gradient(180deg, var(--secondary) 0%, #9269D3 100%);
    color: var(--text-light);
}

.pricing-offer-text {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 52px; 
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: var(--text-light);
}

.pricing-offer-text strong {
    font-weight: 700;
}

.pricing-alert {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
}

.pricing-card p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.pricing-list {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pricing-list li {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.pricing-list .full-width-item {
    grid-column: 1 / -1;
    justify-content: center; /* Centralizado no Desktop */
}

.pricing-list i, .pricing-list svg {
    color: var(--text-light);
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.pricing-old {
    font-size: 24px;
    letter-spacing: 1px;
    margin-top: 15px;
}

.pricing-total {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px !important;
}

.pricing-highlight {
    text-align: center;
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-cash {
    font-family: var(--font-heading);
    font-size: 44px !important;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 5px !important;
}

.pricing-installments {
    font-size: 22px !important;
    margin-bottom: 35px !important;
}

.pricing-card .btn, .benefits-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Beneficios Card Internos */
.benefits-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 42px; 
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--text-light);
}

.benefits-heading strong {
    font-weight: 700;
}

.benefits-list {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    font-size: 19px;
    display: flex;
    align-items: flex-start;
    color: var(--text-light);
    line-height: 1.4;
}

.benefits-list i, .benefits-list svg {
    color: var(--text-light);
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px; 
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0; 
}

.benefits-alert-box {
    text-align: center;
    margin-bottom: 30px;
    background: transparent; 
    padding: 0;
}

.benefits-alert-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light); 
}

.benefits-alert-box p {
    color: var(--text-light);
    font-size: 17px;
}

/* 6. SOBRE O CRIADOR */
.about {
    background-color: var(--bg-light);
    background-image: url('assets/section-06.png');
    background-position: center center;
    background-size: cover;
    padding: 120px 0;
}

.about-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 85px;
    border-radius: 10px;
    background: linear-gradient(46deg, #0B0B0B 3.8%, #003f3f 100%);
    border: 0.897px solid #5e5e5e;
    box-shadow: var(--shadow-card);
}

.about-content {
    max-width: 475px;
    color: var(--text-light);
    padding: 60px 0;
}

.about-title {
    font-size: 46px;
    line-height: 48px;
    letter-spacing: -1.4px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-desc {
    font-family: var(--font-sora);
    font-size: 15px;
}

.about-image-wrapper {
    max-width: 553px;
    margin: -40px 0;
}

.about-image {
    border-radius: 22px;
    width: 100%;
}

/* 7. FAQ */
.faq {
    background-color: #FCFCFC;
    padding: 60px 0;
    position: relative;
}

.faq-overlay {
    position: absolute;
    inset: 0;
    background-color: #FCFCFC;
    opacity: 0.51;
    pointer-events: none;
}

.faq-grid {
    max-width: 1240px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.faq-header {
    width: 40%;
    padding: 10px 60px;
    position: relative;
}

.faq-mark {
    position: absolute;
    top: -80px;
    left: -10px;
    z-index: 0;
    font-family: var(--font-libre);
    font-size: 350px;
    font-weight: 900;
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
    line-height: 1;
    pointer-events: none;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 500;
    line-height: 49px;
    color: #000000;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 2;
}

.faq-accordion {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
}

.faq-item {
    background-color: #008080;
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    text-align: left;
    background-color: transparent;
    padding: 20px;
    color: var(--text-light);
    font-family: var(--font-sora);
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    color: #F6D874;
}

.faq-item.active .faq-icon svg {
    color: #F6D874;
    transform: rotate(90deg);
}

.faq-content {
    background-color: #FFFFFF;
    color: var(--text-medium);
    font-family: var(--font-sora);
    font-size: 16px;
    padding: 0 20px 20px 20px;
}

.faq-content p {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* 8. CONTATO E FOOTER */
.contact {
    background-color: var(--primary);
    padding: 32px 0; 
    text-align: center;
}

.contact-text {
    margin: 0; 
    font-size: 19px;
    color: var(--text-light);
}

.contact-text a {
    transition: opacity 0.3s ease;
}

.contact-text a:hover {
    opacity: 0.8;
}

.site-footer {
    background-color: var(--text-light);
    padding: 20px 0;
    text-align: center;
}

.footer-text {
    font-size: 19px;
    color: #000000;
    margin: 0 0 -1% 0;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLETS)
   ========================================================================== */

@media (max-width: 1024px) {
    .pricing-grid {
        flex-direction: column;
        max-width: 800px;
        margin: 0 auto;
    }
    .pricing-card, .benefits-card {
        width: 100%;
    }
    .about-container {
        padding: 50px;
        gap: 30px;
    }
    .about-image-wrapper {
        margin: -60px 0;
    }
    .faq-grid {
        flex-direction: column;
    }
    .faq-header, .faq-accordion {
        width: 100%;
    }
    .faq-header {
        position: relative;
        text-align: center;
    }
    .faq-mark {
        display: none; 
    }
}

@media (max-width: 767px) {
    .hero {
        background-image: url('assets/hero-mobile.png'); 
        padding: 380px 20px 60px 20px; 
        text-align: center;
        background-position: top center;
    }
    .hero-container {
        justify-content: center;
    }
    .hero-content {
        width: 100%;
        align-items: center;
    }
    .hero-logo {
        width: 50%;
        max-width: 200px;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 28px;
        line-height: 1.3em;
    }
    .hero-subtitle {
        font-size: 16px;
        margin-top: 0;
    }
    .btn {
        width: 100%;
        padding: 20px 20px;
        font-size: 16px; 
    }

    .modules-preview { padding: 50px 0; }
    .modules-preview-date { font-size: 16px; margin-bottom: 20px; }
    .modules-preview-heading { font-size: 26px; line-height: 1.3em; margin: 0 0 30px 0; }
    .modules-preview-grid { flex-direction: column; gap: 15px; }
    .preview-card { width: 100%; flex-direction: row; align-items: center; margin-bottom: 0; padding: 20px; }
    .preview-card-icon { margin-bottom: 0; width: 40px; height: 40px; }

    .target-audience { padding: 50px 0; }
    .audience-heading { font-size: 32px; margin: 0 0 30px 0; }
    .audience-grid { flex-direction: column; gap: 20px; }
    .audience-card { width: 100%; margin-bottom: 0; padding: 30px 20px; }
    
    .learn-modules { padding: 50px 0; }
    .learn-heading { font-size: 32px; line-height: 1.3em; margin: 0 0 30px 0; }
    .accordion-title { font-size: 16px; padding: 20px; }

    .pricing { padding: 50px 0; }
    .pricing-grid { gap: 30px; } 
    .pricing-card, .benefits-card { padding: 30px 20px; width: 100%; }
    .pricing-offer-text { font-size: 32px; line-height: 1.2em; margin-bottom: 15px; }
    .pricing-alert { font-size: 16px; margin-bottom: 20px; }
    .pricing-card p { font-size: 16px; }
    
    .pricing-list { grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
    .pricing-list li { font-size: 16px; }
    
    /* CORREÇÃO DO BÔNUS: Sobrescreve o center do desktop para a esquerda no mobile */
    .pricing-list .full-width-item { justify-content: flex-start; }
    
    .pricing-old { font-size: 20px; margin-top: 20px; }
    .pricing-total { font-size: 22px; margin-bottom: 15px !important; }
    .pricing-highlight { font-size: 20px; margin-bottom: 15px; }
    .pricing-cash { font-size: 36px !important; margin: 10px 0 !important; }
    .pricing-installments { font-size: 18px !important; margin-bottom: 30px !important; }

    .benefits-heading { font-size: 28px; line-height: 1.3em; margin-bottom: 25px; }
    .benefits-list { gap: 12px; margin-bottom: 25px; }
    .benefits-list li { font-size: 16px; }
    .benefits-list i, .benefits-list svg { width: 20px !important; height: 20px !important; min-width: 20px; min-height: 20px; margin-right: 10px; }
    .benefits-alert-box { padding: 0; margin-bottom: 25px; }
    .benefits-alert-title { font-size: 18px; }
    .benefits-alert-box p { font-size: 15px; }

    .about { padding: 50px 0; }
    .about-container { flex-direction: column; padding: 0 20px 30px 20px; text-align: center; gap: 20px; }
    .about-image-wrapper { margin: -70px auto 30px auto; order: -1; width: 80%; max-width: 260px; } 
    .about-content { padding: 0; }
    .about-title { font-size: 32px; line-height: 1.2em; margin-bottom: 15px; }
    .about-desc { font-size: 15px; }

    .faq { padding: 50px 0; }
    .faq-grid { gap: 30px; }
    .faq-title { font-size: 32px; margin-bottom: 20px; }
    .btn-faq { width: 100%; justify-content: center; } 
    .faq-toggle { font-size: 16px; padding: 20px; }
    .faq-content { font-size: 15px; padding: 0 20px 20px 20px; }
    
    .contact { padding: 30px 0; }
    .contact-text { font-size: 15px; margin: 0; display: flex; flex-direction: column; gap: 10px; } 
    .contact-text a { display: block; }
    .desktop-separator { display: none; } 
    .footer-text { font-size: 14px; }
}