/* ==========================================================================
   1. CONFIGURAÇÕES GERAIS E RESETS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #0f172a;
}

.container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-padding {
    padding: 4.5rem 0;
}

.bg-white { background-color: #ffffff; }
.bg-light { background-color: #f1f5f9; }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.9rem;
    color: #0b2240;
    font-weight: 700;
}

.page-internal-spacing {
    padding-top: 6rem !important;
    min-height: 75vh;
}

.section-subtitle-internal {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* ==========================================================================
   HERO INTERATIVO - AJUSTE DE DISTÂNCIAS DA LOGO E FRASES
   ========================================================================== */
.hero-section {
    padding: 70px 0 60px 0 !important;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Container da Logo com margem inferior reduzida */
.hero-logo-container {
    max-width: 380px; 
    width: 100%;
    margin: 0 auto 6px auto; /* Reduzido o espaço de baixo para apenas 10px */
    padding: 0 15px;
}

.hero-logo-centered {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.12));
}

/* Estilização e aproximação da frase */
.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ffffff !important;
    margin: 0 auto 25px auto; /* Zera a margem superior para colar na logo e deixa 25px para os botões */
    font-weight: 400;
    max-width: 600px;
    line-height: 1.4;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); /* Sombra para leitura perfeita sobre a foto */
}

/* Botões */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Ajustes para Celular */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 45px 0 !important;
    }
    .hero-logo-container {
        max-width: 250px;
        margin-bottom: 5px;
    }
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
}
/* ==========================================================================
   2. CABEÇALHO (MENU SUPERIOR)
   ========================================================================== */
.main-header {
    background-color: #0b2240;
    color: #ffffff;
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo-img {
    height: 54px;
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
}

.nav-menu ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.nav-active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   3. HERO BANNER (Destaque Principal da Home)
   ========================================================================== */
.hero-section {
    background: linear-gradient(rgba(11, 34, 64, 0.5), rgba(15, 23, 42, 0.65)), 
                url('/public/imagens/principal.png') no-repeat center center/cover;  /* ============= essa imagem das criancas
                       ou contato3.png (sacada do oratorio)====== */
    color: #ffffff;
    padding: 7rem 0;
    text-align: center;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); 
}

.hero-content .hero-tagline {
    font-size: 1.15rem;
    font-weight: 300;
    color: #f1f5f9;
    max-width: 600px; 
    margin: 0 auto 2.5rem auto;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-primary {
    background-color: #1e62be;
    color: white;
    padding: 11px 26px;
    text-decoration: none;
    border-radius: 50px; 
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(30, 98, 190, 0.3);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background-color: #154b99;
    transform: translateY(-1px);
}

/* ==========================================================================
   4. SEÇÃO QUEM SOMOS REESTRUTURADA (BOX DUPLO PREMIUM)
   ========================================================================== */
.about-premium-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 34, 64, 0.05);
    min-height: 520px;
}

.about-text-side {
    background-color: #0b2240; 
    color: #ffffff;
    padding: 4.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.about-text-side h2 {
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-highlight {
    color: #ffffff;
    font-weight: 800;
}

.about-text-side p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: justify;
}

.about-text-side strong {
    color: #ffffff;
}

.about-carousel-side {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-carousel-main {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-color: #0b2240;
    overflow: hidden;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(11, 34, 64, 0.6);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background-color: #1e62be;
    transform: translateY(-50%) scale(1.05);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

.carousel-thumbs-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(11, 34, 64, 0.4);
    padding: 6px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.thumb-item {
    width: 45px;
    height: 35px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.thumb-item:hover {
    opacity: 0.9;
}

.thumb-item.active {
    border-color: #ffffff;
    opacity: 1;
    transform: scale(1.05);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   5. SEÇÃO DE MÉTRICAS E IMPACTO (FUNDO AZUL CORPORATIVO SUAVE)
   ========================================================================== */
.bg-light-blue-stats {
    background-color: #f0f4f9; 
    padding: 4rem 0;
}

.stats-container-box {
    background-color: #ffffff; 
    border-radius: 24px;
    padding: 4rem 3.5rem; 
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(11, 34, 64, 0.05); 
}

.stats-main-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.stats-main-text .highlight-blue-text {
    color: #1e62be; 
}

.stats-main-text p {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: 1.05rem;
    max-width: 320px;
}

.stats-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.stat-card-item {
    padding: 1rem 0;
}

.stat-card-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #0b2240; 
    margin-bottom: 0.4rem;
}

.stat-card-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.4;
}

.stat-card-featured {
    background-color: #0b2240; 
    color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    grid-row: span 2; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(11, 34, 64, 0.2);
}

.stat-card-featured h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.stat-card-featured p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* ==========================================================================
   6. EQUIPE INSTITUCIONAL E CONGREGAÇÃO
   ========================================================================== */
.team-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.team-group {
    margin-bottom: 4rem;
}

.team-group-title {
    font-size: 1.4rem;
    color: #0b2240;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 12px;
}

.team-group-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: #1e62be;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    gap: 1.5rem;
}

.grid-5-cols { grid-template-columns: repeat(5, 1fr); }
.grid-4-cols { grid-template-columns: repeat(4, 1fr); }

.team-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(11, 34, 64, 0.1);
}

.team-img-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f1f5f9;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}

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

