/* Tipografia e base */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
}

/* Links padrão */
a {
  color: #003366;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  background-color: #003366;
}
.navbar-brand {
  color: white !important;
}
.btn-outline-light:hover {
  background-color: white;
  color: #003366;
  border-color: white;
}

/* Hero vídeo */
.hero-video {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

/* Faixa decorativa (topo) */
.section-divider {
  height: 90px;
  background-color: #003366;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Faixa decorativa (rodapé) */
.section-divider-bottom {
  padding: 7px;
  background-color: #003366;
  width: 100%;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Arabesco decorativo */
.arabesco-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* Seções */
.section-box {
  background-color: #f8f9fa;
  border-top: 4px solid #003366;
  border-bottom: 4px solid #003366;
  border-radius: 8px;
  padding: 60px 20px;
  margin-bottom: 40px;
}
.section-box h2 {
  color: #003366;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

/* Cards */
.card {
  border: 2px solid #003366;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-title {
  color: #003366;
  font-weight: 600;
}
.card-text {
  font-size: 0.95rem;
  color: #555;
}

/* Formulário */
form {
  max-width: 500px;
  margin: 0 auto;
}
form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form input:focus, form textarea:focus {
  border-color: #003366;
  outline: none;
}
form input:focus-visible, form textarea:focus-visible {
  outline: 2px solid #0055aa;
}
form button {
  background-color: #003366;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #0055aa;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 7px;
}
