/* RESET PADRÃO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* PALETA DE CORES EXTRAÍDA DO PRINT */
:root {
    --dark-blue: #0f1c3f;
    --yellow: #f2b604;
    /* Azul escuro de fundo e textos */
    --pure-white: #ffffff;
    /* Fundo do menu principal */
    --hover-blue: #1c2d5a;
    /* Variação de azul */
    --gray-text: #e0e5ed;
    /* Texto da barra superior */
}

/* ==========================================================================
   ESTILIZAÇÃO DOS TÍTULOS DE TODAS AS PÁGINAS
   ========================================================================== */

.banner-matriculas {
    background-color: var(--hover-blue);
    background-image: url('/assets/img/bg/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 180px 20px 50px 20px;
}

/* Texto menor do topo (Breadcrumbs) */
.breadcrumbs {
    color: var(--yellow);
    font-size: 14px;
    text-transform: none;
    margin-bottom: 10px;
}

/* Título Principal */
.titulo-principal {
    color: var(--yellow);
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

/* Subtítulo */
.subtitulo {
    color: var(--yellow);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .banner-matriculas {
        padding: 150px 20px 80px 20px;
    }

}

/* ==========================================================================
   CONTAINER DO CARROSSEL 
========================================================================== */

.hero-carousel {
    position: relative;
    margin-top: 120px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #0f1c3f;
}

.main-swiper {
    width: 100%;
    height: 100%;
}

.main-swiper .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GARANTE QUE O LINK OCUPE 100% DO SLIDE */
.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* IMAGEM RESPONSIVA */
.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 762px) {
    .hero-carousel {
        margin-top: 70px;
    }
}

/* ==========================================================================
   SEÇÃO PROPOSTA PEDAGÓGICA (TEXTO + GRÁFICO CIRCULAR)
   ========================================================================== */

.proposal-section {
    background-color: #0f1c3f;
    background-image: url('/assets/img/bg/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.proposal-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ESTILIZAÇÃO DO TEXTO (LADO ESQUERDO) */
.proposal-text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.proposal-text strong {
    font-weight: 700;
    color: #ffffff;
}

/* ESTILIZAÇÃO DA IMAGEM/GRÁFICO (LADO DIREITO) */
.proposal-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ESTILIZAÇÃO DO NOVO BOTÃO DA PROPOSTA */
.btn-proposal {
    display: inline-block;
    margin-top: 30px;
    background-color: #f2b604;
    color: #0f1c3f;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(242, 182, 4, 0.2);
}

.btn-proposal:hover {
    background-color: #ffffff;
    color: #0f1c3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   RESPONSIVIDADE DA SEÇÃO
   ========================================================================== */

@media (max-width: 1200px) {
    .proposal-text p {
        font-size: 20px;
    }

    .proposal-container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .proposal-section {
        padding: 60px 0;
    }

    .proposal-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .proposal-text p {
        font-size: 19px;
        line-height: 1.6;
    }

    .graphic-img {
        max-width: 85%;
    }

    .btn-proposal {
        margin-top: 20px;
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .proposal-text p {
        font-size: 17px;
    }

    .graphic-img {
        max-width: 100%;
    }
}

/* ==========================================================================
   SEÇÃO DIFERENCIAIS (GRID DE 4 CARDS)
   ========================================================================== */

.differentials-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.differentials-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* ESTRUTURA DO CARD */
.diff-card {
    display: flex;
    flex-direction: column;
    background-color: #0f1c3f;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 28, 63, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 28, 63, 0.15);
}

/* CONTAINER DA IMAGEM DO CARD */
.diff-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.diff-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.diff-img-box:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* CAIXA DE CONTEÚDO (AZUL ESCURO) */
.diff-content-box {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TÍTULO DO CARD (AMARELO E CENTRALIZADO) */
.diff-title {
    color: var(--yellow);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

/* TEXTO DESCRITIVO (BRANCO) */
.diff-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    /* Alinhado à esquerda conforme o print */
}

/* Destaques em negrito dentro do card */
.diff-text strong {
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVIDADE DOS CARDS
   ========================================================================== */

/* Telas de Notebooks ou Desktops compactos */
@media (max-width: 1200px) {
    .differentials-grid {
        gap: 15px;
    }

    .diff-content-box {
        padding: 20px 15px;
    }

    .diff-title {
        font-size: 15px;
    }

    .diff-text {
        font-size: 13.5px;
    }
}

/* Tablets (Vira um grid de 2 colunas) */
@media (max-width: 992px) {
    .differentials-section {
        padding: 60px 0;
    }

    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas por linha */
        gap: 25px;
    }

    .diff-img-box {
        height: 220px;
    }
}

/* Smartphones (Vira 1 coluna inteira) */
@media (max-width: 600px) {
    .differentials-grid {
        grid-template-columns: 1fr;
        /* 1 card por linha ocupando a largura total */
        gap: 25px;
    }

    .diff-img-box {
        height: 200px;
    }
}

/* ==========================================================================
   SEÇÃO PROPOSTA PEDAGÓGICA (VÍDEO + TEXTO COGNITIVO)
   ========================================================================== */
.pedagogical-section {
    background-color: #ffffff;
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
}

.pedagogical-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* CONTAINER E CONFIGURAÇÃO DO VÍDEO */
.pedagogical-video-box {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
}

.proposal-video {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    display: block;
}

/* CAIXA DE TEXTO (LADO DIREITO) */
.pedagogical-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TÍTULO DA SEÇÃO */
.pedagogical-title {
    color: var(--dark-blue);
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* PARÁGRAFO */
.pedagogical-p {
    color: #1a1a1a;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    text-align: justify;
}

/* ==========================================================================
   RESPONSIVIDADE DA SEÇÃO
   ========================================================================== */

@media (max-width: 1200px) {
    .pedagogical-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .pedagogical-p {
        font-size: 16.5px;
    }

    .pedagogical-container {
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .pedagogical-section {
        padding: 60px 0;
    }

    .pedagogical-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pedagogical-text-box {
        text-align: center;
    }

    .pedagogical-title {
        font-size: 28px;
        text-align: center;
    }

    .pedagogical-p {
        font-size: 16px;
        text-align: left;
    }

    .proposal-video {
        max-height: 320px;
    }
}

@media (max-width: 480px) {
    .pedagogical-title {
        font-size: 24px;
    }

    .pedagogical-p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ==========================================================================
   SEÇÃO CONHEÇA O NOSSO ENSINO (3 CARDS COM GRADIENT/PADRÃO DE FUNDO)
   ========================================================================== */
.ensino-section {
    background-color: #0f1c3f;
    background-image: url('/assets/img/bg/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 100px 0;
    width: 100%;
    overflow: hidden;
}

.ensino-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* DETALHE AMARELO SUPERIOR */
.ensino-decor-line {
    width: 55px;
    height: 4px;
    background-color: var(--yellow);
    margin-bottom: 20px;
    border-radius: 2px;
}

/* TÍTULO DA SEÇÃO */
.ensino-main-title {
    color: var(--yellow);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 55px;
    letter-spacing: -0.3px;
}

/* GRID DE TRÊS COLUNAS */
.ensino-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

.ensino-card {
    background-color: rgba(15, 28, 63, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
.ensino-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 182, 4, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* CAIXA INTERNA DA IMAGEM */
.ensino-img-box {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.ensino-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ÁREA DE TEXTOS DO CARD */
.ensino-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

/* ESTILIZAÇÃO DO BOTÃO "SAIBA MAIS" */
.ensino-btn-saiba {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    margin-top: auto;
    padding-top: 25px;
    align-self: flex-end;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* BOLINHA AMARELA DO ÍCONE */
.ensino-circle-icon {
    width: 32px;
    height: 32px;
    background-color: var(--yellow);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* EFEITO DE HOVER SUAVE NO CONJUNTO */
.ensino-btn-saiba:hover {
    color: #f2b604;
}

.ensino-btn-saiba:hover .ensino-circle-icon {
    background-color: #ffffff;
    color: #0f1c3f;
    transform: scale(1.1);
}

/* TÍTULO INTERNO DO CARD */
.ensino-card-title {
    color: #f2b604;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
}

/* PARÁGRAFO DO CARD */
.ensino-card-text {
    color: #ffffff;
    font-size: 14.5px;
    line-height: 1.65;
    text-align: center;
    opacity: 0.95;
}

/* ==========================================================================
   RESPONSIVIDADE DA SEÇÃO DE ENSINO
   ========================================================================== */

@media (max-width: 1200px) {
    .ensino-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .ensino-card-title {
        font-size: 20px;
    }

    .ensino-img-box {
        height: 210px;
    }

    .ensino-card-text {
        font-size: 13.5px;
    }
}

@media (max-width: 992px) {
    .ensino-section {
        padding: 60px 0;
    }

    .ensino-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 480px;
        margin: 0 auto;
    }

    .ensino-img-box {
        height: 240px;
    }

    .ensino-btn-saiba {
        align-self: center;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .ensino-main-title {
        font-size: 26px;
    }

    .ensino-card-title {
        font-size: 19px;
    }
}


/* ==========================================================================
   REGISTRO DAS VARIÁVEIS DE CONTAGEM (MÁGICA DO PURE CSS COUNTER)
   ========================================================================== */

.stats-section {
    background-color: #ffffff;
    padding: 150px 0;
    width: 100%;
    overflow: hidden;
}

.stats-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-main-title {
    color: var(--dark-blue);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

/* O CARD ASSIMÉTRICO DO PRINT */
.stat-card {
    background-color: var(--dark-blue);
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(38, 67, 126, 0.15);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1;
    display: block;
}

.stat-desc {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 240px;
    opacity: 0.95;
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .stats-main-title {
        font-size: 30px;
    }

    .stat-number {
        font-size: 46px;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        min-height: 180px;
    }
}

@media (max-width: 550px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   SEÇÃO MOTIVOS PARA ESTUDAR (AZUL ESCURO COM GRID DE 6 ELEMENTOS)
   ========================================================================== */

.motivos-section {
    background-color: #0f1c3f;
    background-image: url('/assets/img/bg/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
}

.motivos-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* TÍTULO PRINCIPAL (AMARELO E CENTRALIZADO) */
.motivos-main-title {
    color: var(--yellow);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

/* GRID DE 3 COLUNAS NO DESKTOP */
.motivos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    width: 100%;
}

/* CARD INDIVIDUAL DO MOTIVO */
.motivo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ESTILIZAÇÃO DOS ÍCONES (BRANCOS E GRANDES) */
.motivo-icon {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: inline-block;
}

.motivo-icon svg {
    width: 80px;
    height: 80px;
    fill: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Efeito sutil de rotação/subida no ícone ao passar o mouse na caixinha */
.motivo-card:hover .motivo-icon svg {
    transform: scale(1.1);
    color: var(--yellow);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* SUBTÍTULOS DOS MOTIVOS (AMARELO) */
.motivo-title {
    color: var(--yellow);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* PARÁGRAFOS DESCRITIVOS (BRANCO) */
.motivo-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    opacity: 0.9;
}

/* ==========================================================================
   RESPONSIVIDADE DA SEÇÃO
   ========================================================================== */

/* Notebooks ou telas intermediárias */
@media (max-width: 1200px) {
    .motivos-main-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .motivos-grid {
        gap: 40px 30px;
    }

    .motivo-title {
        font-size: 17.5px;
    }

    .motivo-text {
        font-size: 13.5px;
    }
}

/* Tablets (Converte o grid de 3 colunas para 2 colunas por linha) */
@media (max-width: 992px) {
    .motivos-section {
        padding: 60px 0;
    }

    .motivos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 35px;
    }
}

/* Smartphones (Converte o layout para 1 única coluna centralizada) */
@media (max-width: 650px) {
    .motivos-main-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .motivos-grid {
        grid-template-columns: 1fr;
        /* 1 elemento por linha */
        gap: 35px;
    }

    .motivo-card {
        align-items: center;
        /* Centraliza no mobile para melhorar o design */
        text-align: center;
    }
}

/* ==========================================================================
   SISTEMA DE BLOG (CARDS, INDEX, LISTAGEM E POST TEMPLATE)
   ========================================================================== */

/* 1. SEÇÃO INDEX / HOME */
.blog-home-section {
    padding: 90px 0;
    width: 100%;
}

.blog-home-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-home-main-title {
    color: #0f1c3f;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.blog-home-grid,
.blog-all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.blog-home-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-blog-more {
    display: inline-block;
    background-color: #0f1c3f;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-blog-more:hover {
    background-color: var(--yellow);
    color: var(--dark-blue);
}

/* 2. O DESIGN DO CARD DO BLOG */
.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 28, 63, 0.12);
}

.blog-card-img {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--yellow);
    color: var(--dark-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 15px;
}

.blog-card-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    display: block;
}

.blog-card-date i {
    margin-right: 4px;
}

.blog-card-title {
    color: #0f1c3f;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    color: #0f1c3f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-link {
    color: var(--yellow);
}

/* 3. PÁGINA INTERNA GERAL (BLOG.HTML) */
.blog-page-main {
    padding: 60px 0 90px 0;
    background-color: #f4f6f9;
    min-height: 80px;
}

.blog-page-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-page-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-page-header h1 {
    color: var(--dark-blue);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-page-header p {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

.blog-search-box {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.blog-search-box i {
    color: #999;
    font-size: 16px;
}

.blog-search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #333;
}

.no-posts-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 16px;
}

/* 4. TEMPLATE DO POST EXCLUSIVO (POST.HTML) */
.single-post-section {
    padding: 200px 0 100px 0;
    background-color: #ffffff;
}

.single-post-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Largura contida ideal para leitura textual */
.post-back-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 35px;
}

.post-back-link:hover {
    color: var(--yellow);
}

.post-header {
    margin-bottom: 30px;
}

.post-meta-category {
    background-color: var(--dark-blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    text-transform: uppercase;
}

.post-main-title {
    color: var(--dark-blue);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0;
}

.post-meta-date {
    font-size: 14px;
    color: #666;
    display: block;
}

.post-hero-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.post-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-main-body {
    color: #222;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}

.post-main-body p {
    margin-bottom: 25px;
}

/* 5. RESPONSIVIDADE DO BLOG */
@media (max-width: 992px) {

    .blog-home-grid,
    .blog-all-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .post-main-title {
        font-size: 32px;
    }

    .post-main-body {
        font-size: 16.5px;
    }
}

@media (max-width: 650px) {

    .blog-home-grid,
    .blog-all-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .blog-page-header h1 {
        font-size: 32px;
    }

    .post-main-title {
        font-size: 26px;
    }
}

/* ==========================================================================
   SEÇÃO DE PARCEIROS (CARROSSEL HORIZONTAL DE LOGOS)
   ========================================================================== */

.partners-section {
    padding: 60px 0 100px 0;
    width: 100%;
    border-bottom: 1px solid #f0f2f5;
    overflow: hidden;
}

.partners-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

/* TÍTULO DA SEÇÃO */
.partners-title {
    color: var(--dark-blue);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: -0.3px;
}

/* CONTAINER INTERNO DO SWIPER */
.partners-swiper {
    width: 100%;
    padding: 10px 0;
}

/* ESTILO DO SLIDE QUE GUARDA O LOGO */
.partner-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
}

.partner-slide img {
    max-width: 170px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   SEÇÃO: BANNER CTA FINAL (MATRÍCULAS ABERTAS)
   ========================================================================== */

.cta-action-banner {
    background-color: var(--dark-blue);
    padding: 25px 0;
    width: 100%;
    overflow: hidden;
}

.cta-action-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

/* ESTILO DO TEXTO DO BANNER */
.cta-action-text {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

/* BOTÃO RETANGULAR AMARELO (Fiel ao print) */
.btn-cta-visit {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--dark-blue);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

/* Efeito de Hover */
.btn-cta-visit:hover {
    background-color: #ffffff;
    color: #1e3a6d;
    transform: scale(1.02);

}

/* ==========================================================================
   RESPONSIVIDADE DO BANNER CTA
   ========================================================================== */

@media (max-width: 768px) {
    .cta-action-banner {
        padding: 35px 0;
    }

    .cta-action-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-action-text {
        font-size: 20px;
    }

    .btn-cta-visit {
        font-size: 15px;
        padding: 10px 24px;
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   SEÇÃO: MAPA DO GOOGLE MAPS (FULL WIDTH)
   ========================================================================== */

.map-full-section {
    width: 100%;
    height: 400px;
    display: block;
    overflow: hidden;
    line-height: 0;
}

.map-full-section iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    filter: grayscale(10%) contrast(105%);
}

/* ==========================================================================
   RESPONSIVIDADE DO MAPA
   ========================================================================== */

@media (max-width: 768px) {
    .map-full-section {
        height: 320px;
    }
}

/* ==========================================================================
   ESTILIZAÇÃO DE PÁGINAS LEGAIS (PRIVACIDADE / TERMOS DE USO)
   ========================================================================== */

.legal-page-section {
    background-color: #ffffff;
    padding: 200px 0 80px 0;
    width: 100%;
}

.legal-page-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* TÍTULO PRINCIPAL (Usando o tom escuro institucional) */
.legal-main-title {
    color: var(--dark-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* SUBTÍTULOS INTERNOS */
.legal-sub-title {
    color: var(--dark-blue);
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 18px;
}

/* PARÁGRAFOS DO TEXTO */
.legal-page-container p {
    color: #444444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* LINKS INTERNOS DO TEXTO */
.legal-page-container a {
    color: var(--hover-blue);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-page-container a:hover {
    color: var(--yellow);
}

/* LISTAS DE BULLETS */
.legal-bullets-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 30px;
}

.legal-bullets-list li {
    color: #444444;
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 12px;
    text-align: justify;
}

/* MARCAÇÃO DE DATA DE VIGÊNCIA */
.legal-effective-date {
    font-weight: 600;
    font-size: 13.5px !important;
    color: #777777 !important;
    margin-top: 40px;
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .legal-page-section {
        padding-top: 110px;
    }

    .legal-main-title {
        font-size: 28px;
    }

    .legal-sub-title {
        font-size: 19px;
    }

    .legal-page-container p,
    .legal-bullets-list li {
        font-size: 14px;
    }
}

/* ==========================================================================
   ESTILIZAÇÃO PARA PÁGINA DE CONTATOS
   ========================================================================== */

.legal-numbered-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.legal-numbered-list li {
    color: #444444;
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 12px;
    text-align: justify;
}

.secao-contato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex: 1;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contato-icone {
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-texto h3 {
    color: var(--dark-blue);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.contato-texto p {
    color: #444444;
    font-size: 16px;
    margin: 0;
}

.link-contato {
    text-decoration: none;
    color: #444444;
    transition: color 0.2s ease;
}

.link-contato:hover {
    color: var(--yellow);
    text-decoration: underline;
}

.contato-formulario {
    flex: 1;
    width: 100%;
}

.contato-formulario iframe {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- RESPONSIVIDADE (PARA CELULARES) --- */

@media (max-width: 768px) {
    .secao-contato {
        flex-direction: column;
        gap: 40px;
    }

    .contato-info {
        width: 100%;
    }
}

/* ==========================================================================
   1. ESTILIZAÇÃO BASE (Apenas o que é igual para as duas páginas)
   ========================================================================== */

/* Container Geral */
.galeria-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card da Foto Base (Sem formato travado aqui) */
.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #f4f4f4;
    cursor: pointer;
}

/* Titulo */
.galeria-item .evento-titulo {
    color: var(--yellow);
}

/* Imagem Base */
.galeria-item img {
    width: 100%;
    transition: transform 0.4s ease;
}

/* Efeito de Zoom na foto ao passar o mouse */
.galeria-item:hover img {
    transform: scale(1.08);
}

/* Overlay (Fundo escuro com texto que aparece no hover) */
.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

/* Texto da Legenda */
.galeria-texto {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-texto {
    transform: translateY(0);
}

/* ==========================================================================
   2. PÁGINA PRINCIPAL (#container-eventos) - AQUI FICA QUADRADO (4/3)
   ========================================================================== */

#container-eventos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Força os cards dos eventos a terem o mesmo tamanho */
#container-eventos .galeria-item {
    aspect-ratio: 4 / 3;
}

#container-eventos .galeria-item img {
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   3. PÁGINA DO EVENTO (#fotos-evento) - AQUI FICA ESTILO PINTEREST (INTEIRAS)
   ========================================================================== */

#fotos-evento {
    column-count: 4;
    column-gap: 20px;
    width: 100%;
}

#fotos-evento .galeria-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    aspect-ratio: auto;
}

/* Garante que a foto apareça 100% inteira, sem nenhum corte */
#fotos-evento .galeria-item img {
    height: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   4. RESPONSIVIDADE DO ESTILO PINTEREST 
   ========================================================================== */

@media (max-width: 1024px) {
    #fotos-evento {
        column-count: 3;
        /* 3 colunas em tablets */
    }
}

@media (max-width: 768px) {
    #fotos-evento {
        column-count: 2;
        /* 2 colunas em celulares grandes */
        column-gap: 15px;
    }

    #fotos-evento .galeria-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    #fotos-evento {
        column-count: 1;
        /* 1 coluna cheia em celulares pequenos */
    }
}

/* ==========================================================================
   SEÇÃO: ESTILOS PARA AS 3 PÁGINAS DOS SEGMENTOS
   ========================================================================== */

.secao-texto-imagem {
    padding: 80px 20px;
}

/* Container que ativa o Flexbox */
.colunas-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

/* Define que ambas as colunas ocupam o mesmo espaço (50% cada) */
.coluna-texto,
.coluna-imagem {
    flex: 1;
}

/* Define para os vídeos do iframe */
.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Estilização dos textos */
.tag-subtitulo {
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.titulo-secao {
    color: var(--dark-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.paragrafo-descricao {
    color: #555555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Botão de Ação */
.btn-saber-mais {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--hover-blue);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-saber-mais:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

/* Ajustes da Imagem para ficar perfeita */
.coluna-imagem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   RESPONSIVIDADE (Para Celulares e Tablets)
   ========================================================================== */

@media (max-width: 992px) {
    .colunas-container {
        flex-direction: column;
        gap: 40px;
    }

    .titulo-secao {
        font-size: 1.8rem;
    }
}


/* ==========================================================================
   SEÇÃO PARA A ESTRUTURA DA ESCOLA
   ========================================================================== */

.estrutura-section {
    padding: 60px 20px 100px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* BOTÕES DE FILTRO (Estilo pílula clean) */
.filtros-estrutura {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-filtro {
    background: #f5f5f5;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filtro.ativo,
.btn-filtro:hover {
    background-color: var(--dark-blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(218, 37, 28, 0.2);
}

/* GRID DE FOTOS */
.grid-estrutura {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* ITEM DA GALERIA */
.item-galeria {
    position: relative;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Comportamento da Imagem */
.item-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Efeito de zoom ao passar o mouse */
.item-galeria:hover img {
    transform: scale(1.08);
}

/* EFEITO OVERLAY (Sombra preta suave de baixo para cima) */
.overlay-galeria {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

/* Destaca mais a foto e o texto no hover */
.item-galeria:hover .overlay-galeria {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
}

/* TEXTO DA FOTO */
.titulo-foto {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: translateY(2px);
    transition: transform 0.3s ease;
}

.item-galeria:hover .titulo-foto {
    transform: translateY(0);
}

/* Mensagem caso a categoria esteja vazia */
.sem-resultados {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 40px 0;
}

/* ==========================================================================
   ESTILIZAÇÃO PARA MISSÃO, VISÃO E VALORES
   ========================================================================== */

/* Container dos Cards (Mantido igual) */
.cards-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0 100px 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Estilo Base do Card */
.card {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border: 5px solid var(--hover-blue);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Alterado para ::before para ficar por baixo do texto naturalmente */
.card::before {
    position: absolute;
    content: '';
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: var(--dark-blue);
    border-radius: 50%;
    pointer-events: none;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

/* Expande o círculo no hover */
.card:hover::before {
    transform: scale(12);
}

/* Efeito de Hover no Card */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Estilização dos Ícones */
.icon-container {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container svg {
    fill: var(--dark-blue);
    transition: fill 0.2s ease;
}

/* Títulos e Textos */
.card h3 {
    position: relative;
    font-size: 30px;
    color: var(--hover-blue);
    margin-bottom: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.2s ease;
}

.card h3::after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translate(-50%);
    bottom: -10px;
    width: 100px;
    height: 3px;
    background-color: var(--yellow);
    border-radius: 10px;
}

.card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    transition: color 0.2s ease;
}

/* SELETORES CORRIGIDOS: Transição de cor no Hover */
.card:hover h3,
.card:hover p {
    color: #ffffff;
}

/* Altera a cor do SVG para branco também */
.card:hover .icon-container svg {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .cards-container {
        justify-content: center;
        gap: 20px;
        padding: 20px 15px 60px 15px;
    }

    .card {
        width: 100%;
        max-width: 100%;
        flex: unset;
    }

    .card h3 {
        font-size: 24px;
    }

    .card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 20px;
        border-width: 4px;
    }

    .icon-container {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }

    .card h3 {
        font-size: 20px;
    }
}