/* ============================================
   PÁGINA DE APRESENTAÇÃO DO CURSO
   ============================================ */

/* Reset específico para a página de apresentação */
.apresentacao-page {
    font-family: 'Montserrat', sans-serif;
    background-color: #F0F0DA;
    color: #191915;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: block;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */

.header-apresentacao {
    background-color: #C4C4B0;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #191915;
    flex-wrap: wrap;
    gap: 12px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.campus-logo {
    height: 60px;
    width: auto;
}

.header-logo-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #191915;
    letter-spacing: 0.05em;
}

.header-curso-label {
    font-weight: 300;
}

.header-curso-title {
    font-weight: 700;
}

.header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191915;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 0;
}

.nav-link-header svg {
    width: 18px;
    height: 18px;
    color: #191915;
}

.nav-link-header:hover {
    opacity: 0.7;
}

.nav-link-header.active {
    font-weight: 600;
}

/* Créditos no desktop: só texto, sem ícone (ícone fica no menu hambúrguer no mobile) */
.nav-link-creditos {
    gap: 0;
}

/* Barra mobile: ícone home + hambúrguer (visível só em telas pequenas) */
.header-mobile-toolbar {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-link-home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #191915;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.nav-link-home-icon:hover {
    opacity: 0.75;
    background-color: rgba(25, 25, 21, 0.06);
}

.nav-link-home-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.header-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: 0;
    border: none;
    background: transparent;
    color: #191915;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.header-menu-toggle:hover {
    background-color: rgba(25, 25, 21, 0.06);
}

.header-menu-toggle svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Drawer do menu mobile */
.header-mobile-drawer[hidden] {
    display: none !important;
}

.header-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.header-mobile-drawer:not([hidden]) {
    pointer-events: auto;
}

.header-mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(25, 25, 21, 0.45);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.header-mobile-drawer-panel {
    position: relative;
    z-index: 1;
    width: min(320px, 88vw);
    max-height: 100vh;
    overflow-y: auto;
    background: #F0F0DA;
    border-left: 2px solid #191915;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    padding: 24px 20px 32px;
    gap: 4px;
}

.header-mobile-drawer-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #191915;
    text-decoration: none;
    padding: 14px 12px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.header-mobile-drawer-link:hover {
    background-color: rgba(25, 25, 21, 0.08);
}

.header-mobile-drawer-link--active {
    font-weight: 700;
    background-color: rgba(25, 25, 21, 0.06);
}

/* Header fica acima do overlay para o hambúrguer poder fechar o menu */
body.header-drawer-open .header-apresentacao {
    position: relative;
    z-index: 10001;
}

.header-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: -8px -8px 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(25, 25, 21, 0.15);
}

.header-mobile-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: #191915;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.header-mobile-drawer-close:hover {
    background-color: rgba(25, 25, 21, 0.08);
}

.header-mobile-drawer-close svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* ============================================
   HERO BANNER
   ============================================ */

.hero-banner {
    background-color: #F0F0DA;
    padding: 80px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.hero-content-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    width: 100%;
}

/* Logo do Curso com Caixa */
.logo-curso-box {
    background-color: #F0F0DA;
    border: 4px solid #191915;
    border-radius: 16px;
    padding: 40px 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-curso-imagem {
    max-width: 500px;
    height: auto;
    display: block;
}

.hero-subtitle-box {
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.3;
    color: #191915;
    margin: 0;
    text-align: left;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.apresentacao-main {
    background-color: #FFFFFF;
    padding: 80px 100px 100px;
}

.apresentacao-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* ============================================
   SEÇÃO APRESENTAÇÃO
   ============================================ */

.apresentacao-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.25;
    color: #191915;
    margin: 0 0 24px 0;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 3px solid #191915;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.structure-section .section-title {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-bottom: none;
    padding-bottom: 0;
    justify-content: flex-start;
    font-size: 21px;
}

.structure-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.text-content p svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.module-number-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.text-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #191915;
    margin: 0;
    text-align: justify;
}

.text-content p strong {
    font-weight: 700;
}

/* ============================================
   ESTRUTURA DO CURSO
   ============================================ */

