body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar-custom {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #00B1E3;
}

/* BOTÃO ÁREA RESTRITA */
.btn-area {
  background: #0A2540;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* MOBILE */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 22px;
    background: none;
    border: none;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* FOOTER */
.footer-custom {
  background: #0A2540;
  color: white;
  padding: 40px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-custom h3 {
  margin-bottom: 10px;
}

.footer-custom a {
  color: #ccc;
  text-decoration: none;
}

.footer-custom a:hover {
  color: #00B1E3;
}

.footer-custom iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}