.team-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-blue { background-color: #0b2240; color: #ffffff; }
.badge-light-blue { background-color: #1e62be; color: #ffffff; }

/* ==========================================================================
   7. CARDS DA PÁGINA DE PROJETOS
   ========================================================================== */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f0fdf4;
    color: #166534;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.card h3 {
    color: #0b2240;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.card p { color: #64748b; font-size: 0.9rem; margin-bottom: 1.2rem; }
.card-link { display: inline-block; color: #1e62be; font-weight: 600; font-size: 0.85rem; text-decoration: none; }

/* ==========================================================================
   8. PORTAL DA TRANSPARÊNCIA E CABEÇALHOS INTERNOS COM FOTO ATUALIZADO
   ========================================================================== */
.internal-hero {
    background: linear-gradient(rgba(11, 34, 64, 0.75), rgba(15, 23, 42, 0.85)), 
                url('/public/imagens/transparencia.png') no-repeat center center/cover;
    color: #ffffff;
    padding: 5rem 0 4rem 0;
    text-align: center;
}

.internal-hero.outros-hero{
    background: linear-gradient(rgba(11, 34, 64, 0.75), rgba(15, 23, 42, 0.85)), 
                url('/public/imagens/azul.png') no-repeat center center/cover;
    color: #ffffff;
    padding: 5rem 0 4rem 0;
    text-align: center;
}

/* Variação exclusiva, alta e totalmente visível para o banner dos 99 anos */
.internal-hero.contact-hero{
    background: linear-gradient(rgba(11, 34, 64, 0.75), rgba(15, 23, 42, 0.85)), 
                url('/public/imagens/contato3.png') no-repeat center center/cover;
    color: #ffffff;
    padding: 5rem 0 4rem 0;
    text-align: center;
}


.internal-badge {
    background-color: rgba(252, 247, 247, 0.1);
    color: #cbd5e1;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.internal-hero h1 {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.internal-hero p {
    color: #e2e8f0;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 300;
}

.transparency-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.document-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #1e62be;
    color: #1e62be;
}

.filter-btn.active {
    background-color: #0b2240;
    border-color: #0b2240;
    color: #ffffff;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-card-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s, box-shadow 0.2s;
}

.document-card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(11, 34, 64, 0.05);
    border-color: #cbd5e1;
}

.doc-icon-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.doc-avatar-icon {
    font-size: 1.6rem;
    background-color: #f1f5f9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #0b2240;
}

.doc-details h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b2240;
    margin: 0 0 2px 0;
}

.doc-category {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.download-doc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e62be;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.download-doc-btn:hover {
    background-color: #f0f6ff;
    color: #154b99;
}

.download-svg-icon {
    transition: transform 0.2s ease;
}

.download-doc-btn:hover .download-svg-icon {
    transform: translateY(2px);
}

/* ==========================================================================
   9. FAIXA VOCACIONAL
   ========================================================================== */
.vocational-banner {
    background: linear-gradient(rgba(11, 34, 64, 0.9), rgba(11, 34, 64, 0.95)), 
                url('/imagens/image.png') no-repeat center center/cover;
    color: #ffffff;
    padding: 1.5rem 0;
    text-align: center;
}

.vocational-banner p {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   10. RODAPÉ INSTITUCIONAL (AZUL ESCURO UNIFICADO)
   ========================================================================== */
.main-footer {
    background-color: #0b2240;
    color: #cbd5e1;
    padding: 50px 0 0 0;
}

.main-footer .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-footer .footer-col-hours,
.main-footer .footer-col-contact {
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
}

.main-footer .footer-col-hours {
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.main-footer .footer-col-contact {
    padding-left: 50px;
}

.main-footer h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.main-footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 6px 0;
}

.main-footer .days {
    font-weight: 600;
    color: #ffffff;
}

.main-footer .hours {
    margin-bottom: 12px;
    color: #94a3b8;
}

.main-footer .margin-top-xs {
    margin-top: 15px;
}

.main-footer .footer-phone-block {
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-radius: 4px;
    border-left: 3px solid #10b981;
    max-width: 360px;
}

.main-footer .footer-phone-block .phone-label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.main-footer .footer-phone-link {
    color: #10b981;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.main-footer .footer-phone-link:hover {
    color: #34d399;
}

.main-footer .footer-bottom {
    text-align: center;
    margin-top: 45px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
}

.main-footer .footer-bottom p {
    font-size: 12px;
    color: #64748b;
}

/* ==========================================================================
   11. MEDIA QUERIES (RESPONSIVIDADE COMPLETA)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-5-cols { grid-template-columns: repeat(3, 1fr); }
    .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .about-premium-box {
        grid-template-columns: 1fr;
    }
    .about-text-side {
        padding: 3rem 2rem;
    }
    .about-carousel-main {
        min-height: 350px;
    }
    .stats-container-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    .stats-main-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 1.2rem; }
    .hero-section { padding: 4rem 0; }
    .hero-content h1 { font-size: 1.8rem; }
    .transparency-box { grid-template-columns: 1fr; gap: 1.5rem; }
    .grid-5-cols, .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
    
    .document-card-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.5rem;
    }
    .download-doc-btn {
        width: 100%;
        justify-content: center;
        background-color: #f1f5f9;
        color: #0b2240;
    }
    .internal-hero h1 {
        font-size: 1.9rem;
    }
    
    .main-footer .footer-col-hours {
        border-right: none;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .main-footer .footer-col-contact { padding-left: 0; }
}

@media (max-width: 600px) {
    .stats-grid-cards {
        grid-template-columns: 1fr;
    }
    .stat-card-featured {
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .grid-5-cols { grid-template-columns: 1fr; }
}

/* ==========================================================================
   12. PÁGINA DE PATROCINADORES E MARCAS
   ========================================================================== */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 2.5rem;
    padding: 1rem 0;
    max-width: 900px; 
    margin: 0 auto;   
}

.sponsor-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(11, 34, 64, 0.02);
    transition: all 0.25s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(11, 34, 64, 0.08);
    border-color: #cbd5e1;
}

