/* ========================================
   COLAG - Colégio Almeida Garrett
   Custom Styles
   ======================================== */

/* ========================================
   CSS VARIABLES (Custom Properties)
   Define as cores principais da marca COLAG
   ======================================== */
:root {
    /* Cor azul escuro principal da marca */
    --colag-blue: #1e3a8a;
    
    /* Cor azul claro para hover e destaques */
    --colag-light-blue: #3b82f6;
    
    /* Cor amarela da marca (usada no logo) */
    --colag-yellow: #fbbf24;
    
    /* Cor cinza para textos secundários */
    --colag-gray: #6b7280;
}

/* ========================================
   BASE STYLES
   Estilos fundamentais aplicados ao body
   ======================================== */
body {
    /* Fonte Inter do Google Fonts para design moderno */
    font-family: 'Inter', sans-serif;
}

/* Smooth scroll para navegação com âncoras */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Compensa a altura da navbar */
}

/* ========================================
   NAVBAR CUSTOM STYLES
   Personalização da barra de navegação
   ======================================== */
.navbar-custom {
    /* Fundo branco para contraste com o conteúdo */
    background-color: white !important;
    
    /* Sombra sutil para dar profundidade à navbar */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    
    /* Espaçamento vertical interno */
    padding: 1rem 0;
    
    /* Z-index alto para ficar na frente */
    z-index: 1000;
    position: relative;
}

/* ========================================
   LOGO STYLES
   Estilos para o logo e container do logo
   ======================================== */
.logos-container {
    /* Flexbox para alinhar logos horizontalmente */
    display: flex;
    
    /* Centraliza verticalmente */
    align-items: center;
    
    /* Espaçamento entre as logos */
    gap: 1rem;
}

.colag-logo {
    /* Flexbox para alinhar logo e texto horizontalmente */
    display: flex;
    
    /* Centraliza verticalmente */
    align-items: center;
    
    /* Remove sublinhado padrão dos links */
    text-decoration: none;
}

.etapa-logo {
    /* Flexbox para alinhar logo */
    display: flex;
    
    /* Centraliza verticalmente */
    align-items: center;
    
    /* Remove sublinhado padrão dos links */
    text-decoration: none;
}

/* Logo ETAPA no menu de navegação */
.etapa-logo-nav {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.etapa-logo-img {
    height: 2.5rem; /* 40px */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.etapa-logo-img:hover {
    transform: scale(1.05);
}

/* Classe para altura da logo COLAG - aumentada */
.h-12 {
    height: 3.75rem; /* 60px */
}

/* Classe para largura automática - mantém proporções da imagem */
.w-auto {
    width: auto;
}

/* ========================================
   NAVIGATION LINKS
   Estilos para os links do menu de navegação
   ======================================== */
.navbar-nav .nav-link {
    /* Cor azul escuro da marca para os links */
    color: var(--colag-blue) !important;
    
    /* Peso da fonte médio para boa legibilidade */
    font-weight: 500;
    
    /* Tamanho ligeiramente menor que o padrão */
    font-size: 0.95rem;
    
    /* Margem horizontal entre os links */
    margin: 0 0.5rem;
    
    /* Padding vertical para área clicável */
    padding: 0.5rem 0;
    
    /* Transição suave para hover */
    transition: color 0.3s ease;
}

/* Efeito hover nos links de navegação */
.navbar-nav .nav-link:hover {
    /* Muda para azul claro no hover */
    color: var(--colag-light-blue) !important;
}

/* Estilos para botões no menu (Educatudo e Portal Educacional) */
.navbar-nav .nav-link-button {
    /* Cor de fundo azul da marca */
    background-color: var(--colag-blue);
    
    /* Cor do texto branca para contraste */
    color: white !important;
    
    /* Bordas arredondadas */
    border-radius: 0.375rem;
    
    /* Padding horizontal maior para parecer botão */
    padding: 0.5rem 1rem !important;
    
    /* Margem horizontal entre os botões */
    margin: 0 0.25rem;
    
    /* Peso da fonte mais forte */
    font-weight: 600;
    
    /* Transição suave */
    transition: all 0.3s ease;
}

/* Efeito hover nos botões do menu */
.navbar-nav .nav-link-button:hover {
    /* Muda para azul claro no hover */
    background-color: var(--colag-light-blue);
    
    /* Mantém a cor do texto branca */
    color: white !important;
    
    /* Transformação sutil */
    transform: translateY(-1px);
    
    /* Sombra no hover */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ========================================
   DROPDOWN STYLES
   Estilos para o menu dropdown do item COLAG
   ======================================== */
.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    /* Remove a seta padrão do Bootstrap e cria uma customizada */
    content: '▼';
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.65rem;
    color: var(--colag-yellow);
    transition: all 0.3s ease;
    vertical-align: middle;
    line-height: 1;
    border: none;
    width: auto;
    height: auto;
}

.dropdown-toggle:hover::after {
    color: var(--colag-yellow);
    transform: translateY(2px);
}

.dropdown-toggle.show::after {
    transform: rotate(180deg);
    color: var(--colag-yellow);
}

/* Linha amarela abaixo da seta quando hover ou ativo */
.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--colag-yellow);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.dropdown-toggle:hover::before,
.dropdown-toggle.show::before {
    width: 80%;
    opacity: 1;
}

/* Estilos do menu dropdown */
.dropdown-menu {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 240px;
}

/* Itens do dropdown */
.dropdown-item {
    color: var(--colag-blue);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover {
    background-color: #f0f9ff;
    color: var(--colag-light-blue);
    transform: translateX(4px);
}

.dropdown-item:active {
    background-color: #e0f2fe;
    color: var(--colag-blue);
}

/* ========================================
   MOBILE TOGGLE BUTTON
   Estilos para o botão hambúrguer no mobile
   ======================================== */
.navbar-toggler {
    /* Remove borda padrão do Bootstrap */
    border: none;
    
    /* Remove padding padrão */
    padding: 0;
}

/* Remove foco outline do botão toggle */
.navbar-toggler:focus {
    box-shadow: none;
}

/* Customiza o ícone hambúrguer para cor da marca */
.navbar-toggler-icon {
    /* SVG customizado com cor azul da marca */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 58, 138, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   RESPONSIVE DESIGN
   Media queries para adaptação em dispositivos móveis
   ======================================== */
@media (max-width: 991.98px) {
    /* Menu mobile - centraliza os links */
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Ajusta espaçamento dos links no mobile */
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
    
    /* Ajusta botões no menu mobile */
    .navbar-nav .nav-link-button {
        display: inline-block;
        margin: 0.5rem auto;
        width: auto;
    }
    
    /* Logo ETAPA no menu mobile */
    .etapa-logo-nav {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1rem;
        margin-top: 0.5rem;
        justify-content: center;
    }
    
    .etapa-logo-img {
        height: 2.25rem; /* 36px no mobile */
    }
}
.yellow-text {
    color: var(--colag-yellow);
}

/* Classe para texto azul da marca COLAG */
.colag-blue-text {
    color: var(--colag-blue);
}

/* ========================================
   HERO SECTION STYLES
   Seção principal com layout de duas colunas
   ======================================== */
.hero-section {
    /* Altura mínima para ocupar boa parte da tela */
    min-height: 80vh;
    
    /* Padding reduzido para deixar mais colado */
    padding: 2rem 0;
    
    /* Gradiente de fundo sutil com cores da marca */
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.05) 0%, 
        rgba(59, 130, 246, 0.08) 25%, 
        rgba(251, 191, 36, 0.05) 50%, 
        rgba(255, 255, 255, 0.9) 75%, 
        rgba(255, 255, 255, 1) 100%);
    
    /* Permite que a imagem se estenda além dos limites */
    overflow: visible;
    
    /* Posição relativa para contexto de z-index */
    position: relative;
}

/* Container da coluna de conteúdo */
.hero-content {
    /* Padding padrão para alinhamento com o resto do site */
    padding: 2rem 0;
    
    /* Centraliza verticalmente */
    display: flex;
    align-items: center;
    
    /* Z-index menor para ficar atrás da imagem */
    z-index: 1;
    
    /* Posição relativa para contexto de z-index */
    position: relative;
}

/* Container do texto principal */
.hero-text {
    /* Largura máxima para boa legibilidade */
    max-width: 600px;
}

/* Título principal da hero section */
.hero-title {
    /* Tamanho grande e responsivo */
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1.5rem;
}

/* Descrição da hero section */
.hero-description {
    /* Tamanho médio para boa legibilidade */
    font-size: 1.25rem;
    line-height: 1.6;
    
    /* Cor cinza para contraste */
    color: var(--colag-gray);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 2.5rem;
}

/* Container dos botões */
.hero-buttons {
    /* Margem inferior para espaçamento */
    margin-bottom: 3rem;
}

/* Estilos customizados para os botões */
.btn-primary {
    /* Cor de fundo azul da marca */
    background-color: var(--colag-blue);
    border-color: var(--colag-blue);
    
    /* Padding para botões grandes */
    padding: 0.75rem 2rem;
    
    /* Tamanho da fonte */
    font-size: 1.1rem;
    font-weight: 500;
    
    /* Transição suave para hover */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    /* Escurece ligeiramente no hover */
    background-color: #1e40af;
    border-color: #1e40af;
}

.btn-outline-primary {
    /* Cor da borda azul da marca */
    border-color: var(--colag-blue);
    color: var(--colag-blue);
    
    /* Padding para botões grandes */
    padding: 0.75rem 2rem;
    
    /* Tamanho da fonte */
    font-size: 1.1rem;
    font-weight: 500;
    
    /* Transição suave para hover */
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    /* Fundo azul no hover */
    background-color: var(--colag-blue);
    border-color: var(--colag-blue);
}

/* Container das estatísticas */
.hero-stats {
    /* Flexbox para alinhar horizontalmente */
    display: flex;
    
    /* Espaçamento entre os itens */
    gap: 2rem;
    
    /* Flex wrap para responsividade */
    flex-wrap: wrap;
}

/* Item individual de estatística */
.stat-item {
    /* Centraliza o conteúdo */
    text-align: center;
    
    /* Largura mínima para consistência */
    min-width: 120px;
}

/* Número da estatística */
.stat-number {
    /* Tamanho grande e cor azul da marca */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--colag-blue);
    
    /* Margem inferior pequena */
    margin-bottom: 0.5rem;
}

