/* ================================================== */
/* RESET UNIVERSAL DE BOX-SIZING */
/* ================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Define estilo básico do corpo da página */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}

/* Cabeçalho genérico (se usado fora do header principal) */
header {
  background: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Estiliza o menu de navegação genérico */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
nav a {
  color: white;
  text-decoration: none;
}

/* Banner */
#banner {
  background: url('https://via.placeholder.com/1200x300') center/cover no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
  background-color: #006699; /* fallback */
}

/* Seções */
section {
  padding: 40px 20px;
}

/* Formulários */
form input,
form textarea {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

/* Rodapé */
footer {
  text-align: center;
  background: #003366;
  color: white;
  padding: 20px;
}

/* ====== Footer específico ====== */
.site-footer {
  background: #002244; /* Azul escuro */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  max-width: 140px;
  margin-bottom: 15px;
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0c419;
  display: inline-block;
  padding-bottom: 5px;
}
.contact-list,
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li,
.footer-nav li {
  margin-bottom: 10px;
}
.contact-list a,
.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover,
.footer-nav a:hover {
  color: #f0c419;
}
.contact-list i {
  margin-right: 8px;
  color: #f0c419;
}
.footer-social-icons {
  display: flex;
  gap: 12px;
}
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #003366;
  color: #fff;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.footer-social-icons a:hover {
  background: #f0c419;
  color: #002244;
  transform: scale(1.1);
}
.footer-bottom-bar {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ddd;
}

/* ============================================= */
/* ESTILO PADRÃO PARA TÍTULOS DE SEÇÃO           */
/* ============================================= */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 50px; /* Espaçamento abaixo do título */
    font-family: 'Poppins', sans-serif;
}

.section-title strong {
    color: #ffcc00;
    font-weight: 700;
}