.sponsor-img-wrapper {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sponsor-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    filter: grayscale(20%);
    transition: filter 0.2s ease;
}

.sponsor-card:hover .sponsor-img-wrapper img {
    filter: grayscale(0%);
}

.sponsor-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0b2240;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 650px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   13. DIAGRAMAÇÃO TEXTUAL COMPLEXA (QUEM SOMOS HISTÓRICO COM BRASÃO)
   ========================================================================== */
.history-layout-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center; 
}

.history-main-text .history-title {
    font-size: 2.2rem;
    color: #0b2240;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.history-main-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.history-main-text em {
    display: block;
    padding-left: 1rem;
    border-left: 4px solid #1e62be;
    color: #334155;
    font-style: italic;
    margin: 1.5rem 0;
}

.history-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.anniversary-badge-container {
    max-width: 380px; 
    width: 100%;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.anniversary-badge-container:hover {
    transform: scale(1.02); 
}

.anniversary-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 992px) {
    .history-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .history-image-side {
        order: -1; 
    }
    .anniversary-badge-container {
        max-width: 280px; 
    }
}

/* ==========================================================================
   14. PÁGINA DE CONTATO E SEÇÃO DE DOAÇÕES INTEGRADA (PALETA AZUL)
   ========================================================================== */
.contact-page-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem 0;
}

.contact-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.95;
    color: #0f172a;
    letter-spacing: -2px;
    margin-bottom: 2.5rem;
}

.contact-main-heading span {
    font-weight: 800;
    color: #1e62be; 
}

.contact-info-card-box {
    background-color: #f1f5f9; 
    border-radius: 28px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.contact-item-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-icon-circle {
    color: #1e62be; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-row p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.5;
}

.contact-subtext {
    font-size: 0.95rem;
    color: #64748b;
}

.contact-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.contact-hours-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.contact-hours-block p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748b;
}

.contact-hours-block .sunday-note {
    font-size: 0.95rem;
    color: #1e62be;
    margin-top: 4px;
    font-weight: 600;
}

.btn-location-map {
    background-color: #0b2240; 
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(11, 34, 64, 0.25);
    transition: all 0.25s ease;
    text-align: center;
}

.btn-location-map:hover {
    background-color: #14355e;
    transform: translateY(-1px);
}

.bg-light-blue-section {
    background-color: #f8fafc; 
    border-top: 1px solid #e2e8f0;
}

.donation-section-wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem 0;
}

.donation-grid-layout {
    display: table;
    width: 100%;
}

.donation-text-side {
    display: table-cell;
    width: 45%;
    vertical-align: top; /* Ajustado de middle para top: faz o texto subir */
    padding-right: 3rem;
}

.donation-cards-side {
    display: table-cell;
    width: 55%;
    vertical-align: top; /* Ajustado de middle para top: mantém o alinhamento superior com o texto */
}

.donation-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.0;
    color: #0f172a;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.donation-title span {
    color: #1e62be; 
}

.donation-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

/* NOVO: Estilização da caixa que segura a imagem abaixo do texto de forma contida */
.donation-photo-box {
    max-width: 340px; /* Limita a largura para a foto ficar menor e proporcional */
    width: 100%;
    border-radius: 12px; /* Cantos arredondados sutis */
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(11, 34, 64, 0.05); /* Sombra elegante */
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem; /* Respiro entre o texto e a foto */
}

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

.donation-bank-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.bank-card-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.2rem;
}

.bank-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b2240; 
    margin-bottom: 0.3rem;
}

.cnpj-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e62be;
    background-color: #eff6ff;
    padding: 4px 12px;
    border-radius: 20px;
}

.bank-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bank-row-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background-color: #f8fafc;
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}

.pix-icon-box, .bank-icon-box {
    color: #1e62be;
    background-color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    flex-shrink: 0;
}

.bank-info-text {
    font-family: 'Inter', sans-serif;
}