/* Texto descritivo da estatística */
.stat-text {
    /* Tamanho menor e cor cinza */
    font-size: 0.95rem;
    color: var(--colag-gray);
    
    /* Peso da fonte normal */
    font-weight: 400;
}

/* Container da coluna da imagem */
.hero-image {
    /* Padding mínimo para deixar bem colado */
    padding: 0;
    
    /* Centraliza verticalmente */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Posição relativa para sobreposição */
    position: relative;
    
    /* Permite que a imagem se estenda além dos limites */
    overflow: visible;
}

/* Container da imagem */
.image-container {
    /* Posição relativa para overflow */
    position: relative;
    
    /* Largura ainda maior para mais destaque */
    width: 140%;
    
    /* Altura bem maior para impacto visual */
    min-height: 700px;
    
    /* Sem bordas arredondadas */
    border-radius: 0;
    
    /* Overflow hidden para controle da imagem */
    overflow: hidden;
    
    /* Sem sombra */
    box-shadow: none;
    
    /* Z-index para ficar sobre o conteúdo */
    z-index: 2;
    
    /* Posiciona mais à esquerda para ficar próxima da borda vermelha */
    margin-left: -20%;
    
    /* Sem fundo */
    background: transparent;
}

/* Imagem da hero section */
.hero-img {
    /* Largura total do container */
    width: 100%;
    
    /* Altura total do container */
    height: 100%;
    
    /* Object fit para manter proporções sem cortar */
    object-fit: contain;
    object-position: center;
    
    /* Posição absoluta para controle */
    position: absolute;
    top: 0;
    left: 0;
}

/* ========================================
   RESPONSIVE DESIGN - HERO SECTION
   Media queries para dispositivos móveis
   ======================================== */
