header {
  background-color: #ffcc00;
  padding: 15px 30px;
  font-family: 'Novecento Wide', sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo img {
  height: 60px;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: white;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #6C5900;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav ul li a:hover {
  color: #4a3f00;
 
}
/* === FONTES PERSONALIZADAS === */
@font-face {
  font-family: 'Novecento Wide';
  src: url('fonts/Novecentowide-Bold.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'Novecento Wide';
  src: url('fonts/Novecentowide-Medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'Novecento Wide';
  src: url('fonts/Novecentowide-Light.otf') format('opentype');
  font-weight: 300;
}
h1, h2, h3 {
  font-weight: 700;
  color: #6F6F6E;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 30px;
}

section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}

/* Banner */
#banner {
  width: 100%;
  height: 100vh;
  background-image: url('img/banner/banner1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  box-sizing: border-box;
  position: relative;
  margin-top: 80px; /* compensa o header fixo */
}

/* Conteúdo do banner com espaçamento suave */
.banner-conteudo {
  max-width: 1000px;
  padding: 0 20px;
  font-family: 'Novecento Wide', sans-serif;
  z-index: 2;
}

#banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* sobreposição escura */
  z-index: 1;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f2f2f2;
}



@keyframes slideShow {
  0%    { background-image: url('../img/banner/banner1.jpg'); }
  33%   { background-image: url('../img/banner/banner2.jpg'); }
  66%   { background-image: url('../img/banner/banner3.jpg'); }
  100%  { background-image: url('../img/banner/banner1.jpg'); }
}

.banner-conteudo h1 {
  font-size: 3rem;
  font-weight: 700; /* Usa NovecentoWide-Bold */
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #ffcc00; /* Cor aplicada aqui */
}


.banner-conteudo p {
  font-size: 1.5rem;
  font-weight: 500; /* Usa NovecentoWide-Light */
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.btn-banner {
    background: #D00000; /* vermelho forte */
  color: #fff;          /* texto branco */
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-family: 'Novecento Wide', sans-serif;
}

.btn-banner:hover {
  background: #00a859;
  color: white;
}

#sobre {
  background-image: url('img/fundo_folhas.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 10%;
  font-family: 'Novecento Wide', sans-serif;
  color: #6F6F6E; /* Cor aplicada aqui */
  text-align: center;
}

#sobre h2 {
  font-size: 2.5rem;
  color: #ff4700;
  margin-bottom: 40px;
}

#sobre p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #6F6F6E; /* Garante que o parágrafo siga a cor */
}

#sobre p.destaque {
  font-size: 1.3rem;
  font-weight: bold;
  color: #6F6F6E; /* Também aplicado na chamada final */
  margin-top: 30px;
}

#video {
  background-color: #2E1D12; /* marrom bem escuro */
  padding: 60px 0;
  text-align: center;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  text-align: center;
}

.modal-content {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 8px;
}

.modal-caption {
  color: white;
  font-size: 18px;
  margin-top: 10px;
}

.close, .prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
}

.close {
  top: 20px;
  right: 30px;
  font-size: 30px;
}

.prev { left: 20px; }
.next { right: 20px; }


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }

  .banner-conteudo {
    padding-top: 20px;
  }

  .banner-conteudo h1 {
    font-size: 2.2rem;
    line-height: 2.4rem;
    margin-bottom: 1rem;
  }

  .banner-conteudo p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .btn-banner {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    padding: 10px 0;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .menu {
    width: 100%;
  }

  .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
  }

  .menu a {
    font-size: 1.1rem;
  }