.structure-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
}

/* ============================================
   MODULE CARDS
   ============================================ */

.module-card {
    background-color: #F0F0DA;
    border: 3px solid #191915;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 350px;
    height: 433px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

/* Estilos específicos para os cards dos módulos na página de apresentação */
.apresentacao-page .module-card .apresentacao-module-label,
.apresentacao-page .module-card span.apresentacao-module-label {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    font-size: 27px !important;
    line-height: 32px !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: #191915 !important;
    padding-bottom: 16px !important;
    border-bottom: 3px solid !important;
    width: 100% !important;
    text-align: center !important;
}

.apresentacao-page .module-card .apresentacao-module-name,
.apresentacao-page .module-card h3.apresentacao-module-name {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-size: 27px !important;
    line-height: 32px !important;
    letter-spacing: 0 !important;
    color: #191915 !important;
    margin: 0 !important;
    text-align: center !important;
}

/* Cores das linhas divisórias para cada módulo */
.module-card.module-1 .apresentacao-module-label {
    border-bottom-color: #FBB934;
}

.module-card.module-2 .apresentacao-module-label {
    border-bottom-color: #5B9BD5;
}

.module-card.module-3 .apresentacao-module-label {
    border-bottom-color: #D06B64;
}

.module-card.module-4 .apresentacao-module-label {
    border-bottom-color: #6BAA8E;
}

.start-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.btn-start-all {
    padding: 16px 40px;
    border: 3px solid #191915;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #191915;
    background-color: #F0F0DA;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 4px 4px 0px #191915;
}

.btn-start-all:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #191915;
    background-color: #FFC84A;
}

.btn-start-all:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #191915;
}

/* Botão Continuar */
.continue-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-continue {
    padding: 16px 40px;
    border: 3px solid #191915;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background-color: #FBB934;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 4px 4px 0px #191915;
}

.btn-continue:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #191915;
    background-color: #FFC84A;
}

.btn-continue:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #191915;
}

/* Seção Slogan */
.slogan-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 48px 0;
}

.slogan-line {
    width: 200px;
    height: 2px;
    background-color: #191915;
    border: none;
    margin: 0;
}

.slogan-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.slogan-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: #191915;
    margin: 0;
    text-align: center;
}

/* Subtítulo */
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: #191915;
    margin: 32px 0 16px;
}

/* Botões dos Módulos */
.btn-module {
    padding: 16px 40px;
    border: 3px solid #191915;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 4px 4px 0px #191915;
}

.btn-module:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #191915;
}

.btn-module:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #191915;
}

.btn-yellow {
    background-color: #FBB934;
    color: #FFFFFF;
}

.btn-yellow:hover {
    background-color: #FFC84A;
}

.btn-blue {
    background-color: #5B9BD5;
    color: #FFFFFF;
}

.btn-blue:hover {
    background-color: #6CAAE0;
}

.btn-red {
    background-color: #D06B64;
    color: #FFFFFF;
}

.btn-red:hover {
    background-color: #DB7C75;
}

.btn-green {
    background-color: #6BAA8E;
    color: #FFFFFF;
}

.btn-green:hover {
    background-color: #7CB99E;
}
/* ============================================
   FOOTER
   ============================================ */