@media (max-width: 991.98px) {
    /* Ajusta altura mínima no mobile */
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    /* Padding menor no mobile */
    .hero-content {
        padding: 1rem 0;
    }
    
    /* Título menor no mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Descrição menor no mobile */
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* Botões em coluna no mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Botões com largura total no mobile */
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Estatísticas em coluna no mobile */
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    /* Padding mínimo para a imagem no mobile */
    .hero-image {
        padding: 1rem 0;
        justify-content: center;
    }
    
    /* Altura ajustada para a imagem no mobile */
    .image-container {
        min-height: 350px;
        border-radius: 0;
        margin-left: 0;
        margin-right: auto;
        box-shadow: none;
        width: 100%;
        background: transparent;
    }
    
    /* Ajusta padding do conteúdo no mobile */
    .hero-content {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    /* Título ainda menor em telas muito pequenas */
    .hero-title {
        font-size: 2rem;
    }
    
    /* Padding ainda menor */
    .hero-content {
        padding: 1rem;
    }
    
    /* Estatísticas em coluna única */
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ========================================
   WHY COLAG SECTION STYLES
   Seção com cards de características
   ======================================== */
.why-colag-section {
    /* Padding vertical para espaçamento */
    padding: 5rem 0;
    
    /* Fundo branco */
    background-color: white;
}

/* Container do cabeçalho da seção */
.section-header {
    /* Margem inferior para espaçamento */
    margin-bottom: 4rem;
}

/* Título da seção */
.section-title {
    /* Tamanho grande e cor azul da marca */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--colag-blue);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1rem;
}

/* Subtítulo da seção */
.section-subtitle {
    /* Tamanho médio e cor cinza */
    font-size: 1.1rem;
    color: var(--colag-gray);
    
    /* Largura máxima para boa legibilidade */
    max-width: 600px;
    
    /* Centraliza horizontalmente */
    margin: 0 auto;
    
    /* Altura da linha para boa legibilidade */
    line-height: 1.6;
}

/* Card de característica */
.feature-card {
    /* Fundo branco com bordas arredondadas */
    background-color: white;
    border-radius: 1rem;
    
    /* Padding interno */
    padding: 2rem 1.5rem;
    
    /* Sombra sutil para profundidade */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Altura uniforme para todos os cards */
    height: 100%;
    
    /* Transição suave para hover */
    transition: all 0.3s ease;
    
    /* Centraliza o conteúdo */
    text-align: center;
    
    /* Border sutil */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Efeito hover nos cards */
.feature-card:hover {
    /* Eleva o card no hover */
    transform: translateY(-5px);
    
    /* Sombra mais pronunciada */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Container do ícone */
.feature-icon {
    /* Largura e altura fixas para consistência */
    width: 80px;
    height: 80px;
    
    /* Fundo azul da marca */
    background-color: var(--colag-blue);
    
    /* Bordas arredondadas para círculo */
    border-radius: 50%;
    
    /* Centraliza o ícone */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Margem inferior para espaçamento */
    margin: 0 auto 1.5rem;
    
    /* Transição suave */
    transition: all 0.3s ease;
}

/* Ícone dentro do container */
.feature-icon i {
    /* Tamanho do ícone */
    font-size: 2rem;
    
    /* Cor branca para contraste */
    color: white;
}

/* Título do card */
.feature-title {
    /* Tamanho médio e cor azul da marca */
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--colag-blue);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1rem;
    
    /* Altura da linha */
    line-height: 1.3;
}

/* Descrição do card */
.feature-description {
    /* Tamanho pequeno e cor cinza */
    font-size: 0.95rem;
    color: var(--colag-gray);
    
    /* Altura da linha para boa legibilidade */
    line-height: 1.6;
    
    /* Margem zero para controle */
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN - WHY COLAG SECTION
   Media queries para dispositivos móveis
   ======================================== */
@media (max-width: 991.98px) {
    /* Padding reduzido no mobile */
    .why-colag-section {
        padding: 3rem 0;
    }
    
    /* Título menor no mobile */
    .section-title {
        font-size: 2rem;
    }
    
    /* Subtítulo menor no mobile */
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Margem menor no mobile */
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Padding menor nos cards no mobile */
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    /* Ícone menor no mobile */
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    /* Ícone menor no mobile */
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    /* Título menor no mobile */
    .feature-title {
        font-size: 1.1rem;
    }
    
    /* Descrição menor no mobile */
    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    /* Padding ainda menor em telas pequenas */
    .why-colag-section {
        padding: 2rem 0;
    }
    
    /* Título ainda menor */
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Margem menor */
    .section-header {
        margin-bottom: 2rem;
    }
}

/* ========================================
   EDUCATUDO SECTION STYLES
   Seção sobre a plataforma EducaTudo
   ======================================== */
.educatudo-section {
    /* Padding vertical para espaçamento */
    padding: 5rem 0;
    
    /* Fundo com gradiente sutil */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Card principal do EducaTudo */
.educatudo-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.educatudo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Container do conteúdo do card */
.educatudo-card-content {
    padding: 3rem 2.5rem;
}

/* Header com logo */
.educatudo-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Logo pequena do EducaTudo */
.educatudo-logo-small {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

/* Texto introdutório */
.educatudo-intro {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

/* Texto do conteúdo */
.educatudo-text {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.educatudo-text strong {
    color: var(--colag-blue);
    font-weight: 600;
}

/* Texto destacado */
.educatudo-highlight {
    font-size: 1.05rem;
    color: var(--colag-blue);
    line-height: 1.7;
    margin: 1.75rem 0 2rem 0;
    font-weight: 600;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 4px solid var(--colag-yellow);
}

/* Container da Tudinha */
.tudinha-container {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tudinha-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Imagem da Tudinha */
.tudinha-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    width: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.tudinha-image:hover {
    transform: scale(1.05);
}

/* Container do botão */
.educatudo-button-container {
    display: flex;
    align-items: center;
}

/* Botão EducaTudo */
.educatudo-btn {
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.educatudo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* Estilos do Modal EducaTudo */
.modal-logo-container {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.modal-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.educatudo-modal-content {
    padding: 1rem 0;
}

.educatudo-modal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.modal-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--colag-blue);
    margin-bottom: 2rem !important;
}

.educatudo-benefits {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.educatudo-benefits li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.educatudo-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--colag-yellow);
    font-weight: bold;
    font-size: 1.5rem;
}

.modal-conclusion {
    font-weight: 500;
    color: var(--colag-blue) !important;
    margin-top: 1.5rem !important;
}

/* Responsive styles para Educatudo */
@media (max-width: 991.98px) {
    .educatudo-section {
        padding: 3rem 0;
    }
    
    .educatudo-card-content {
        padding: 2.5rem 2rem;
    }
    
    .tudinha-container {
        padding: 2rem 1.5rem;
        min-height: 400px;
    }
    
    .educatudo-header {
        margin-bottom: 1.25rem;
    }
    
    .educatudo-logo-small {
        max-height: 55px;
    }
    
    .educatudo-intro {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .educatudo-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .educatudo-highlight {
        font-size: 0.95rem;
        margin: 1.5rem 0 1.75rem 0;
        padding-left: 1.25rem;
    }
    
    .tudinha-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .educatudo-section {
        padding: 2rem 0;
    }
    
    .educatudo-card {
        border-radius: 0.75rem;
    }
    
    .educatudo-card-content {
        padding: 2rem 1.5rem;
    }
    
    .tudinha-container {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }
    
    .educatudo-header {
        margin-bottom: 1.25rem;
    }
    
    .educatudo-logo-small {
        max-height: 50px;
    }
    
    .educatudo-intro {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .educatudo-text {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
        text-align: left;
    }
    
    .educatudo-highlight {
        font-size: 0.9rem;
        margin: 1.25rem 0 1.75rem 0;
        padding-left: 1rem;
        border-left-width: 3px;
    }
    
    .tudinha-image {
        max-height: 280px;
    }
    
    .educatudo-btn {
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .educatudo-modal-content p {
        font-size: 1rem;
    }
    
    .educatudo-benefits li {
        font-size: 1rem;
    }
}

/* ========================================
   EDUCATION LEVELS SECTION STYLES
   Seção com cards dos níveis de ensino
   ======================================== */
.education-levels-section {
    /* Padding vertical para espaçamento */
    padding: 5rem 0;
    
    /* Fundo cinza claro */
    background-color: #f8f9fa;
}

/* Card de nível de ensino */
.education-card {
    /* Fundo branco com bordas arredondadas */
    background-color: white;
    border-radius: 1rem;
    
    /* Padding interno */
    padding: 2rem 1.5rem;
    
    /* Sombra sutil para profundidade */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Altura uniforme para todos os cards */
    height: 100%;
    
    /* Transição suave para hover */
    transition: all 0.3s ease;
    
    /* Centraliza o conteúdo */
    text-align: center;
    
    /* Border sutil */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Efeito hover nos cards de educação */
.education-card:hover {
    /* Eleva o card no hover */
    transform: translateY(-5px);
    
    /* Sombra mais pronunciada */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Container do ícone de educação */
.education-icon {
    /* Largura e altura fixas para consistência */
    width: 80px;
    height: 80px;
    
    /* Bordas arredondadas para círculo */
    border-radius: 50%;
    
    /* Centraliza o ícone */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Margem inferior para espaçamento */
    margin: 0 auto 1.5rem;
    
    /* Transição suave */
    transition: all 0.3s ease;
}

/* Cores específicas para cada nível de ensino */
.education-icon-purple {
    background-color: #8b5cf6; /* Roxo */
}

.education-icon-blue {
    background-color: var(--colag-blue); /* Azul COLAG */
}

.education-icon-green {
    background-color: #10b981; /* Verde */
}

.education-icon-orange {
    background-color: #f59e0b; /* Laranja */
}

/* Ícone dentro do container */
.education-icon i {
    /* Tamanho do ícone */
    font-size: 2rem;
    
    /* Cor branca para contraste */
    color: white;
}

/* Título do card de educação */
.education-title {
    /* Tamanho médio e cor azul da marca */
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--colag-blue);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 0.5rem;
    
    /* Altura da linha */
    line-height: 1.3;
}

/* Faixa etária */
.education-age {
    /* Tamanho pequeno e cor amarela */
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--colag-yellow);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1rem;
}

/* Descrição do card de educação */
.education-description {
    /* Tamanho pequeno e cor cinza */
    font-size: 0.9rem;
    color: var(--colag-gray);
    
    /* Altura da linha para boa legibilidade */
    line-height: 1.6;
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1.5rem;
}

/* Lista de características */
.education-features {
    /* Remove estilo padrão da lista */
    list-style: none;
    
    /* Padding e margem zero */
    padding: 0;
    margin: 0 0 1.5rem 0;
    
    /* Alinha à esquerda para melhor legibilidade */
    text-align: left;
}

/* Item da lista de características */
.education-features li {
    /* Tamanho pequeno e cor cinza */
    font-size: 0.85rem;
    color: var(--colag-gray);
    
    /* Padding para espaçamento */
    padding: 0.25rem 0;
    
    /* Posição relativa para pseudo-elemento */
    position: relative;
    
    /* Padding esquerdo para o bullet */
    padding-left: 1.5rem;
}

/* Bullet customizado com cor amarela */
.education-features li::before {
    /* Conteúdo do bullet */
    content: "•";
    
    /* Cor amarela */
    color: var(--colag-yellow);
    
    /* Posição absoluta */
    position: absolute;
    left: 0;
    
    /* Tamanho do bullet */
    font-size: 1.2rem;
    font-weight: bold;
}

/* Botão do card de educação */
.education-btn {
    /* Padding para botão médio */
    padding: 0.5rem 1.5rem;
    
    /* Tamanho da fonte */
    font-size: 0.9rem;
    font-weight: 500;
    
    /* Border radius */
    border-radius: 0.5rem;
    
    /* Transição suave */
    transition: all 0.3s ease;
    
    /* Largura total */
    width: 100%;
}

/* ========================================
   RESPONSIVE DESIGN - EDUCATION LEVELS
   Media queries para dispositivos móveis
   ======================================== */
@media (max-width: 991.98px) {
    /* Padding reduzido no mobile */
    .education-levels-section {
        padding: 3rem 0;
    }
    
    /* Margem menor no mobile */
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Padding menor nos cards no mobile */
    .education-card {
        padding: 1.5rem 1rem;
    }
    
    /* Ícone menor no mobile */
    .education-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    /* Ícone menor no mobile */
    .education-icon i {
        font-size: 1.5rem;
    }
    
    /* Título menor no mobile */
    .education-title {
        font-size: 1.1rem;
    }
    
    /* Faixa etária menor no mobile */
    .education-age {
        font-size: 0.85rem;
    }
    
    /* Descrição menor no mobile */
    .education-description {
        font-size: 0.85rem;
    }
    
    /* Lista menor no mobile */
    .education-features li {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    /* Padding ainda menor em telas pequenas */
    .education-levels-section {
        padding: 2rem 0;
    }
    
    /* Margem menor */
    .section-header {
        margin-bottom: 2rem;
    }
}

/* ========================================
   INFRASTRUCTURE SECTION STYLES
   Seção com galeria de imagens da infraestrutura
   ======================================== */
.infrastructure-section {
    /* Padding vertical para espaçamento */
    padding: 5rem 0;
    
    /* Fundo branco */
    background-color: white;
}

/* Container da galeria de imagens */
.image-gallery {
    /* Margem inferior para espaçamento */
    margin-bottom: 4rem;
}

/* Item da galeria */
.gallery-item {
    /* Posição relativa para hover effects */
    position: relative;
    
    /* Border radius sutil */
    border-radius: 0.75rem;
    
    /* Overflow hidden para bordas arredondadas */
    overflow: hidden;
    
    /* Sombra sutil */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Transição suave */
    transition: all 0.3s ease;
    
    /* Altura fixa para consistência */
    height: 250px;
}

/* Efeito hover nos itens da galeria */
.gallery-item:hover {
    /* Eleva ligeiramente no hover */
    transform: translateY(-3px);
    
    /* Sombra mais pronunciada */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Imagem da galeria */
.gallery-img {
    /* Largura total do container */
    width: 100%;
    
    /* Altura total do container */
    height: 100%;
    
    /* Object fit para manter proporções */
    object-fit: cover;
    
    /* Transição suave */
    transition: transform 0.3s ease;
}

/* Efeito hover na imagem */
.gallery-item:hover .gallery-img {
    /* Zoom sutil no hover */
    transform: scale(1.05);
}

/* Seção de call-to-action */
.cta-section {
    /* Padding para espaçamento */
    padding: 2rem 0;
}

/* Texto do call-to-action */
.cta-text {
    /* Tamanho médio e cor cinza */
    font-size: 1.1rem;
    color: var(--colag-gray);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1.5rem;
    
    /* Peso da fonte normal */
    font-weight: 400;
}

/* Botão do call-to-action */
.cta-button {
    /* Padding para botão grande */
    padding: 0.75rem 2.5rem;
    
    /* Tamanho da fonte */
    font-size: 1.1rem;
    font-weight: 500;
    
    /* Border radius */
    border-radius: 0.5rem;
    
    /* Transição suave */
    transition: all 0.3s ease;
    
    /* Cor de fundo azul da marca */
    background-color: var(--colag-blue);
    border-color: var(--colag-blue);
}

/* Efeito hover no botão */
.cta-button:hover {
    /* Escurece ligeiramente no hover */
    background-color: #1e40af;
    border-color: #1e40af;
    
    /* Eleva ligeiramente */
    transform: translateY(-2px);
    
    /* Sombra no hover */
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN - INFRASTRUCTURE
   Media queries para dispositivos móveis
   ======================================== */
@media (max-width: 991.98px) {
    /* Padding reduzido no mobile */
    .infrastructure-section {
        padding: 3rem 0;
    }
    
    /* Altura menor para as imagens no mobile */
    .gallery-item {
        height: 200px;
    }
    
    /* Margem menor na galeria */
    .image-gallery {
        margin-bottom: 3rem;
    }
    
    /* Padding menor no CTA */
    .cta-section {
        padding: 1.5rem 0;
    }
    
    /* Texto menor no mobile */
    .cta-text {
        font-size: 1rem;
    }
    
    /* Botão menor no mobile */
    .cta-button {
        padding: 0.65rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Padding ainda menor em telas pequenas */
    .infrastructure-section {
        padding: 2rem 0;
    }
    
    /* Altura ainda menor para as imagens */
    .gallery-item {
        height: 180px;
    }
    
    /* Margem menor */
    .image-gallery {
        margin-bottom: 2rem;
    }
    
    /* Padding menor no CTA */
    .cta-section {
        padding: 1rem 0;
    }
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   Seção com depoimentos e estatísticas
   ======================================== */
.testimonials-section {
    /* Padding vertical para espaçamento */
    padding: 5rem 0;
    
    /* Fundo cinza muito claro */
    background-color: #f8fafc;
}

/* Container da grade de depoimentos */
.testimonials-grid {
    /* Margem inferior para espaçamento */
    margin-bottom: 4rem;
}

/* Card de depoimento */
.testimonial-card {
    /* Fundo branco com bordas arredondadas */
    background-color: white;
    border-radius: 1rem;
    
    /* Padding interno */
    padding: 2rem 1.5rem;
    
    /* Sombra sutil para profundidade */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Altura uniforme para todos os cards */
    height: 100%;
    
    /* Transição suave para hover */
    transition: all 0.3s ease;
    
    /* Posição relativa para ícone */
    position: relative;
}

/* Efeito hover nos cards de depoimento */
.testimonial-card:hover {
    /* Eleva ligeiramente no hover */
    transform: translateY(-3px);
    
    /* Sombra mais pronunciada */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Ícone de aspas */
.testimonial-icon {
    /* Posição absoluta no canto superior esquerdo */
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    
    /* Tamanho grande e cor cinza clara */
    font-size: 3rem;
    color: #e5e7eb;
    
    /* Z-index baixo para ficar atrás */
    z-index: 1;
}

/* Avaliação com estrelas */
.star-rating {
    /* Margem inferior para espaçamento */
    margin-bottom: 1rem;
    
    /* Z-index maior para ficar na frente */
    position: relative;
    z-index: 2;
}

/* Estrelas individuais */
.star-rating i {
    /* Cor amarela para as estrelas */
    color: var(--colag-yellow);
    
    /* Margem direita entre as estrelas */
    margin-right: 0.25rem;
    
    /* Tamanho das estrelas */
    font-size: 1.1rem;
}

/* Texto do depoimento */
.testimonial-text {
    /* Tamanho médio e cor cinza escura */
    font-size: 1rem;
    color: #374151;
    
    /* Altura da linha para boa legibilidade */
    line-height: 1.6;
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1.5rem;
    
    /* Z-index para ficar na frente do ícone */
    position: relative;
    z-index: 2;
    
    /* Estilo itálico para depoimento */
    font-style: italic;
}

/* Container do autor */
.testimonial-author {
    /* Z-index para ficar na frente */
    position: relative;
    z-index: 2;
}

/* Nome do autor */
.author-name {
    /* Cor azul da marca */
    color: var(--colag-blue);
    
    /* Tamanho da fonte */
    font-size: 1rem;
    
    /* Peso da fonte */
    font-weight: 600;
    
    /* Display block para quebra de linha */
    display: block;
    
    /* Margem inferior pequena */
    margin-bottom: 0.25rem;
}

/* Função/cargo do autor */
.author-role {
    /* Cor cinza */
    color: var(--colag-gray);
    
    /* Tamanho menor */
    font-size: 0.9rem;
    
    /* Peso normal */
    font-weight: 400;
}

/* Seção de estatísticas */
.statistics-section {
    /* Padding para espaçamento */
    padding: 2rem 0;
}

/* Texto introdutório das estatísticas */
.statistics-intro {
    /* Tamanho médio e cor cinza escura */
    font-size: 1.1rem;
    color: #374151;
    
    /* Margem inferior para espaçamento */
    margin-bottom: 2rem;
    
    /* Peso da fonte */
    font-weight: 500;
}

/* Container da grade de estatísticas */
.statistics-grid .stat-item {
    /* Centraliza o conteúdo */
    text-align: center;
}

/* Número da estatística */
.statistics-grid .stat-number {
    /* Tamanho grande e cor azul da marca */
    font-size: 3rem;
    font-weight: 700;
    color: var(--colag-blue);
    
    /* Margem inferior pequena */
    margin-bottom: 0.5rem;
    
    /* Display block */
    display: block;
}

/* Label da estatística */
.statistics-grid .stat-label {
    /* Tamanho médio e cor cinza */
    font-size: 1rem;
    color: var(--colag-gray);
    
    /* Peso da fonte normal */
    font-weight: 400;
}

/* ========================================
   RESPONSIVE DESIGN - TESTIMONIALS
   Media queries para dispositivos móveis
   ======================================== */
@media (max-width: 991.98px) {
    /* Padding reduzido no mobile */
    .testimonials-section {
        padding: 3rem 0;
    }
    
    /* Margem menor na grade de depoimentos */
    .testimonials-grid {
        margin-bottom: 3rem;
    }
    
    /* Padding menor nos cards */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    /* Ícone menor no mobile */
    .testimonial-icon {
        font-size: 2.5rem;
        top: 1rem;
        left: 1rem;
    }
    
    /* Texto menor no mobile */
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* Nome menor no mobile */
    .author-name {
        font-size: 0.95rem;
    }
    
    /* Função menor no mobile */
    .author-role {
        font-size: 0.85rem;
    }
    
    /* Padding menor nas estatísticas */
    .statistics-section {
        padding: 1.5rem 0;
    }
    
    /* Número menor nas estatísticas */
    .statistics-grid .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    /* Padding ainda menor em telas pequenas */
    .testimonials-section {
        padding: 2rem 0;
    }
    
    /* Margem menor */
    .testimonials-grid {
        margin-bottom: 2rem;
    }
    
    /* Padding menor nos cards */
    .testimonial-card {
        padding: 1.25rem 0.75rem;
    }
    
    /* Ícone ainda menor */
    .testimonial-icon {
        font-size: 2rem;
        top: 0.75rem;
        left: 0.75rem;
    }
    
    /* Número ainda menor nas estatísticas */
    .statistics-grid .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   NEWS & EVENTS SECTION STYLES
   Seção com notícias e eventos
   ======================================== */

/* News cards visibility control */
.news-card-hidden {
    display: none !important;
}

.news-card-visible {
    display: block !important;
}

/* Show more button styling */
.show-more-btn {
    background: linear-gradient(135deg, var(--colag-blue), var(--colag-light-blue));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    color: white;
}

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

/* Contact Page Specific Styles */
.contact-form-subtitle {
    color: var(--colag-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-info-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info-item h5 {
    color: white;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--colag-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--colag-blue);
}
.news-events-section {
    /* Padding vertical para espaçamento */
    padding: 5rem 0;
    
    /* Fundo branco */
    background-color: white;
}

/* Título da seção de notícias */
.news-section-title {
    /* Tamanho grande e cor azul da marca */
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--colag-blue);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 2rem;
}

/* Container dos cards de notícias */
.news-cards {
    /* Espaçamento entre os cards */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Card de notícia */
.news-card {
    /* Fundo branco com bordas arredondadas */
    background-color: white;
    border-radius: 1rem;
    
    /* Sombra sutil para profundidade */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Transição suave para hover */
    transition: all 0.3s ease;
    
    /* Overflow hidden para bordas arredondadas */
    overflow: hidden;
    
    /* Border sutil */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Efeito hover no card de notícia */
.news-card:hover {
    /* Eleva ligeiramente no hover */
    transform: translateY(-3px);
    
    /* Sombra mais pronunciada */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Container da imagem da notícia */
.news-image {
    /* Altura fixa para consistência */
    height: 200px;
    
    /* Overflow hidden para bordas arredondadas */
    overflow: hidden;
}

/* Imagem da notícia */
.news-img {
    /* Largura total do container */
    width: 100%;
    
    /* Altura total do container */
    height: 100%;
    
    /* Object fit para manter proporções */
    object-fit: cover;
    
    /* Transição suave */
    transition: transform 0.3s ease;
}

/* Efeito hover na imagem */
.news-card:hover .news-img {
    /* Zoom sutil no hover */
    transform: scale(1.05);
}

/* Container do conteúdo da notícia */
.news-content {
    /* Padding interno */
    padding: 1.5rem;
}

/* Card de notícia sem imagem - remove divisão de colunas */
.news-card.no-image .news-image,
.news-card.no-image .col-md-4 {
    display: none !important;
}

.news-card.no-image .col-md-8 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

.news-card.no-image .row {
    margin: 0 !important;
}

.news-card.no-image .row > * {
    padding: 0 !important;
}

/* Meta informações da notícia */
.news-meta {
    /* Flexbox para alinhar elementos */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1rem;
}

/* Categoria da notícia */
.news-category {
    /* Padding para badge */
    padding: 0.25rem 0.75rem;
    
    /* Border radius */
    border-radius: 1rem;
    
    /* Tamanho da fonte */
    font-size: 0.8rem;
    font-weight: 500;
    
    /* Texto em maiúscula */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cores das categorias */
.news-category-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.news-category-info {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--colag-blue);
}

.news-category-warning {
    background-color: rgba(251, 191, 36, 0.1);
    color: var(--colag-yellow);
}

/* Data da notícia */
.news-date,
.news-time {
    /* Tamanho pequeno e cor cinza */
    font-size: 0.8rem;
    color: var(--colag-gray);
    
    /* Flexbox para alinhar ícone e texto */
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Título da notícia */
.news-title {
    /* Tamanho médio e cor azul da marca */
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--colag-blue);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 0.75rem;
    
    /* Altura da linha */
    line-height: 1.4;
    
    /* Transição para hover */
    transition: color 0.3s ease;
}

/* Efeito hover no título */
.news-card:hover .news-title {
    /* Muda para amarelo no hover */
    color: var(--colag-yellow);
}

/* Descrição da notícia */
.news-description {
    /* Tamanho pequeno e cor cinza */
    font-size: 0.9rem;
    color: var(--colag-gray);
    
    /* Altura da linha para boa legibilidade */
    line-height: 1.6;
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1rem;
}

/* Link "Ler mais" */
.news-link {
    /* Cor azul da marca */
    color: var(--colag-blue);
    
    /* Peso da fonte */
    font-weight: 500;
    
    /* Texto decoração */
    text-decoration: none;
    
    /* Flexbox para alinhar ícone */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
    /* Transição para hover */
    transition: all 0.3s ease;
}

/* Efeito hover no link */
.news-link:hover {
    /* Muda para amarelo no hover */
    color: var(--colag-yellow);
    
    /* Move ícone para direita */
    transform: translateX(2px);
}

/* ========================================
   EVENTS & NEWSLETTER STYLES
   Estilos para sidebar de eventos e newsletter
   ======================================== */

/* Card de eventos */
.events-card {
    /* Fundo branco com bordas arredondadas */
    background-color: white;
    border-radius: 1rem;
    
    /* Padding interno */
    padding: 1.5rem;
    
    /* Sombra sutil */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1.5rem;
    
    /* Border sutil */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Título da seção de eventos */
.events-section-title {
    /* Tamanho médio e cor azul da marca */
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--colag-blue);
    
    /* Margem inferior para espaçamento */
    margin-bottom: 1.5rem;
}

/* Lista de eventos */
.events-list {
    /* Espaçamento entre eventos */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Item de evento */
.event-item {
    /* Flexbox para alinhar data e detalhes */
    display: flex;
    align-items: center;
    
    /* Padding interno */
    padding: 1rem;
    
    /* Fundo azul claro */
    background-color: rgba(59, 130, 246, 0.05);
    
    /* Border radius */
    border-radius: 0.75rem;
    
    /* Transição para hover */
    transition: background-color 0.3s ease;
}

/* Efeito hover no item de evento */
.event-item:hover {
    /* Fundo azul mais escuro no hover */
    background-color: rgba(59, 130, 246, 0.1);
}

/* Container da data do evento */
.event-date {
    /* Fundo azul da marca */
    background-color: var(--colag-blue);
    
    /* Cor branca */
    color: white;
    
    /* Padding */
    padding: 0.75rem;
    
    /* Border radius */
    border-radius: 0.5rem;
    
    /* Centraliza o conteúdo */
    text-align: center;
    
    /* Largura mínima */
    min-width: 60px;
    
    /* Margem direita */
    margin-right: 1rem;
}

/* Dia do evento */
.event-day {
    /* Tamanho grande e peso bold */
    font-size: 1.25rem;
    font-weight: 700;
    
    /* Display block */
    display: block;
}

/* Mês do evento */
.event-month {
    /* Tamanho pequeno */
    font-size: 0.8rem;
    
    /* Display block */
    display: block;
}

/* Container dos detalhes do evento */
.event-details {
    /* Flex grow para ocupar espaço restante */
    flex: 1;
}

/* Título do evento */
.event-title {
    /* Tamanho médio e peso semibold */
    font-size: 1rem;
    font-weight: 600;
    color: var(--colag-blue);
    
    /* Margem inferior pequena */
    margin-bottom: 0.25rem;
}

/* Horário do evento */
.event-time {
    /* Tamanho pequeno e cor cinza */
    font-size: 0.85rem;
    color: var(--colag-gray);
}

/* Card da newsletter */
.newsletter-card {
    /* Gradiente de fundo */
    background: linear-gradient(135deg, var(--colag-blue) 0%, rgba(30, 58, 138, 0.8) 100%);
    
    /* Cor branca */
    color: white;
    
    /* Border radius */
    border-radius: 1rem;
    
    /* Padding interno */
    padding: 1.5rem;
    
    /* Sombra sutil */
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2);
}

/* Título da newsletter */
.newsletter-title {
    /* Tamanho grande e peso semibold */
    font-size: 1.25rem;
    font-weight: 600;
    
    /* Margem inferior */
    margin-bottom: 0.75rem;
    
    /* Centraliza o texto */
    text-align: center;
}

/* Descrição da newsletter */
.newsletter-description {
    /* Tamanho pequeno e cor azul claro */
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    
    /* Margem inferior */
    margin-bottom: 1rem;
    
    /* Centraliza o texto */
    text-align: center;
}

/* Input da newsletter */
.newsletter-input {
    /* Border radius */
    border-radius: 0.5rem;
    
    /* Border removida */
    border: none;
    
    /* Padding interno */
    padding: 0.75rem 1rem;
    
    /* Tamanho da fonte */
    font-size: 0.9rem;
    
    /* Cor do texto */
    color: var(--colag-blue);
}

/* Placeholder do input */
.newsletter-input::placeholder {
    /* Cor cinza */
    color: #9ca3af;
}

/* ========================================
   RESPONSIVE DESIGN - NEWS & EVENTS
   Media queries para dispositivos móveis
   ======================================== */
@media (max-width: 991.98px) {
    /* Padding reduzido no mobile */
    .news-events-section {
        padding: 3rem 0;
    }
    
    /* Título menor no mobile */
    .news-section-title {
        font-size: 1.5rem;
    }
    
    /* Padding menor nos cards */
    .news-content {
        padding: 1rem;
    }
    
    /* Meta informações em coluna no mobile */
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Título menor no mobile */
    .news-title {
        font-size: 1.1rem;
    }
    
    /* Padding menor nos cards de eventos */
    .events-card {
        padding: 1rem;
    }
    
    /* Título menor nos eventos */
    .events-section-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    /* Padding ainda menor em telas pequenas */
    .news-events-section {
        padding: 2rem 0;
    }
    
    /* Título ainda menor */
    .news-section-title {
        font-size: 1.25rem;
    }
    
    /* Padding menor nos cards */
    .news-content {
        padding: 0.75rem;
    }
    
    /* Altura menor para imagens */
    .news-image {
        height: 150px;
    }
    
    /* Padding menor nos cards de eventos */
    .events-card {
        padding: 0.75rem;
    }
    
    /* Padding menor na newsletter */
    .newsletter-card {
        padding: 1rem;
    }
}

/* ========================================
   APROVADOS COLAG 2025 SECTION STYLES
   Seção com carrossel simples de fotos
   ======================================== */
.aprovados-section {
    /* Padding vertical para espaçamento */
    padding: 4rem 0;
    
    /* Gradiente sutil de fundo */
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.05) 0%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(30, 58, 138, 0.05) 100%);
}

/* Header da seção de aprovados */
.aprovados-header {
    /* Fundo amarelo vibrante */
    background: linear-gradient(135deg, var(--colag-yellow) 0%, #ffd700 100%);
    
    /* Padding interno */
    padding: 2rem 0;
    
    /* Margem inferior */
    margin-bottom: 3rem;
    
    /* Centraliza o conteúdo */
    text-align: center;
    
    /* Border radius moderno */
    border-radius: 1rem;
    
    /* Sombra elegante */
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
    
    /* Posição relativa para efeitos */
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no header */
.aprovados-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Título da seção de aprovados */
.aprovados-title {
    /* Cor azul para contraste */
    color: var(--colag-blue);
    
    /* Tamanho grande e peso bold */
    font-size: 2.8rem;
    font-weight: 800;
    
    /* Remove margem */
    margin: 0;
    
    /* Texto em maiúscula */
    text-transform: uppercase;
    
    /* Espaçamento entre letras */
    letter-spacing: 2px;
    
    /* Sombra de texto */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    
    /* Posição relativa para ficar acima do efeito */
    position: relative;
    z-index: 2;
}

/* Container das fotos */
.aprovado-photo {
    /* Centraliza a foto */
    text-align: center;
    
    /* Transição suave */
    transition: all 0.3s ease;
    
    /* Posição relativa para hover */
    position: relative;
}

/* Efeito hover no container */
.aprovado-photo:hover {
    /* Eleva ligeiramente */
    transform: translateY(-10px);
}

/* Imagem do aluno aprovado - simplificada */
.aprovado-img {
    /* Largura responsiva */
    width: 140px;
    height: 140px;
    
    /* Border radius circular */
    border-radius: 50%;
    
    /* Object fit para manter proporções */
    object-fit: cover;
    
    /* Border elegante */
    border: 4px solid white;
    
    /* Sombra moderna */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    
    /* Transição suave */
    transition: all 0.3s ease;
    
    /* Filtro para melhorar a imagem */
    filter: brightness(1.05) contrast(1.1);
}

/* Efeito hover na imagem */
.aprovado-photo:hover .aprovado-img {
    /* Aumenta ligeiramente */
    transform: scale(1.1);
    
    /* Sombra mais pronunciada */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    
    /* Border colorido */
    border-color: var(--colag-yellow);
}

/* Controles do carrossel - Setas laterais */
.aprovados-section .carousel-control-prev,
.aprovados-section .carousel-control-next {
    /* Tamanho dos controles */
    width: 60px;
    height: 60px;
    
    /* Cor de fundo com transparência */
    background: rgba(30, 58, 138, 0.9);
    
    /* Border radius circular */
    border-radius: 50%;
    
    /* Posicionamento */
    top: 50%;
    transform: translateY(-50%);
    
    /* Sombra elegante */
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    
    /* Transição suave */
    transition: all 0.3s ease;
    
    /* Border */
    border: 2px solid rgba(255, 255, 255, 0.2);
    
    /* Z-index para ficar acima */
    z-index: 10;
}

/* Efeito hover nas setas */
.aprovados-section .carousel-control-prev:hover,
.aprovados-section .carousel-control-next:hover {
    background: var(--colag-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    border-color: var(--colag-yellow);
}

/* Ícones dos controles */
.aprovados-section .carousel-control-prev-icon,
.aprovados-section .carousel-control-next-icon {
    /* Tamanho do ícone */
    width: 24px;
    height: 24px;
    
    /* Remove background padrão e usa filter para colorir */
    background-color: transparent;
    filter: invert(1);
    
    /* Transição suave */
    transition: all 0.3s ease;
}

/* Ícone específico da seta anterior */
.aprovados-section .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z'/%3e%3c/svg%3e");
}

/* Ícone específico da seta seguinte */
.aprovados-section .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/%3e%3c/svg%3e");
}

/* Efeito hover nos ícones */
.aprovados-section .carousel-control-prev:hover .carousel-control-prev-icon,
.aprovados-section .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0) sepia(1) saturate(5) hue-rotate(35deg) brightness(1.2);
    transform: scale(1.1);
}

/* Posicionamento específico das setas */
.aprovados-section .carousel-control-prev {
    left: -30px;
}

.aprovados-section .carousel-control-next {
    right: -30px;
}

/* ========================================
   RESPONSIVE DESIGN - APROVADOS SECTION
   ======================================== */
@media (max-width: 991.98px) {
    /* Título menor no tablet */
    .aprovados-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    /* Padding menor */
    .aprovados-section {
        padding: 3rem 0;
    }
    
    /* Setas menores no tablet */
    .aprovados-section .carousel-control-prev,
    .aprovados-section .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .aprovados-section .carousel-control-prev {
        left: -20px;
    }
    
    .aprovados-section .carousel-control-next {
        right: -20px;
    }
    
    .aprovados-section .carousel-control-prev-icon,
    .aprovados-section .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    /* Título menor no mobile */
    .aprovados-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    /* Padding menor */
    .aprovados-section {
        padding: 2rem 0;
    }
    
    /* Header com padding menor */
    .aprovados-header {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    /* Setas ainda menores no mobile */
    .aprovados-section .carousel-control-prev,
    .aprovados-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .aprovados-section .carousel-control-prev {
        left: -10px;
    }
    
    .aprovados-section .carousel-control-next {
        right: -10px;
    }
    
    .aprovados-section .carousel-control-prev-icon,
    .aprovados-section .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   CONTACT SECTION STYLES
   ======================================== */

/* Contact Section - Blue background with yellow wave */
.contact-section {
    padding: 7rem 0 0 0;
    background: var(--colag-blue);
    position: relative;
    overflow: hidden;
}

/* Yellow wave at the top */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--colag-yellow);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 80% 60%, 60% 80%, 40% 90%, 20% 95%, 0 100%);
    z-index: 2;
}

/* Subtle background pattern */
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Contact section header styling */
.contact-section .section-header {
    position: relative;
    z-index: 3;
    margin-bottom: 3rem;
}

.contact-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Call-to-Action Cards */
.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.cta-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Icon styling */
.cta-icon {
    width: 4rem;
    height: 4rem;
    background: var(--colag-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.cta-icon i {
    font-size: 1.5rem;
    color: white;
}

.cta-card:hover .cta-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* CTA Title and Description */
.cta-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* CTA Button styling */
.cta-btn {
    background: var(--colag-yellow);
    color: var(--colag-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.cta-btn:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.contact-form-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Contact Form Inputs */
.contact-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--colag-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    outline: none;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Submit Button */
.contact-submit-btn {
    background: var(--colag-yellow);
    color: var(--colag-blue);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.contact-submit-btn:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments for contact section */
@media (max-width: 992px) {
    .contact-section .section-title {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-title {
        font-size: 1.8rem;
    }
    
    .cta-card {
        padding: 1.25rem;
    }
    
    .cta-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .cta-icon i {
        font-size: 1.25rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

/* Main Footer Container */
.footer {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern for footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Main Footer Section */
.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Brand Section */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--colag-yellow);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.footer-logo-icon span {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo-text h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.2;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--colag-yellow);
    color: var(--colag-blue);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1rem;
}

/* Footer Links Sections */
.footer-links {
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--colag-yellow);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-list a:hover {
    color: var(--colag-yellow);
    padding-left: 0.5rem;
}

/* Footer Contact Section */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item i {
    color: var(--colag-yellow);
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    width: 1rem;
}

/* Service Hours Box */
.service-hours {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 1rem;
}

.service-hours-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-hours-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-days {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.service-time {
    color: var(--colag-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Location Section */
.footer-location {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.location-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.location-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-icon {
    margin-bottom: 1.5rem;
}

.location-icon i {
    font-size: 3rem;
    color: var(--colag-yellow);
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 auto;
    max-width: 500px;
}

.map-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.map-address {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--colag-yellow);
}

/* Floating Chat Button */
.floating-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.chat-btn:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

/* Responsive adjustments for footer */
@media (max-width: 992px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-list a {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .service-hours {
        padding: 1rem;
    }
    
    .footer-location {
        padding: 2rem 0;
    }
    
    .location-title {
        font-size: 1.5rem;
    }
    
    .location-description {
        font-size: 0.9rem;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .floating-chat {
        bottom: 1rem;
        right: 1rem;
    }
    
    .chat-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

/* ========================================
   GLOBAL IMPROVEMENTS - SITE ENHANCEMENTS
   Melhorias visuais gerais para o site
   ======================================== */

/* Smooth scrolling para toda a página */
html {
    scroll-behavior: smooth;
}

/* Melhorias no body */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Melhorias nos botões globais */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Melhorias nos cards globais */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Melhorias nos títulos de seção */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--colag-yellow), var(--colag-blue));
    border-radius: 2px;
}

/* Melhorias no navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

/* Melhorias nos links do navbar */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--colag-yellow);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Animação de pulso para elementos importantes */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Efeito de glow para elementos especiais */
.glow {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow:hover {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

/* Melhorias na tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Melhorias nos formulários */
.form-control {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--colag-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

/* ========================================
   EMPREENDER COLAG SECTION
   Seção do projeto de empreendedorismo
   ======================================== */
.empreender-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.empreender-intro {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--colag-yellow);
}

.empreender-intro h3 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.75rem;
}

.empreender-intro .lead {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.empreender-intro p {
    color: var(--colag-gray);
    line-height: 1.7;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--colag-yellow);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--colag-blue), var(--colag-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--colag-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   PARCEIROS SECTION - Empresas Parceiras
   ======================================== */
.parceiros-section {
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 2rem;
}

.parceiros-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.parceiros-subtitulo {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Cards dos Parceiros */
.parceiro-card {
    background: white;
    border-radius: 1.25rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.parceiro-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--colag-yellow), var(--colag-light-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.parceiro-card:hover::after {
    transform: scaleX(1);
}

.parceiro-card:hover {
    border-color: var(--colag-blue);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
    transform: translateY(-8px);
}

.parceiro-logo-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.parceiro-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.parceiro-card:hover .parceiro-logo-img {
    transform: scale(1.05);
}

.parceiro-content {
    padding: 1.75rem;
}

.parceiro-nome {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.parceiro-categoria {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    background: #f1f5f9;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
}

.parceiro-description-short {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.parceiro-team-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.parceiro-team-mini i {
    color: var(--colag-yellow);
    font-size: 1rem;
}

.btn-saiba-mais {
    background: transparent;
    color: var(--colag-blue);
    border: 2px solid var(--colag-blue);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-saiba-mais:hover {
    background: var(--colag-blue);
    color: white;
    transform: translateX(4px);
}

.btn-saiba-mais i {
    transition: transform 0.3s ease;
}

.btn-saiba-mais:hover i {
    transform: translateX(4px);
}

/* ========================================
   MODALS - Detalhes das Empresas
   ======================================== */
.modal-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

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

.modal-header {
    border-bottom: 2px solid #f1f5f9;
    padding: 1.5rem;
}

.modal-body h5 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.modal-body p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.team-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.95rem;
}

.team-list i {
    color: var(--colag-yellow);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .empreender-section {
        padding: 4rem 0;
    }
    
    .empreender-intro {
        padding: 1.5rem;
    }
    
    .parceiros-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .parceiros-titulo {
        font-size: 2rem;
    }
    
    .parceiros-subtitulo {
        font-size: 1rem;
    }
    
    .parceiro-logo-container {
        height: 180px;
    }
    
    .team-list {
        grid-template-columns: 1fr;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
}

/* ========================================
   PAGE HEADER SECTION - EMPREENDER
   Cabeçalho moderno para página Empreender
   ======================================== */
.page-header-empreender {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.page-header-empreender::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.empreender-badge {
    display: inline-block;
    background: white;
    color: var(--colag-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    position: relative;
}

.empreender-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--colag-blue);
    position: relative;
    line-height: 1.2;
}

.empreender-subtitle {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

/* ========================================
   EMPREENDER CONTENT SECTION
   Conteúdo da página Empreender COLAG
   ======================================== */
.empreender-content-section {
    padding: 5rem 0;
    background: white;
}

.empreender-texto {
    max-width: 900px;
    margin: 0 auto;
}

.empreender-texto h2 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
}

.empreender-texto p {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.empreender-texto .texto-destaque {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.8;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--colag-blue) 0%, var(--colag-light-blue) 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.cta-box h3 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.cta-box .btn-outline-primary {
    background: white;
    color: var(--colag-blue);
    border-color: white;
}

.cta-box .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: white;
    color: var(--colag-blue);
}

/* ========================================
   FOOTER
   Rodapé do site
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--colag-yellow);
    border-radius: 2px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--colag-yellow);
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--colag-yellow);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--colag-yellow);
}

.footer-contact strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--colag-yellow);
    border-color: var(--colag-yellow);
    color: var(--colag-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--colag-yellow);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 0.75rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 1.5rem 0 0.75rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-text {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-contact li {
        font-size: 0.8rem;
        margin-bottom: 0.625rem;
    }
    
    .footer-contact i {
        font-size: 1rem;
    }
    
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-links .separator {
        display: none;
    }
}

/* ========================================
   MODAL MATRÍCULA 2026
   ======================================== */
.modal-matricula {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-matricula.show {
    display: flex;
    opacity: 1;
}

.modal-matricula-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}

.modal-matricula-link {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.modal-matricula-link:hover {
    transform: scale(1.02);
}

.modal-matricula-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-matricula-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    color: #1e3a8a;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-matricula-close:hover {
    background-color: var(--colag-yellow);
    color: var(--colag-blue);
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.modal-matricula-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-matricula {
        padding: 0.5rem;
    }
    
    .modal-matricula-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .modal-matricula-img {
        border-radius: 0.25rem;
    }
}

@media (max-width: 576px) {
    .modal-matricula {
        padding: 0.25rem;
    }
    
    .modal-matricula-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* ========================================
   PAGE HEADER - PROJETOS
   ======================================== */
.page-header-projetos {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
    position: relative;
    overflow: hidden;
}

.page-header-projetos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.projetos-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--colag-blue);
    position: relative;
    line-height: 1.2;
}

.projetos-subtitle {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

/* ========================================
   PROJETOS CONTENT SECTION
   ======================================== */
.projetos-content-section {
    padding: 5rem 0;
    background: white;
}

.projetos-intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.projetos-intro-text .lead-text {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.projetos-intro-text p {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--colag-blue);
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    border-left: 4px solid var(--colag-yellow);
}

.quote-text i {
    color: var(--colag-yellow);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* ========================================
   PROJETOS TEXTO
   ======================================== */
.projetos-texto {
    max-width: 900px;
    margin: 0 auto;
}

.projetos-texto h2 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
}

.projetos-texto h3 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
}

.projetos-texto p {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.destaque-box {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--colag-yellow);
    margin: 2rem 0;
}

.destaque-box h5 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.destaque-box i {
    color: var(--colag-yellow);
    font-size: 1.2rem;
}

.destaque-box p {
    color: #475569;
    margin-bottom: 0;
}

.conclusao-box {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
}

.texto-conclusao {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* ========================================
   PROJETO CARDS (não usado mais, mas mantido para modais)
   ======================================== */
.projeto-card {
    background: white;
    border-radius: 1.25rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.projeto-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--colag-yellow), var(--colag-light-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.projeto-card:hover::after {
    transform: scaleX(1);
}

.projeto-card:hover {
    border-color: var(--colag-blue);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
    transform: translateY(-8px);
}

.projeto-card-destaque {
    border-color: var(--colag-yellow);
    background: linear-gradient(135deg, #fffbeb 0%, white 100%);
}

.projeto-icon-container {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: center;
}

.projeto-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.projeto-content {
    padding: 0 2rem 2rem;
}

.projeto-nome {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.projeto-categoria {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.projeto-description {
    color: #475569;
    line-height: 1.7;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.projeto-beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.badge-beneficio {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-destaque {
    background: var(--colag-yellow);
    color: var(--colag-blue);
}

/* ========================================
   MODALS - PROJETOS
   ======================================== */
.modal-icon-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 1rem;
}

.benefits-list i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-empreender {
        padding: 3rem 0 2.5rem;
    }
    
    .page-header-projetos {
        padding: 3rem 0 2.5rem;
    }
    
    .projetos-title {
        font-size: 2.25rem;
    }
    
    .projetos-subtitle {
        font-size: 1.1rem;
    }
    
    .projetos-content-section {
        padding: 3rem 0;
    }
    
    .projetos-intro-text .lead-text {
        font-size: 1.1rem;
    }
    
    .projetos-intro-text p {
        font-size: 1rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .projetos-texto h2 {
        font-size: 1.5rem;
    }
    
    .projetos-texto h3 {
        font-size: 1.25rem;
    }
    
    .projetos-texto p {
        font-size: 1rem;
    }
    
    .destaque-box {
        padding: 1.5rem;
    }
    
    .conclusao-box {
        padding: 1.5rem;
    }
    
    .texto-conclusao {
        font-size: 1.1rem;
    }
    
    .projeto-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .modal-icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .empreender-title {
        font-size: 2.25rem;
    }
    
    .empreender-subtitle {
        font-size: 1.1rem;
    }
    
    .empreender-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
    
    .empreender-content-section {
        padding: 3rem 0;
    }
    
    .empreender-texto h2 {
        font-size: 1.5rem;
    }
    
    .empreender-texto p {
        font-size: 1rem;
    }
    
    .empreender-texto .texto-destaque {
        font-size: 1.1rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   PAGE HEADER - SOBRE
   ======================================== */
.page-header-sobre {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.page-header-sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sobre-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--colag-blue);
    position: relative;
    line-height: 1.2;
}

.sobre-subtitle {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

/* ========================================
   SOBRE CONTENT SECTION
   ======================================== */
.sobre-content-section {
    padding: 5rem 0;
    background: white;
}

.sobre-texto {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-texto h2 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
}

.sobre-texto p {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ========================================
   VISÃO MISSÃO VALORES CARDS
   ======================================== */
.vmv-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vmv-card:hover {
    border-color: var(--colag-blue);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
    transform: translateY(-8px);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.vmv-icon-blue {
    background: linear-gradient(135deg, var(--colag-blue), var(--colag-light-blue));
}

.vmv-icon-yellow {
    background: linear-gradient(135deg, var(--colag-yellow), #ffc107);
}

.vmv-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.vmv-title {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.vmv-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.vmv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vmv-list li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.vmv-list i {
    color: var(--colag-yellow);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ========================================
   EQUIPE SECTION
   ======================================== */
.equipe-section {
    max-width: 900px;
    margin: 0 auto;
}

.equipe-intro {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--colag-yellow);
}

.equipe-intro p {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0;
}

.equipe-grupo {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.equipe-grupo-title {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.equipe-grupo-title i {
    color: var(--colag-yellow);
}

.equipe-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 3px solid var(--colag-blue);
    height: 100%;
}

.equipe-item h4 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.equipe-item p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ========================================
   CURRÍCULO SECTION
   ======================================== */
.curriculo-section {
    margin-top: 3rem;
}

.curriculo-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 1.25rem;
    padding: 3rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.curriculo-title {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.curriculo-title i {
    color: var(--colag-yellow);
    font-size: 1.5rem;
}

.curriculo-subtitle {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.curriculo-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-notice {
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
}

/* ========================================
   RESPONSIVE - SOBRE PAGE
   ======================================== */
@media (max-width: 768px) {
    .page-header-sobre {
        padding: 3rem 0 2.5rem;
    }
    
    .sobre-title {
        font-size: 2.25rem;
    }
    
    .sobre-subtitle {
        font-size: 1.1rem;
    }
    
    .sobre-content-section {
        padding: 3rem 0;
    }
    
    .sobre-texto h2 {
        font-size: 1.5rem;
    }
    
    .sobre-texto p {
        font-size: 1rem;
    }
    
    .vmv-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .vmv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .vmv-title {
        font-size: 1.25rem;
    }
    
    .equipe-intro {
        padding: 1.5rem;
    }
    
    .equipe-grupo {
        padding: 1.5rem;
    }
    
    .equipe-grupo-title {
        font-size: 1.25rem;
    }
    
    .curriculo-card {
        padding: 2rem 1.5rem;
    }
    
    .curriculo-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .curriculo-form {
        padding: 1.5rem;
    }
}

/* ========================================
   PAGE HEADER - NIVEIS DE ENSINO
   ======================================== */
.page-header-niveis {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.page-header-niveis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.niveis-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--colag-blue);
    position: relative;
    line-height: 1.2;
}

.niveis-subtitle {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

/* ========================================
   NIVEIS CONTENT SECTION
   ======================================== */
.niveis-content-section {
    padding: 3rem 0 5rem;
    background: white;
}

/* ========================================
   CUSTOM TABS
   ======================================== */
.niveis-tabs {
    border-bottom: 3px solid #e2e8f0;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.niveis-tabs .nav-item {
    margin-bottom: 0;
}

.niveis-tabs .nav-link {
    border: 2px solid #e2e8f0;
    border-radius: 1rem 1rem 0 0;
    padding: 1.25rem 1.75rem;
    color: #64748b;
    font-weight: 600;
    background: #f8fafc;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    position: relative;
    margin-right: 0.5rem;
}

.niveis-tabs .nav-link i {
    font-size: 1.75rem;
    color: var(--colag-blue);
    margin-bottom: 0.25rem;
}

.niveis-tabs .nav-link span {
    font-size: 1rem;
    display: block;
}

.niveis-tabs .nav-link small {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
}

.niveis-tabs .nav-link:hover {
    background: #f0f9ff;
    border-color: var(--colag-light-blue);
    color: var(--colag-blue);
    transform: translateY(-3px);
}

.niveis-tabs .nav-link.active {
    background: white;
    border-color: var(--colag-blue);
    border-bottom-color: white;
    color: var(--colag-blue);
    position: relative;
    z-index: 2;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.niveis-tabs .nav-link.active i {
    color: var(--colag-blue);
    transform: scale(1.1);
}

.niveis-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: white;
}

/* ========================================
   TAB CONTENT
   ======================================== */
.tab-content {
    margin-top: 2rem;
}

.nivel-content {
    padding: 2rem 0;
}

.nivel-title {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.nivel-intro {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--colag-yellow);
    margin-bottom: 2rem;
}

.nivel-intro p {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.nivel-intro p:last-child {
    margin-bottom: 0;
}

.nivel-section {
    margin-bottom: 3rem;
}

.nivel-subtitle {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nivel-subtitle i {
    color: var(--colag-yellow);
    font-size: 1.5rem;
}

.nivel-section p {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ========================================
   EIXO CARDS (Educação Infantil)
   ======================================== */
.eixo-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.eixo-card:hover {
    border-color: var(--colag-blue);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.12);
    transform: translateY(-3px);
}

.eixo-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--colag-blue), var(--colag-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.eixo-content h4 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.eixo-content p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   METODOLOGIA GRID
   ======================================== */
.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metodologia-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metodologia-item:hover {
    border-color: var(--colag-yellow);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.15);
    transform: translateY(-5px);
}

.metodologia-item i {
    font-size: 3rem;
    color: var(--colag-blue);
    margin-bottom: 1rem;
}

.metodologia-item h4 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.metodologia-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   QUOTE BOX
   ======================================== */
.quote-box {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--colag-yellow);
    margin: 1.5rem 0;
}

.quote-text {
    color: #1e293b;
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    position: relative;
    padding-left: 2rem;
}

.quote-text i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--colag-yellow);
}

/* ========================================
   DISCIPLINAS GRID
   ======================================== */
.disciplinas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.disciplina-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.disciplina-item:hover {
    border-color: var(--colag-blue);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.12);
    transform: translateY(-5px);
}

.disciplina-item i {
    font-size: 3rem;
    color: var(--colag-blue);
    margin-bottom: 1rem;
}

.disciplina-item h4 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.disciplina-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.niveis-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    padding: 3rem;
    border-radius: 1.25rem;
    border: 2px solid #e2e8f0;
}

.niveis-cta h3 {
    color: var(--colag-blue);
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.niveis-cta p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ========================================
   RESPONSIVE - NIVEIS DE ENSINO
   ======================================== */
@media (max-width: 991.98px) {
    .niveis-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .niveis-tabs .nav-link {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .page-header-niveis {
        padding: 3rem 0 2.5rem;
    }
    
    .niveis-title {
        font-size: 2.25rem;
    }
    
    .niveis-subtitle {
        font-size: 1.1rem;
    }
    
    .niveis-content-section {
        padding: 2rem 0 3rem;
    }
    
    .nivel-title {
        font-size: 2rem;
    }
    
    .nivel-intro {
        padding: 1.5rem;
    }
    
    .nivel-intro p {
        font-size: 1rem;
    }
    
    .nivel-subtitle {
        font-size: 1.5rem;
    }
    
    .nivel-section p {
        font-size: 1rem;
    }
    
    .niveis-tabs .nav-link {
        min-width: auto;
        padding: 1rem 1.25rem;
    }
    
    .niveis-tabs .nav-link i {
        font-size: 1.5rem;
    }
    
    .niveis-tabs .nav-link span {
        font-size: 0.9rem;
    }
    
    .eixo-card {
        flex-direction: column;
        text-align: center;
    }
    
    .eixo-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .metodologia-grid,
    .disciplinas-grid {
        grid-template-columns: 1fr;
    }
    
    .niveis-cta {
        padding: 2rem 1.5rem;
    }
    
    .niveis-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .nivel-title {
        font-size: 1.75rem;
    }
    
    .nivel-subtitle {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .niveis-cta {
        padding: 1.5rem;
    }
}

/* ========================================
   INFRAESTRUTURA PAGE STYLES
   ======================================== */

/* Page Header */
.page-header-infra {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.page-header-infra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.infra-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--colag-blue);
    position: relative;
    line-height: 1.2;
}

.infra-subtitle {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

/* Banner Section */
.infra-banner-section {
    padding: 0;
}

.infra-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

/* Unidades Section */
.infra-unidades-section {
    padding: 5rem 0;
    background: white;
}

.unidade-card {
    background: white;
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
}

.unidade-card:hover {
    border-color: var(--colag-blue);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
    transform: translateY(-5px);
}

.unidade-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--colag-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.unidade-title i {
    font-size: 2.5rem;
    color: var(--colag-yellow);
}

.unidade-description {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.unidade-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #334155;
}

.feature-item i {
    color: var(--colag-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.unidade-address {
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.unidade-address p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.unidade-address i {
    color: var(--colag-blue);
    font-size: 1.25rem;
}

.unidade-address strong {
    color: var(--colag-blue);
    font-weight: 600;
}

.unidade-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.unidade-image:hover img {
    transform: scale(1.02);
}

/* Gallery Section */
.infra-gallery-section {
    padding: 5rem 0;
    background: #f8fafc;
}

/* Contact Section */
.infra-contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-card {
    background: white;
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.contact-form .contact-input {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: #334155;
    transition: all 0.3s ease;
}

.contact-form .contact-input:focus {
    background: white;
    border-color: var(--colag-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.1);
    outline: none;
}

.contact-form .contact-input::placeholder {
    color: #94a3b8;
}

.contact-form .contact-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .contact-submit-btn {
    background: var(--colag-blue);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form .contact-submit-btn:hover {
    background: var(--colag-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.contact-form .contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-form .contact-submit-btn:hover i {
    transform: translateX(3px);
}

.form-notice {
    color: #64748b;
    font-size: 0.875rem;
}

.contact-alternative {
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

/* CTA Section */
.infra-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #fef3c7 100%);
}

.cta-box {
    background: white;
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--colag-blue);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .infra-title {
        font-size: 2.5rem;
    }
    
    .infra-subtitle {
        font-size: 1.15rem;
    }
    
    .unidade-card {
        padding: 2rem;
    }
    
    .unidade-title {
        font-size: 1.75rem;
    }
    
    .unidade-title i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header-infra {
        padding: 3rem 0 2rem;
    }
    
    .infra-title {
        font-size: 2rem;
    }
    
    .infra-subtitle {
        font-size: 1rem;
    }
    
    .infra-unidades-section,
    .infra-gallery-section,
    .infra-contact-section,
    .infra-cta-section {
        padding: 3rem 0;
    }
    
    .unidade-card {
        padding: 1.5rem;
    }
    
    .unidade-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .unidade-description {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .infra-title {
        font-size: 1.75rem;
    }
    
    .unidade-card {
        padding: 1.25rem;
    }
    
    .unidade-title {
        font-size: 1.25rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-box {
        padding: 1.5rem 1rem;
    }
}