.bank-info-text .label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 2px;
}

.bank-info-text strong {
    font-size: 1.15rem;
    color: #0f172a;
}

.bank-info-text p {
    font-size: 1.05rem;
    color: #334155;
    margin: 0;
}

.donation-card-footer {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

@media (max-width: 850px) {
    .donation-grid-layout, 
    .donation-text-side, 
    .donation-cards-side {
        display: block;
        width: 100%;
    }
    .donation-text-side {
        padding-right: 0;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    .donation-title {
        font-size: 2.8rem;
    }
    .donation-bank-card {
        padding: 1.5rem;
    }
    .donation-photo-box {
        margin-left: auto;
        margin-right: auto; /* Centraliza a foto em telas de celular */
    }
}

/* ==========================================================================
   15. SEÇÃO DE MOSAICO HISTÓRICO SIMÉTRICO (2x2 LADO A LADO)
   ========================================================================== */
.mosaic-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px;                             
    max-width: 1000px;
    margin: 0 auto;
}

.mosaic-item {
    width: 100%;
    aspect-ratio: 4 / 3;                   
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 34, 64, 0.05);
    background-color: #ffffff;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;                     
    display: block;
}

@media (max-width: 650px) {
    .mosaic-grid-2x2 {
        grid-template-columns: 1fr;        
        gap: 16px;
    }
}

/* ==========================================================================
   16. SEÇÕES DE PILARES E GOVERNO GERAL (PRESENTE)
   ========================================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pillar-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

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

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.pillar-card h3 {
    font-size: 1.4rem;
    color: #0b2240;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.bg-dark-blue-gov {
    background-color: #0b2240; 
    background-image: radial-gradient(circle at 10% 20%, rgba(30, 98, 190, 0.15) 0%, transparent 40%);
}

.government-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.gov-img-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: #1e293b;
}

.gov-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gov-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.gov-role {
    color: #38bdf8; 
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .government-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 480px) {
    .government-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   17. FORMULÁRIO DE PROMOÇÃO VOCACIONAL INTEGRADO AO LAYOUT ATUAL
   ========================================================================== */
.vocational-form-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(11, 34, 64, 0.02);
}

.vocational-clean-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.site-input-style {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #ffffff;
    color: #334155;
    transition: all 0.2s ease;
}

.site-input-style:focus {
    outline: none;
    border-color: #1e62be; 
    box-shadow: 0 0 0 3px rgba(30, 98, 190, 0.1);
}

@media (max-width: 992px) {
    .vocational-form-container {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    .vocational-clean-form .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   PORTAL DA TRANSPARÊNCIA - LAYOUT LINEAR CORPORATIVO
   ========================================================================== */
.transparency-linear-container {
    max-width: 1050px; 
    margin: 2rem auto;
    background: #ffffff;
}

.transparency-row-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    transition: all 0.2s ease;
}

.transparency-row-item:first-child {
    border-top: 1px solid #e2e8f0; 
}

.row-main-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 1rem;
    background-color: #ffffff;
}

.transparency-row-item:hover .row-main-trigger {
    background-color: #f8fafc; 
}

.row-title-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.row-index {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e62be;
    background-color: #eff6ff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-title-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b2240;
    margin: 0;
}

.row-status-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.row-status-text.waiting {
    color: #b45309;
    font-style: italic;
}

.row-expanded-content {
    padding: 0 1rem 1.8rem 4.7rem; 
    background-color: #ffffff;
}

.file-download-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-top: 0.5rem;
}

.border-top-dash {
    border-top: 1px dashed #e2e8f0;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
}

.file-meta {
    font-family: 'Inter', sans-serif;
}

.file-format-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ef4444;
    background-color: #fef2f2;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    border: 1px solid #fee2e2;
}

.file-format-badge.badge-gray {
    color: #475569;
    background-color: #f1f5f9;
    border-color: #e2e8f0;
}

.file-meta strong {
    font-size: 1.05rem;
    color: #1e293b;
}

.file-issuer {
    font-size: 0.9rem;
    color: #64748b;
    display: inline-block;
    margin-left: 4px;
}