.footer-apresentacao {
    background-color: #FFFFFF;
    padding: 60px 100px 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-content-apresentacao {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 0 auto 60px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.footer-section-apresentacao {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-section-apresentacao:first-child {
    flex-shrink: 0;
}

.footer-section-apresentacao:last-child {
    flex: 1;
}

.footer-label-apresentacao {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #191915;
    margin: 0;
    text-align: center;
}

.footer-logos-apoio-apresentacao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.footer-logo-img-apresentacao {
    max-width: 165px;
    height: auto;
    object-fit: contain;
}

.footer-logos-realizacao-apresentacao {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 24px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.footer-logo-realizacao-apresentacao {
    height: 66px;
    width: auto;
    object-fit: contain;
}

.footer-bottom-apresentacao {
    height: 48px;
    background-color: #373731;
    margin: 0 -100px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

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

@media (max-width: 768px) {
    .header-apresentacao {
        padding: 12px 16px;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .header-logo-text {
        font-size: 12px;
        flex: 1;
        min-width: 0;
    }

    .header-logo {
        flex: 1;
        min-width: 0;
    }

    /* Desktop: links em linha; mobile: esconde e usa home + hambúrguer */
    .header-nav-desktop {
        display: none !important;
    }

    .header-mobile-toolbar {
        display: flex;
    }

    body.encerramento-page .header-apresentacao {
        padding: 12px 16px;
    }

    .campus-logo {
        height: 48px;
        max-width: min(100%, 200px);
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .header-apresentacao {
        padding: 10px 12px;
    }

    .header-logo-text {
        font-size: 11px;
    }

    .campus-logo {
        height: 40px;
    }
}

@media (max-width: 1200px) {
    .hero-banner {
        padding: 60px 60px;
    }

    .hero-content {
        gap: 60px;
    }

    .apresentacao-main {
        padding: 60px 60px 80px;
    }

    .footer-apresentacao {
        padding: 48px 60px 0;
    }

    .footer-bottom-apresentacao {
        margin: 0 -60px;
    }

    .modules-grid {
        gap: 24px;
    }

    .text-content {
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .hero-banner {
        padding: 48px 40px;
    }

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

    .logo-curso {
        flex-direction: column;
        gap: 16px;
    }

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

    .apresentacao-main {
        padding: 48px 40px 60px;
    }

    .apresentacao-container {
        gap: 60px;
    }

    .section-title {
        font-size: 28px;
    }

    .structure-section .section-title {
        font-size: 21px;
    }

    .text-content p {
        font-size: 18px;
        text-align: left;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .module-card {
        width: 100%;
        height: auto;
        min-height: 280px;
    }

    .footer-apresentacao {
        padding: 40px 40px 0;
    }

    .footer-content-apresentacao {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-bottom-apresentacao {
        margin: 0 -40px;
    }
}

@media (max-width: 640px) {
    .hero-banner {
        padding: 32px 24px;
        min-height: 320px;
    }

    .hero-content {
        gap: 32px;
    }

    .logo-squares {
        grid-template-columns: repeat(2, 40px);
        grid-template-rows: repeat(2, 40px);
        gap: 6px;
    }

    .square {
        width: 40px;
        height: 40px;
    }

    .curso-text {
        font-size: 22px;
    }

    .hesitacao-text,
    .vacinal-text {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .apresentacao-main {
        padding: 40px 24px 48px;
    }

    .apresentacao-container {
        gap: 48px;
    }

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

    .structure-section .section-title {
        font-size: 21px;
    }

    .text-content {
        gap: 20px;
    }

    .text-content p {
        font-size: 18px;
    }

    .slogan-section {
        margin: 40px 0;
    }

    .slogan-line {
        width: 150px;
    }

    .slogan-text {
        font-size: 18px;
    }

    .module-card {
        padding: 24px 20px;
        gap: 24px;
        width: 100%;
        height: auto;
        min-height: 240px;
    }

    .apresentacao-page .module-card .apresentacao-module-label,
    .apresentacao-page .module-card span.apresentacao-module-label {
        font-size: 27px !important;
        line-height: 32px !important;
        font-weight: 500 !important;
        letter-spacing: 0.16em !important;
        text-transform: uppercase !important;
    }

    .apresentacao-page .module-card .apresentacao-module-name,
    .apresentacao-page .module-card h3.apresentacao-module-name {
        font-size: 27px !important;
        line-height: 32px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
    }

    .btn-module {
        padding: 12px 28px;
        font-size: 14px;
    }

    .footer-apresentacao {
        padding: 32px 24px 0;
    }

    .footer-content-apresentacao {
        gap: 24px;
        margin-bottom: 32px;
    }

    .footer-logos-realizacao-apresentacao {
        gap: 20px 16px;
    }

    .footer-logo-realizacao-apresentacao {
        height: 55px;
    }

    .footer-logo-img-apresentacao {
        max-width: 143px;
    }

    .footer-bottom-apresentacao {
        margin: 0 -24px;
        height: 40px;
    }
}

/* Regra final com máxima especificidade para garantir que os estilos sejam aplicados */
body.apresentacao-page article.module-card.module-1 .card-header span.apresentacao-module-label,
body.apresentacao-page article.module-card.module-2 .card-header span.apresentacao-module-label,
body.apresentacao-page article.module-card.module-3 .card-header span.apresentacao-module-label,
body.apresentacao-page article.module-card.module-4 .card-header span.apresentacao-module-label {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 27px !important;
    line-height: 32px !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
}

body.apresentacao-page article.module-card.module-1 .card-header h3.apresentacao-module-name,
body.apresentacao-page article.module-card.module-2 .card-header h3.apresentacao-module-name,
body.apresentacao-page article.module-card.module-3 .card-header h3.apresentacao-module-name,
body.apresentacao-page article.module-card.module-4 .card-header h3.apresentacao-module-name {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 27px !important;
    line-height: 32px !important;
    letter-spacing: 0 !important;
}

/* ============================================
   PÁGINA DE INTRODUÇÃO
   ============================================ */

.introducao-section {
    max-width: 654px;
    margin: 0 auto;
}

.introducao-section .lesson-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.introducao-section p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6em;
    letter-spacing: 0.5%;
    color: #191915;
    margin: 0;
}

/* Subtítulo com linhas */
.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 1.3333333333333333em;
    color: #000000;
    margin: 0;
    padding: 12px 0;
}

/* Bons estudos com linhas decorativas */
.bons-estudos-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 40px 0;
}

.bons-estudos-line {
    width: 64px;
    height: 1px;
    background-color: #191915;
    border: none;
    margin: 0;
}

.bons-estudos-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4em;
    text-align: center;
    color: #191915;
    margin: 0;
}

/* Separador completo */
.full-separator {
    width: 100%;
    height: 2px;
    background-color: #191915;
    border: none;
    margin: 40px 0;
}

/* Botões de navegação da introdução */
.intro-navigation-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding: 0 150px;
    margin: 40px 0 160px;
}

.btn-intro-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
    width: 206px;
    white-space: nowrap;
    background-color: #FFFFFF;
    border: 2px solid #191915;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2857142857142858em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #191915;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 0px 0px rgba(55, 55, 49, 1);
}

.btn-intro-nav:hover {
    background-color: #F0F0DA;
    transform: translateY(-2px);
    box-shadow: 0px 6px 0px 0px rgba(55, 55, 49, 1);
}

.btn-intro-nav:active {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px 0px rgba(55, 55, 49, 1);
}

/* Responsividade dos botões */
@media (max-width: 768px) {
    .intro-navigation-buttons {
        flex-direction: column;
        padding: 0;
        gap: 24px;
    }

    .btn-intro-nav {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   BOX OBJETIVO DO CURSO (Encerramento)
   ============================================ */

.objetivo-curso-box {
    background-color: #F0F0DA;
    border: 2px solid #191915;
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
}

.objetivo-curso-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 2px solid #191915;
    margin-bottom: 24px;
}

.objetivo-curso-icon {
    flex-shrink: 0;
    color: #191915;
}

.objetivo-curso-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3333333333333333em;
    color: #191915;
    margin: 0;
}

.objetivo-curso-content {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5555555555555556em;
    color: #191915;
}

.objetivo-curso-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .objetivo-curso-box {
        padding: 24px;
    }

    .objetivo-curso-header {
        gap: 12px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .objetivo-curso-icon {
        width: 32px;
        height: 32px;
    }

    .objetivo-curso-title {
        font-size: 20px;
    }

    .objetivo-curso-content {
        font-size: 16px;
    }
}

/* ============================================
   PÁGINA DE ENCERRAMENTO
   ============================================ */

body.encerramento-page .header-apresentacao {
    padding: 14px 40px;
}

body.encerramento-page .header-nav {
    gap: 24px;
}

body.encerramento-page .hero-banner {
    display: none;
}

/* Hero Encerramento */
.encerramento-hero {
    background-color: #F0F0DA;
    padding: 48px 24px 64px;
    border-bottom: 2px solid #C4C4B0;
    text-align: center;
}

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

.encerramento-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #191915;
    margin: 0 0 12px 0;
}

.encerramento-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.3em;
    color: #2A1F0F;
    margin: 0;
}

@media (max-width: 768px) {
    .encerramento-hero {
        padding: 36px 20px 48px;
    }
    .encerramento-hero-title {
        font-size: 28px;
    }
}

.apresentacao-page .apresentacao-hero {
    background-color: #F0F0DA;
    padding: 40px 24px;
    border-bottom: 2px solid #C4C4B0;
}

.apresentacao-page .apresentacao-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.apresentacao-hero-card-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.apresentacao-hero-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.apresentacao-hero-logo-img {
    width: 320px;
    height: auto;
    display: block;
}

.apresentacao-hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #191915;
    margin: 0;
}

@media (max-width: 768px) {
    .apresentacao-page .apresentacao-hero {
        padding: 24px 20px;
    }
    .apresentacao-hero-card-layout {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .apresentacao-hero-logo-img {
        width: 120px;
    }
    .apresentacao-hero-tagline {
        font-size: 16px;
    }
}

body.encerramento-page .apresentacao-main {
    padding: 80px 24px 120px;
}

body.encerramento-page .apresentacao-container {
    max-width: 940px;
    margin: 0 auto;
}

body.encerramento-page .lesson-title {
    align-items: flex-start;
    margin-bottom: 32px;
}

body.encerramento-page .title-line {
    width: 140px;
    margin-top: 16px;
    margin-left: 0;
}

body.encerramento-page .lesson-body {
    gap: 32px;
}

body.encerramento-page .lesson-body p {
    font-size: 20px;
    line-height: 1.6em;
    margin: 0;
}

body.encerramento-page .objetivo-curso-box {
    margin-top: 32px;
}

/* Encerramento - bloco final */
.encerramento-final {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.encerramento-final p {
    font-size: 20px;
    line-height: 1.6em;
    margin: 0;
}

.closing-line {
    width: 100px;
    height: 2px;
    background-color: #191915;
    border: none;
    margin: 12px auto 16px;
}

.closing-cta {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6em;
    color: #191915;
}

/* ============================================
   AVALIAÇÃO E CERTIFICAÇÃO (Encerramento)
   ============================================ */

.avaliacao-certificado-section {
    margin-top: 32px;
}

.avaliacao-certificado-section > p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6em;
    color: #191915;
    margin: 0 0 20px 0;
}

.avaliacao-certificado-section > p:last-of-type {
    margin-bottom: 24px;
}

.avaliacao-requisitos {
    margin-bottom: 32px !important;
}

.avaliacao-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.avaliacao-cta-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.avaliacao-cta-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #191915;
    margin: 0 !important;
}

.btn-avaliacao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border: 3px solid #191915;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: #191915;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px #191915;
}

.btn-avaliacao:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #191915;
}

