/* ========== BASE ========== */
body {
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
  padding-top: 80px; /* espaço para o menu fixo */
}

@media (max-width: 767px) {
  body {
    padding-top: 70px; /* espaço extra no mobile */
  }
}

/* ========== HEADER / NAVBAR ========== */
.section-header {
  background-color: #003366;
}

.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #003366;
}

/* Logo padrão */
.navbar-brand {
  margin-right: auto;
}
.navbar-brand img {
  max-height: 70px;
  height: auto;
}

/* Logo menor no mobile */
@media (max-width: 767px) {
  .navbar-brand img {
    max-height: 45px;
  }
}

/* Alinhamento dos botões */
.navbar .ms-auto {
  margin-left: auto !important;
}
.navbar .btn {
  white-space: nowrap;
  margin-left: 10px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.navbar .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Ícone do menu mobile (hamburger branco) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Nav links (caso ative depois) */
.navbar-nav .nav-link {
  padding: 5px 20px;
  font-weight: 500;
  color: #fff !important;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #00d9ff !important;
  text-decoration: none;
}

/* ========== SLIDER ========== */
.section-slider {
  background-color: #f8f9fa;
}
.slider-img {
  width: 100%;
  max-height: 960px;
  object-fit: cover;
}

/* ========== FAQ / ACCORDION ========== */
.section-faq {
  background-color: #ffffff;
}
.section-faq .accordion-item {
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.section-faq .accordion-button {
  background-color: #f0f8ff;
  font-weight: 600;
  font-size: 18px;
  color: #003366;
  transition: background 0.3s, color 0.3s;
}
.section-faq .accordion-button:not(.collapsed) {
  background-color: #e6f2ff;
  color: #003366;
}
.section-faq .accordion-body {
  background-color: #ffffff;
  padding: 15px;
  font-size: 16px;
  color: #333;
}
.accordion-button::after {
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* ========== FOOTER ========== */
.section-footer {
  background-color: #222;
  color: #fff;
}
.footer-column h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #00d9ff;
  text-decoration: none;
}
