/* style.css - VERSÃO COM FONTES MAIORES */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    font-size: 28px; /* Tamanho geral aumentado */
}

.navbar {
    background: linear-gradient(to right, #001f8b, #5b8df6);
    padding: 15px 0; /* Mais espaço vertical */
    border-radius: 0 0 20px 20px;
}

.navbar-brand img,
.navbar a img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: bold;
    font-size: 26px; /* Menu principal maior */
    padding: 15px 25px; /* Espaçamento ampliado */
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item {
    font-size: 24px !important; /* Itens do dropdown grandes */
}

/* Responsividade para telas menores */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 24px; /* Reduz um pouco em mobile */
        padding: 12px 20px;
    }
}

/* Estilo dos botões */
.btn-lg {
    font-size: 15px !important; /* Texto grande */
    font-weight: bold;
    border-radius: 15px !important;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #001f8b !important; /* Azul do cabeçalho */
    border: none;
}

.btn-outline-primary {
    color: #001f8b !important;
    border: 2px solid #001f8b !important;
}

.btn-outline-primary:hover {
    background-color: #001f8b !important;
    color: white !important;
}

/* Ajuste da barra de pesquisa */
.input-group-lg .form-control {
    font-size: 10px;
    padding: 15px;
    border-radius: 10px 0 0 10px !important;
}

.input-group-lg .btn {
    border-radius: 0 10px 10px 0 !important;
    font-size: 10px;
}

/* Espaçamento responsivo */
@media (max-width: 768px) {
    .d-flex {
        flex-direction: column; /* Empilha botões em mobile */
        gap: 10px !important;
    }
    .col-md-4, .col-md-8 {
        width: 100%;
    }
}

/* Estilização do carrossel */
.carousel {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item img {
    height: 300px; /* Altura fixa (ajuste conforme necessidade) */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: #5b8df6 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #001f8b;
    border-radius: 50%;
    padding: 20px;
}

/* Estilização da barra de pesquisa do Google */
.gcse-searchbox {
    width: 100% !important;
}

.gcse-searchbox input {
    width: 100% !important;
    padding: 15px !important;
    font-size: 18px !important;
    border: 2px solid #ddd !important;
    border-radius: 10px !important;
}

.gcse-searchbox button {
    display: none; /* Oculta o botão padrão (usaremos a lupa do Google) */
}

/* Resultados da pesquisa */
.gcse-searchresults {
    margin-top: 30px;
    font-size: 16px;
}

/* Ajustes gerais */
.card-header {
    border-radius: 12px 12px 0 0 !important;
}

.card-body {
    padding: 1.25rem;
}

/* Títulos menores */
.fs-4 {
    font-size: 1.25rem !important; /* Título do card */
}

.fs-5 {
    font-size: 1rem !important; /* Título do item */
}

.small {
    font-size: 0.875rem !important; /* Texto menor */
}

/* Imagens dos cards */
.card-body img {
    object-fit: contain;
}

/* Responsividade */
@media (max-width: 992px) {
    .col-lg-8, .col-lg-4 {
        width: 100% !important; /* Empilha em mobile */
    }
}

/* Padroniza TODOS os logos (imagens dentro de cards) */
.card-body img {
    width: 80px; /* Largura fixa */
    height: 80px; /* Altura fixa */
    object-fit: contain; /* Garante que a imagem inteira apareça sem cortes */
    object-position: center; /* Centraliza a imagem */
    border-radius: 8px; /* Opcional: bordas arredondadas */
    background-color: #f8f9fa; /* Cor de fundo para imagens transparentes */
    padding: 5px; /* Espaço interno (opcional) */
}

/* Ajuste específico para logos em "Em Andamento" (banners horizontais) */
.col-lg-4 .card-body img {
    width: 100%; /* Largura total do container */
    height: 60px; /* Altura menor para banners */
}

/* Estilos do Rodapé */
.footer {
    border-radius: 20px 20px 0 0;
    font-size: 16px;
}

.footer a:hover {
    color: #ffcc00 !important; /* Amarelo ao passar o mouse */
    text-decoration: underline !important;
}

.social-icons a:hover {
    transform: scale(1.2);
    transition: all 0.3s;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer .col-md-4 {
        text-align: center !important;
        margin-bottom: 20px;
    }
}
/* Remove todos os efeitos dos links no rodapé */
.footer a {
    text-decoration: none !important;
    color: inherit !important;
    transition: none !important;
}

/* Remove hover */
.footer a:hover {
    text-decoration: none !important;
    color: inherit !important;
    transform: none !important;
}

/* Remove estilos específicos de ícones (se aplicável) */
.footer .social-icons a:hover {
    transform: none !important;
    opacity: 1 !important;
}
/* Mantém o tamanho original em desktop */
.carousel-item img {
    width: 100%;
    height: auto; /* Altura automática baseada na proporção */
  }
  
  /* Ajuste ESPECÍFICO para mobile */
  @media (max-width: 768px) {
    .carousel-item img {
      height: 150px !important; /* Altura fixa para mobile */
      object-fit: contain; /* Exibe a imagem inteira sem cortes */
      object-position: center; /* Centraliza a imagem */
      background-color: #f8f9fa; /* Cor de fundo para banners transparentes */
    }
    
    .carousel-inner {
      border-radius: 0 !important; /* Opcional: remove bordas arredondadas em mobile */
    }
  }

  /* Container principal */
.concursos-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  /* Título */
  .concursos-titulo {
    color: #001f8b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
  }
  
  /* Grid de concursos */
  .concursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  /* Cards de ano */
  .concurso-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 31, 139, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    color: #001f8b;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #e0e8ff;
  }
  
  .concurso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 31, 139, 0.15);
    border-color: #5b8df6;
  }
  
  /* Badge "Novo" */
  .concurso-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 0 10px 0 5px;
  }
  
  /* Ano */
  .concurso-ano {
    z-index: 1;
  }
  
  /* Legenda */
  .concursos-legend {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
  }
  
  .legend-badge {
    display: inline-block;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-right: 0.3rem;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .concursos-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .concurso-card {
      height: 80px;
      font-size: 1rem;
    }
  }






  :root {
    --cor-primaria: #2c3e50;
    --cor-secundaria: #e74c3c;
    --cor-texto: #333;
    --cor-fundo: #f9f9f9;
    --cor-sucesso: #27ae60;
    --cor-alerta: #f39c12;
  }
  
  .concursos-container-B {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--cor-fundo);
  }
  
  .concursos-titulo-B {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--cor-primaria);
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .concursos-titulo-B::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--cor-secundaria);
  }
  
  .concursos-grid-B {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    justify-items: center;
  }
  
  .concurso-card-B {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: var(--cor-texto);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
  }
  
  .concurso-card-B:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }
  
  .card-logo-container-B {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .concurso-logo-B {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .concurso-card-B:hover .concurso-logo {
    transform: scale(1.05);
  }
  
  .card-content-B {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .concurso-titulo-B {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cor-primaria);
    line-height: 1.4;
    min-height: 3.5rem;
  }
  
  .concurso-meta-B {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  
  .concurso-ano-B {
    background: var(--cor-secundaria);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .concurso-status-B {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
  }
  
  .ativo {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--cor-sucesso);
  }
  
  .em-breve {
    background-color: rgba(243, 156, 18, 0.1);
    color: var(--cor-alerta);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .concursos-grid-B {
      grid-template-columns: 1fr;
    }
    
    .concurso-card-B {
      max-width: 100%;
    }
  }
  
  @media (min-width: 1200px) {
    .concursos-grid-B {
      grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    }
  }
  