 /* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 10px; /* leve respiro lateral */
}

/* Logo */
.logo img {
  height: 80px; /* aumente ou reduza conforme o tamanho real do logo */
  object-fit: contain;
  display: block;
}

/* Menu */
.menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center; /* garante que os itens fiquem no centro vertical */
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.menu a:hover {
  color: #0077cc;
}

/* Banner */
.banner {
  position: relative; /* necessário para a camada se posicionar dentro do banner */
  background: url('img/fotobanner.jpg') center/cover no-repeat;
  height: 500px;
  margin-top: 100px; /* ajuste se sua topbar tiver 100px */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #4a90e2; /* cor de fallback */
  overflow: hidden;
}

/* Camada preta com opacidade ajustável */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* <<< ajuste aqui a opacidade */
  z-index: 1;
}

/* Garante que o texto fique por cima da camada */
.banner-content {
  position: relative;
  z-index: 2;
}


.banner-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  border-radius: 8px;
}

.banner h1 {
  font-size: 2.2em;
}

.banner p {
  margin-top: 10px;
  font-size: 1.1em;
}

/* Quem Somos */
.quem-somos {
  padding: 60px 0;
  text-align: center;
}

.quem-somos h2 {
  margin-bottom: 20px;
  color: #0077cc;
}

.quem-somos p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

/* Página Quem Somos */
.quem-somos {
  padding: 80px 0;
  margin-top: 100px;
  background: #fafafa;
  color: #333;
}

.quem-somos .container {
  max-width: 900px;
  margin: 0 auto;
}

.quem-somos h2 {
  color: #0077cc;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
}

.quem-somos h3 {
  margin-top: 30px;
  color: #005fa3;
  font-size: 1.4em;
  border-left: 5px solid #0077cc;
  padding-left: 10px;
}

.quem-somos h4 {
  margin-top: 20px;
  font-size: 1.2em;
  color: #0077cc;
}

.quem-somos p {
  margin-top: 10px;
  text-align: justify;
  line-height: 1.8;
}

.quem-somos ul {
  margin-top: 10px;
  margin-left: 25px;
  list-style: disc;
}

.quem-somos ul li {
  margin-bottom: 5px;
  line-height: 1.6;
}

.faixa-quem-somos {
  background-color: #0077cc;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 1px;
  animation: fadeIn 1s ease-in-out;
}



@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.faixa-abaixo-dobanner {
  background-color: #0077cc;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 1px;
  }
  
.btn {
  background: #0077cc;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #005fa3;
}

/* Álbum de fotos */
.album {
  padding: 50px 0;
  background: #f8f8f8;
}

.fotos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.fotos img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Faixa de redes sociais */
.redes {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

.redes p {
  margin-bottom: 15px;
  font-size: 1.2em;
}

.redes .icones a img {
  width: 35px;
  margin: 0 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.redes .icones a:hover img {
  transform: scale(1.1);
}

/* Rodapé */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
}



/* Portal da Transparência */
.transparencia {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.transparencia h2 {
  color: #1d3b73;
  margin-bottom: 40px;
  font-size: 2em;
}

.cards-transparencia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.card {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 25px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: #1d3b73;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.card a {
  text-decoration: none;
  color: #1d3b73;
  font-weight: 500;
  font-size: 0.95em;
  transition: color 0.3s;
}

.card a:hover {
  color: #0077cc;
}

/* ===== MENU HAMBÚRGUER (Responsivo) ===== */
/* ===== MENU HAMBÚRGUER ===== */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #0077cc;
  z-index: 1100;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .menu.active {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 20px 0;
  }

  .menu a {
    color: #333;
    font-size: 1.1em;
  }

  .menu-toggle {
    display: block;
  }
}