.btn-row-download {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0b2240 !important;
    text-decoration: none;
    border-bottom: 2px solid #0b2240; 
    padding-bottom: 2px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-row-download:hover {
    color: #1e62be !important;
    border-bottom-color: #1e62be;
}

.status-inline-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #b45309;
    background-color: #fef3c7;
    padding: 6px 14px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .row-main-trigger {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .row-status-text {
        padding-left: 3.7rem;
    }
    .row-expanded-content {
        padding: 0 1rem 1.5rem 1rem;
    }
    .file-download-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .btn-row-download {
        border: 1px solid #0b2240;
        padding: 8px 16px;
        border-radius: 6px;
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   PORTAL DA TRANSPARÊNCIA - INTERATIVIDADE (ACCORDION & BUSCA)
   ========================================================================== */
.transparency-search-box {
    max-width: 1050px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Input de busca elegante com ícone lateral */
.search-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 1.2rem;
    color: #94a3b8;
    transition: all 0.25s ease;
}

.search-input-wrapper:focus-within {
    background-color: #ffffff;
    border-color: #1e62be;
    box-shadow: 0 0 0 4px rgba(30, 98, 190, 0.08);
    color: #1e62be;
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 1.1rem 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #0f172a;
    outline: none;
}

/* Filtros por Categorias em formato de tags rápidas */
.search-tags-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-filter-btn {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-filter-btn:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.tag-filter-btn.active {
    background-color: #0b2240;
    color: #ffffff;
    border-color: #0b2240;
}

/* Estrutura Linear das Linhas do Accordion */
.transparency-linear-container {
    max-width: 1050px; 
    margin: 2rem auto;
    background: #ffffff;
}

.transparency-row-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    transition: all 0.2s ease;
}

.transparency-row-item:first-child {
    border-top: 1px solid #e2e8f0; 
}

/* Cabeçalho clicável de cada linha */
.row-main-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 1rem;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.transparency-row-item:hover .row-main-trigger {
    background-color: #f8fafc; 
}

.row-title-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Círculo com numeração azul sequencial */
.row-index {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e62be;
    background-color: #eff6ff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.row-title-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b2240;
    margin: 0;
}

/* Lado direito do cabeçalho da linha */
.row-right-aside {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.row-status-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.row-status-text.waiting {
    color: #b45309;
    font-style: italic;
}

.arrow-indicator {
    color: #64748b;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

/* ESCONDE OS DOCUMENTOS INTERNOS POR PADRÃO */
.row-expanded-content {
    display: none; 
    padding: 0 1rem 1.8rem 4.7rem; 
    background-color: #ffffff;
    border-top: 1px dashed #f1f5f9;
}

/* Detalhes e links dos arquivos */
.file-download-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-top: 0.8rem;
}

.border-top-dash {
    border-top: 1px dashed #e2e8f0;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
}

.file-meta {
    font-family: 'Inter', sans-serif;
}

.file-format-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ef4444;
    background-color: #fef2f2;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    border: 1px solid #fee2e2;
}

.file-format-badge.badge-gray {
    color: #475569;
    background-color: #f1f5f9;
    border-color: #e2e8f0;
}

.file-meta strong {
    font-size: 1.05rem;
    color: #1e293b;
}

.file-issuer {
    font-size: 0.9rem;
    color: #64748b;
    display: inline-block;
    margin-left: 4px;
}

/* Link de download reto minimalista corporativo */
.btn-row-download {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0b2240 !important;
    text-decoration: none;
    border-bottom: 2px solid #0b2240; 
    padding-bottom: 2px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-row-download:hover {
    color: #1e62be !important;
    border-bottom-color: #1e62be;
}

.status-inline-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #b45309;
    background-color: #fef3c7;
    padding: 6px 14px;
    border-radius: 6px;
}

/* ==========================================================================
   CLASSES DISPARADAS VIA JAVASCRIPT (QUANDO A SANFONA ABRE)
   ========================================================================== */
.transparency-row-item.open-accordion .row-expanded-content {
    display: block; /* Revela a lista interna de arquivos */
}

.transparency-row-item.open-accordion .arrow-indicator {
    transform: rotate(180deg); /* Faz a setinha rodar suavemente para cima */
    color: #1e62be;
}

.transparency-row-item.open-accordion .row-main-trigger {
    background-color: #f8fafc;
}

/* ==========================================================================
   RESPONSIVIDADE DO PORTAL DE TRANSPARÊNCIA
   ========================================================================== */
@media (max-width: 768px) {
    .row-main-trigger {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .row-status-text {
        padding-left: 3.7rem;
    }
    .row-expanded-content {
        padding: 0 1rem 1.5rem 1rem;
    }
    .file-download-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .btn-row-download {
        border: 1px solid #0b2240;
        padding: 8px 16px;
        border-radius: 6px;
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   AJUSTE DO EMBLEMA NO BANNER DA TRANSPARÊNCIA (MAIOR E MAIS COMPACTO)
   ========================================================================== */
.hero-emblem-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem auto 1rem auto; /* Reduzido consideravelmente para aproximar os elementos */
    width: 100%;
}

.hero-emblem-img {
    max-width: 360px; /* Aumentado de 280px para 360px para dar mais destaque */
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Ajuste sutil para telas de celulares */
@media (max-width: 480px) {
    .hero-emblem-img {
        max-width: 280px; /* Tamanho otimizado para não estourar em smartphones */
    }
}



/* ==========================================================================
   19. PÁGINA DE PROJETOS - CARDS DIRETRIZES PREMIUM COM REVELAÇÃO NO HOVER
   ========================================================================== */
.internal-hero-projetos {
    background: linear-gradient(rgba(11, 34, 64, 0.75), rgba(15, 23, 42, 0.85)), 
                url('/public/imagens/bg-projetos.png') no-repeat center center/cover;
    color: #ffffff !important;
    padding: 5.5rem 0 4.5rem 0;
    text-align: center;
}

/* ==========================================================================
   FORÇAR REDUÇÃO DE ESPAÇAMENTO NA TRANSPARÊNCIA (ANTI-CONFLITO)
   ========================================================================== */
section.internal-hero.transparency-hero-page {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    height: auto !important; /* Zera qualquer altura fixa que possa estar segurando o banner aberto */
}

section.internal-hero.transparency-hero-page .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.transparency-hero-page .hero-emblem-wrapper {
    display: flex !important;
    justify-content: center !important;
    margin: 0rem auto 0rem auto !important;
}

.transparency-hero-page p {
    margin-top: 0.3rem !important;
    margin-bottom: 0 !important;
} h1 {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.projetos-modernos-branco {
    background-color: #ffffff !important; 
    padding: 85px 0;
}

.titulo-area-branca {
    text-align: center;
    margin-bottom: 50px;
}

.titulo-area-badge-branca {
    background: #1e62be;
    color: #ffffff;
    padding: 6px 16px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}

.titulo-area-branca h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #0b2240;
    margin: 20px 0 10px;
    font-weight: 700;
}

.titulo-area-branca p {
    color: #64748b;
    max-width: 630px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.5;
}

.cards-grid-modernos-branca {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* O card agora gerencia o efeito de transição da máscara e das letras */
.projetos-modernos-card-azul {
    border-radius: 14px;
    padding: 45px 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(11, 34, 64, 0.06);
    
    /* Força as propriedades da imagem de fundo a funcionarem de forma fixa */
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, background-color 0.4s ease;
}

/* Camada da máscara azul-marinho */
.projetos-modernos-card-azul::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11, 34, 64, 0.9), rgba(11, 34, 64, 0.94)) !important;
    z-index: -1;
    transition: opacity 0.4s ease;
}

/* Levanta o card ao passar o mouse */
.projetos-modernos-card-azul:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(11, 34, 64, 0.25);
}

/* NOVO: Remove COMPLETAMENTE o filtro azul e qualquer cor residual para mostrar a foto 100% limpa */
.projetos-modernos-card-azul:hover::before {
    opacity: 0 !important;
}

/* Prepara os textos e números internos para sumirem suavemente */
.projetos-modernos-card-azul h3,
.projetos-modernos-card-azul p,
.projetos-modernos-card-azul .numero-card {
    transition: opacity 0.35s ease, transform 0.35s ease;
    opacity: 1;
}

/* Faz tudo sumir e encolher de leve no hover */
.projetos-modernos-card-azul:hover h3,
.projetos-modernos-card-azul:hover p,
.projetos-modernos-card-azul:hover .numero-card {
    opacity: 0;
    transform: scale(0.96);
}

.projetos-modernos-card-azul .numero-card {
    font-size: 58px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 12px;
    right: 22px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.projetos-modernos-card-azul h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: #ffffff !important;
    margin-bottom: 12px;
    font-weight: 700;
    padding-right: 35px;
    line-height: 1.4;
}

.projetos-modernos-card-azul p {
    font-size: 0.95rem;
    color: #cbd5e1 !important;
    line-height: 1.6;
    margin: 0;
}

/* ================== SEÇÃO 2: OFICINAS (CINZA CORPORATIVO) ================== */
.oficinas-secao-limpa {
    background-color: #f0f4f9 !important; /* Apenas este bloco herda a cor cinza */
    padding: 90px 0;
    text-align: center;
}

.oficinas-titulo-azul {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #0b2240 !important;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.oficinas-grid-nomes-limpo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.oficinas-col-itens {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.nome-oficina-amarelo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #f59e0b !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    transition: transform 0.25s ease;
}

.nome-oficina-amarelo:hover {
    transform: scale(1.04);
    color: #1e62be !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .oficinas-secao-limpa { padding: 60px 0; }
    .oficinas-titulo-azul { font-size: 2.4rem; margin-bottom: 35px; }
    .oficinas-grid-nomes-limpo { grid-template-columns: 1fr; gap: 35px; }
    .nome-oficina-amarelo { font-size: 1.7rem; }
}

/* ==========================================================================
   21. SEÇÃO DE OFICINAS - BOX AZUL SÓLIDO PREMIUM COM TEXTO AMARELO E BRANCO
   ========================================================================== */
.oficinas-secao-limpa {
    background-color: #ffffff !important; /* Mantém o fundo cinza sutil ao redor da caixa */
    padding: 70px 0;
    text-align: center;
}

/* Quadrado Bonito Ajustado para Azul Sólido Profundo */
.oficinas-box-borda {
    background-color: #0b2240; /* Fundo interno alterado para o Azul Marinho Oficial */
    border: 1px solid rgba(11, 34, 64, 0.1); /* Ajustada a borda para ficar sutil já que o fundo é escuro */
    border-radius: 14px; 
    padding: 55px 40px 70px 40px; 
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(11, 34, 64, 0.15); /* Sombra mais imponente para dar profundidade */
}

/* Título "OFICINAS" alterado para Branco Puro */
.oficinas-titulo-azul {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff !important; /* Cor alterada para Branco */
    letter-spacing: 2px;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.oficinas-grid-nomes-limpo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.oficinas-col-itens {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Mantido o Amarelo Ouro de Alta Definição para as Oficinas */
.nome-oficina-amarelo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #f59e0b !important; /* Amarelo mantido conforme solicitado */
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    transition: transform 0.25s ease;
}

/* Efeito dinâmico elegante ao passar o mouse */
.nome-oficina-amarelo:hover {
    transform: scale(1.04);
    color: #ffffff !important; /* Transiciona sutilmente para branco no hover */
}

/* Responsividade Adaptada */
@media (max-width: 768px) {
    .oficinas-secao-limpa {
        padding: 40px 0;
    }
    .oficinas-box-borda {
        padding: 40px 20px 50px 20px;
        margin: 0 15px;
    }
    .oficinas-titulo-azul {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    .oficinas-grid-nomes-limpo {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .nome-oficina-amarelo {
        font-size: 1.7rem;
    }
}

/* ==========================================================================
   22. SEÇÃO GALERIA - CARROSSEL SLIDER INTERATIVO CLEAN
   ========================================================================== */
.galeria-pratica-secao {
    background-color: #f0f4f9 !important;
    padding: 80px 0;
}

.galeria-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-slider-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(11, 34, 64, 0.08);
    background-color: #f8fafc;
}

.galeria-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.galeria-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.galeria-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover; /* Recorta a imagem sem distorcer para preencher o bloco */
    display: block;
}

/* Setas de navegação minimalistas */
.galeria-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0b2240;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.galeria-nav-btn:hover {
    background: #1e62be;
    transform: translateY(-50%) scale(1.08);
}

.galeria-nav-btn.prev {
    left: -25px;
}

.galeria-nav-btn.next {
    right: -25px;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    .galeria-slide img {
        height: 300px;
    }
    .galeria-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .galeria-nav-btn.prev { left: -15px; }
    .galeria-nav-btn.next { right: -15px; }
}

/* ==========================================================================
   SUPORTE DE RESPONSIVIDADE CORRIGIDO (PADRÃO PARA COMPUTADOR, TABLET E CELULAR)
   ========================================================================== */

/* 1. REGRA PADRÃO PARA COMPUTADORES (TELAS GRANDES) */
.menu-toggle {
    display: none; /* Garante que o botão hambúrguer NUNCA apareça no PC */
}

/* 2. REGRA PARA TABLETS E CELULARES (MUDANÇA DE LAYOUT ABAIXO DE 1024px) */
@media (max-width: 1024px) {
    
    html, body {
        overflow-x: hidden;
    }

    .header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .main-logo-img {
        height: 50px !important;
    }

    /* Ativa e estiliza o botão hambúrguer apenas nos dispositivos móveis */
    .menu-toggle {
        display: block !important;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .menu-toggle .bar {
        display: block;
        width: 26px;
        height: 3px;
        margin: 5px 0;
        background-color: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Efeito de rotação do 'X' ao clicar */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Configuração do menu oculto que cai em lista */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: -20px;
        width: calc(100% + 40px);
        background-color: #0b2240;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        display: block !important; /* Abre apenas se a classe active estiver injetada pelo JS */
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .nav-menu ul li {
        width: 100%;
    }

    .nav-menu ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        width: 100%;
    }

    /* Ajustes de textos para não cortar em telas menores */
    h1, .internal-hero-projetos h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
}

/* ==========================================================================
   SEÇÃO DO MAPA DO GOOGLE MAPS INTERATIVO (EXPANDIDO / TELA CHEIA)
   ========================================================================== */
.mapa-secao-container {
    background-color: #ffffff;
    padding: 2rem 0 4.5rem 0; /* Dá um respiro sutil no topo e mantém o espaço na base */
    width: 100%;
}

.mapa-wrapper-box {
    width: 94%; /* Deixa uma margem elegante nas bordas para não colar 100% no vidro do monitor */
    max-width: 100% !important; /* Remove o limite antigo de 720px */
    margin: 0 auto;
    border-radius: 16px; /* Mantém os cantos arredondados modernos */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 34, 64, 0.06);
    border: 1px solid #e2e8f0;
}

.mapa-wrapper-box iframe {
    display: block;
    width: 100%;
    height: 500px; /* Aumentamos um pouco a altura para acompanhar a nova largura imponente */
}

/* Ajuste de responsividade para Celulares */
@media (max-width: 768px) {
    .mapa-secao-container {
        padding: 1.5rem 0 3rem 0;
    }
    .mapa-wrapper-box {
        width: 92%; /* Ajuste fino para smartphones */
    }
    .mapa-wrapper-box iframe {
        height: 350px; /* Altura confortável para o dedo navegar no celular */
    }
}

/* ==========================================================================
   FORMULÁRIO ALINHADO NA SEÇÃO DE CONTATOS (STANDALONE)
   ========================================================================== */
.contact-footer-row-combined {
    grid-column: span 2; /* Ocupa as colunas correspondentes no grid principal */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #f1f5f9;
}

/* Coluna dos horários e botão */
.contact-hours-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 200px;
}

/* Coluna do formulário */
.contact-form-column {
    flex: 1.1; /* Dá um pouco mais de espaço para o formulário respirar */
    width: 100%;
}

/* O Quadrado do Formulário Arredondado */
.vocational-form-card-standalone {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(11, 34, 64, 0.05); /* Sombra elegante idêntica ao original */
    border: 1px solid #f1f5f9;
}

.contact-input-group {
    margin-bottom: 1rem;
}

.contact-input-group input {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #334155;
    background-color: #ffffff;
    outline: none;
    transition: all 0.2s ease;
}

.contact-input-group input:focus {
    border-color: #1e62be;
    box-shadow: 0 0 0 3px rgba(30, 98, 190, 0.1);
}

/* Alinhamento do botão para a direita */
.contact-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.2rem;
}

.btn-submit-contact {
    background-color: #1e62be;
    color: #ffffff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 11px 32px;
    border-radius: 24px; /* Formato oval idêntico ao modelo */
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(30, 98, 190, 0.15);
}

.btn-submit-contact:hover {
    background-color: #154fa1;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(30, 98, 190, 0.25);
}

/* Título interno do Formulário Quadrado */
.form-standalone-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0b2240;
    margin-top: 0;
    margin-bottom: 1.5rem; /* Espaço elegante antes do primeiro input */
    letter-spacing: -0.5px;
}

/* Responsividade para Telas Menores (Celular e Tablet) */
@media (max-width: 991px) {
    .contact-footer-row-combined {
        flex-direction: column;
        gap: 2.5rem;
    }
    .contact-hours-column {
        min-height: auto;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   SEÇÃO PALCO DA VIDA NA HOME
   ========================================================================== */
.palco-vida-section {
    background-color: #f8fafc; /* Um cinza bem clarinho para dar contraste na home */
    text-align: center;
    padding: 5rem 0; /* Espaçamento confortável nas margens */
}

/* Estilização do cabeçalho */
.palco-vida-header {
    margin-bottom: 2.5rem;
    text-align: center; 

}

.palco-badge {
    background: #eff6ff;
    color: #1e62be;
    padding: 6px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.palco-vida-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b2240;
    margin: 0;
}

/* Box da imagem centralizada */
.palco-vida-banner-box {
    max-width: 480px; /* Largura máxima confortável para leitura em desktops */
    margin: 0 auto;
    background-color: #ffffff;
    padding: 1.2rem; /* Moldura branca sutil para simular um pôster */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(11, 34, 64, 0.05); /* Sombra suave para flutuar no fundo */
    border: 1px solid #e2e8f0;
}

.palco-vida-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Arredondamento sutil nos cantos da foto */
}

/* Responsividade para tablets e celulares */
@media (max-width: 768px) {
    .palco-vida-section {
        padding: 3.5rem 0;
    }
    .palco-vida-header h2 {
        font-size: 2rem;
    }
    .palco-vida-banner-box {
        padding: 0.8rem; /* Reduz a moldura branca em telas pequenas */
    }
}

/* ==========================================================================
   QR CODE PIX NA SEÇÃO DE DOAÇÕES
   ========================================================================== */
.pix-qr-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pix-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qr-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(11, 34, 64, 0.04);
}

.qr-code-img {
    width: 170px; /* Tamanho ideal para leitura fácil sem exagerar */
    height: 170px;
    object-fit: contain;
    display: block;
}

.qr-code-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.8rem;
}