.btn-avaliacao:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #191915;
}

.btn-avaliacao-beige {
    background-color: #F0F0DA;
}

.btn-avaliacao-beige:hover {
    background-color: #E8E8D0;
}

.btn-avaliacao-yellow {
    background-color: #FBB934;
    color: #FFFFFF;
}

.btn-avaliacao-yellow:hover {
    background-color: #FFC84A;
}

@media (max-width: 640px) {
    .avaliacao-cta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .btn-avaliacao {
        width: 100%;
    }
}

/* ============================================
   CRÉDITOS
   ============================================ */

.creditos-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.credito-grupo {
    padding: 40px 0;
    border-bottom: 1px solid #E4D8B5;
}

.credito-grupo:last-child {
    border-bottom: none;
}

.credito-instituicao {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
    color: #191915;
    margin: 0 0 24px 0;
}

.credito-pessoa {
    margin-bottom: 20px;
}

.credito-pessoa:last-child {
    margin-bottom: 0;
}

.credito-nome {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #191915;
    margin: 0 0 2px 0;
}

.credito-cargo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    line-height: 1.4;
    color: #191915;
    margin: 0;
}

@media (max-width: 768px) {
    .credito-instituicao {
        font-size: 22px;
    }
    .credito-nome,
    .credito-cargo {
        font-size: 17px;
    }
}
