/* Logótipo responsivo e centralizado */
.logo-ajessite {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Fonte e estrutura base */
body {
  font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html, body {
  height: 100%;
}

/* Conteúdo principal com espaçamento */
main {
  flex: 1;
  margin: 4rem auto 2rem auto;
  max-width: 1000px;
  padding: 0 1rem;
}
.bg-parceiros {
  background: linear-gradient(to right, #0B1D51, #1446A0);
  border-radius: 0;
  margin-bottom: 0;
  padding-bottom: 2rem;  
}
/* Parágrafos com espaço */
main p {
  margin-bottom: 1.25rem;
}

/* Navbar moderna */
.navbar {
  background-color: transparent !important;
  box-shadow: none !important;
}

.navbar .nav-link {
  color: #3E3AA9 !important;
  font-weight: 400;
  padding: 0.75rem 1rem;
  text-decoration: none !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #2e2b8d !important;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  text-decoration: none !important;
}

/* Footer leve e moderno */
footer {
  background-color: #f8f9fa;
  color: #555;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #333333;         /* ou usa "black" se quiseres mais escuro */
  text-decoration: none;  /* remove o sublinhado */
}

footer a:hover {
  text-decoration: underline;  /* opcional: mostra sublinhado ao passar o rato */
  color: #000000;              /* opcional: escurece ao hover */
}

/* Imagens suaves */
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Cards (ex: para notícias ou seguros) */
.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

/* Botões outline */
.btn-outline-primary {
  color: #3E3AA9;
  border-color: #3E3AA9;
  font-weight: 500;
  border-radius: 4px;
}

.btn-outline-primary:hover {
  background-color: #3E3AA9;
  color: white;
}

/* === Melhorias visuais === */
.navbar .nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-link::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #2A3DFF;
  width: 0;
  transition: width 0.3s ease;
  margin: 0 auto;
}

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

/* Destaque de secções */
.section-cta {
  background-color: #f5f8ff;
  padding: 3rem 1rem;
  text-align: center;
}

.section-cta h2 {
  margin-bottom: 1rem;
}

.section-cta .btn {
  margin-top: 1rem;
}

/* Mapa responsivo */
.responsive-map {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.responsive-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Contactos com ícones */
.contacto-info li {
  margin-bottom: 0.5rem;
}
.contacto-info i {
  margin-right: 0.5rem;
  color: #2A3DFF;
}

.hero-azul {
  background: linear-gradient(to bottom, rgba(0, 32, 96, 0.85), rgba(0, 32, 96, 0.85)),
              url('../img/neg.jpg') no-repeat center center;
  background-size: cover;
  height: 10000000vh; /* << aumentei de 80vh para 100vh */
  padding: 5rem 1rem;
}

.documentos-section h2 {
  font-weight: 600;
  color: #0B1D51;
}

.documentos-section .card-title {
  font-weight: 600;
  color: #1446A0;
}

.documentos-section .btn {
  margin-top: 1rem;
}