/* Container da Grade de Fotos */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Cria 3 colunas de tamanhos iguais */
    gap: 20px; /* Espaçamento entre as fotos */
    margin-top: 30px;
}

/* Moldura de cada foto */
.photo-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 3; /* Mantém todas as fotos no mesmo formato e proporção */
    background-color: #eee;
}

/* Ajuste e efeito nas imagens */
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta suavemente a imagem para preencher sem distorcer */
    transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse */
.photo-item:hover img {
    transform: scale(1.05); /* Leve zoom moderno */
}

/* Ajuste Responsivo para Celulares e Tablets */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 fotos por linha em tablets */
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr; /* 1 foto por linha em telas pequenas de celular */
    }
}

/* projetos ativos

/* Container limitado com a mesma estrutura do banner antigo */
.banner-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

/* Área das imagens */
.banner-track {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide {
    display: none;
    width: 100%;
    text-align: center;
}

.banner-slide.active {
    display: block;
}

/* Garante que o banner apareça INTEIRO sem cortes e sem estourar */
.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 80vh; /* Impede que passe da altura da tela */
    object-fit: contain; /* Encaixa a imagem inteira sem zoom */
    display: block;
    margin: 0 auto;
}

/* Setas flutuantes sobre a imagem */
.banner-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    background-color: rgba(10, 34, 64, 0.75) !important;
    color: #ffffff !important;
    border: none !important;
    font-size: 18px !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease !important;
}

.banner-btn:hover {
    background-color: rgba(10, 34, 64, 0.95) !important;
}

.prev-banner {
    left: 15px !important;
}

.next-banner {
    right: 15px !important;
}

/* Pontos indicadores na parte inferior */
.banner-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #0a2240;
}
