*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f5f5f5;
}

/* Cabeçalho fixo */
.header-fixo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(10px);
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.logo-texto {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f9fafb;
  font-weight: 600;
}

.logo-icone img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.logo-titulo {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-subtitulo {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.menu {
  display: flex;
  gap: 1rem;
}

.menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu a:hover {
  background: rgba(249, 250, 251, 0.1);
  color: #fcd34d;
}

/* Compensar altura do cabeçalho no topo/hero */
.topo {
  margin-top: 64px; /* mesma altura do header fixo */
  min-height: calc(100vh - 64px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem 1.5rem;
}

.topo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    url("Midias/Baner.png") center 20% / cover no-repeat; /* sobe um pouco o enquadramento */
  opacity: 0.7;
  z-index: -1;
}

/* Em telas grandes, mostre mais da imagem reduzindo o zoom */
@media (min-width: 1200px) {
  .topo::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
      url("Midias/Baner.png") center 10% / contain no-repeat;
    background-color: #111827; /* preenche as bordas laterais, se sobrarem */
  }
}

.topo__conteudo {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.topo__conteudo h1 {
  font-size: 2.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.topo__conteudo h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.topo__conteudo p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #fcd34d;
  color: #222;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.secao {
  padding: 3rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 1rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.secao h2 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  color: #1f2937;
  border-left: 4px solid #fcd34d;
  padding-left: 0.5rem;
}

.secao p {
  margin-bottom: 0.75rem;
}

.lista-horarios {
  list-style: none;
  margin-top: 1rem;
}

.lista-horarios li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.grade-fotos {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.grade-fotos figure {
  border-radius: 10px;
  overflow: hidden;
  background-color: #111827;
}

.grade-fotos img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  max-height: 220px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.grade-fotos img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.galeria-aviso {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.video-container {
  margin-top: 1.5rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Grid da seção de contato com mapa */
.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.contato-mapa iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Ícones de redes sociais */
.redes-icones {
  list-style: none;
  margin-top: 0.75rem;
  padding-left: 0;
}

.redes-icones li {
  margin-bottom: 0.4rem;
}

.redes-icones a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #111827;
  text-decoration: none;
}

.redes-icones a:hover .rede-texto {
  text-decoration: underline;
}

.icone {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.icone-instagram {
  background: radial-gradient(circle at 30% 30%, #ffd600, #ff0069 40%, #d300c5 65%, #7638fa);
}

.icone-youtube {
  background: #ff0000;
}

.icone-facebook {
  background: #1877f2;
}

/* Letras dentro dos ícones (usando ::before para não depender de texto extra) */
.icone-instagram::before {
  content: "I";
}

.icone-youtube::before {
  content: "Y";
}

.icone-facebook::before {
  content: "F";
}

.sobre-redes {
  margin-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.sobre-redes p {
  margin-bottom: 0.5rem;
}

.redes {
  list-style: none;
  margin-top: 0.75rem;
}

.redes li {
  margin-bottom: 0.25rem;
}

.redes a {
  color: #2563eb;
  text-decoration: none;
}

.redes a:hover {
  text-decoration: underline;
}

.rodape {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

@media (max-width: 640px) {
  .menu {
    display: none; /* simples: escondemos o menu em telas muito pequenas (podemos fazer hambúrguer depois) */
  }
}

@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 768px) {
  .topo__conteudo h1 {
    font-size: 3rem;
  }

  .topo__conteudo h2 {
    font-size: 1.8rem;
  }
}

.informativos-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.informativo-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.informativo-item video,
.informativo-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.informativos-nota {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* ===== BANNER / TOPO ===== */
.topo {
  width: 100%;
  height: 100vh;

  /* Banner DESKTOP (padrão) */
  background-image: url("Midias/Baner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== BANNER MOBILE ===== */
@media (max-width: 768px) {
  .topo {
    background-image: url("Midias/BanerMobile.png");
    background-position: center top;
  }
}


@media (min-width: 900px) {
  .informativos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
