/*Criado por Douglas Júlio--(69) 992476425--17/04/2025--*/


/* Reset e configurações globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: white;
}

body {
  padding-top: 80px; /* Espaço para a navbar fixa */
  background-color: #4b4d4f; /* Cor de fundo da página */
}

/* NAVBAR FIXA E ESTILIZADA */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 6px rgba(20, 20, 20, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 2rem;
  z-index: 1000;
}

.logo-nav img {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a:hover {
  color: orange;
}

/* MENU HAMBURGUER PARA MOBILE */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

/* RESPONSIVIDADE DO MENU */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(0, 0, 0, 0.567);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .logo img {
    width: 200px;
  }
}

/* SOBREPOSIÇÃO ESCURA (caso use fundo com imagem) */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  padding: 2rem;
  text-align: center;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* LOGO PRINCIPAL */
.logo img {
  width: 300px;
  margin-bottom: 1rem;
  display: flex;
}

/* CARROSSEL DE IMAGENS */
.carousel {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 15px;
}

.carousel img {
  width: 100%;
  display: none;
  transition: opacity 0.5s ease-in-out;
  border-radius: 15px;
}

.carousel img.active {
  display: block;
}

/* ESTILOS DAS SESSÕES */
.section {
  background-color: rgba(142, 139, 139, 0.119);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 700px;
  border-radius: 10px;
  margin-top: 15vh;
}

.section span {
  color: #fffbfbc8;
}

.section h2 {
  margin-bottom: 1rem;
  color: #fafafa;
}

.section p {
  color: #ffffff;
  line-height: 1.6;
}

.section a {
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
}

/* RODAPÉ */
footer {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 0.5rem;
  margin-top: 0.2rem;
  border-radius: 5px;
}
