* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  background: #333;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.social-media {
  margin: 0 20px;
  width: 40px;
  float: right;
}

.contact-info {
  margin: 0 0px;
  width: 400px;
  float: left;
}

header .contact_bar {
  font-size: 1.0rem;
  font-weight: bold;
  background-color: #fff;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-top: 30px;
}

header nav a {
  color: #fff;
  text-decoration: none;
}

.div_clear {
    clear: both;
    height: 1px;
}

.divLogo {
	margin-top: 30px;
}

.hero {
  text-align: center;
  background: #f4f4f4;
  padding: 2rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

#photos, #contact {
  padding: 2rem 1rem;
  height: 1000px;
  background-color: #333;
  color: #fff;
}

#about, #links {
  padding: 2rem 1rem;
  height: 1000px;
}

.line_space30 {
	line-height:30px;
}

.photos-gallery {
    display: flex; /* Permite o uso de flexbox para layout */
    flex-wrap: wrap; /* Quebra a linha se as imagens não couberem */
    justify-content: space-around; /* Distribui as imagens uniformemente */
  }

  .photos-gallery img {
    width: 200px; /* Ajuste o tamanho conforme necessário */
    height: auto;   /* Mantém a proporção da imagem */
    margin: 10px;   /* Espaçamento entre as imagens */
    border: 1px solid #ccc; /* Borda opcional */
  }
  
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 150px;
  height: 180px;
  margin: 10px;
  cursor: pointer;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
}
.lightbox .close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

#links ul {
	padding: 1rem;
}

/*PROPRIEDADES DE LINKS*/
#links a:link {
    font-size: 16px;
    color: #0C6FD1;
    text-decoration: none;
}

#links a:visited {
    font-size: 16px;
    color: #0C6FD1;
    text-decoration: none;
}

#links a:hover {
    font-size: 16px;
    color: #5EA5EC;
    text-decoration: none;
}

#links a:active {
    font-size: 16px;
    color: #5EA5EC;
    text-decoration: none;
}


form {
  max-width: 500px;
  margin: 0 auto;
}

form label {
  display: block;
  margin-top: 1rem;
}

form input, form textarea, form button {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.banner {
      height: 900px; /* Altura do banner */
      overflow: hidden; /* Impede que a imagem ultrapasse o container */
      position: relative; /* Para posicionar o texto sobre a imagem */
    }
    .banner-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ajusta a imagem para cobrir todo o container, mantendo proporção */
    }
    .banner-text {
      position: absolute;
      bottom: 20px;
      left: 20px;
      color: white; /* Ou outra cor que contraste com a imagem */
      text-shadow: 2px 2px 4px #000000; /* Adiciona sombra ao texto */
    }
    .banner-text h1 {
      font-size: 3em;
      margin-bottom: 10px;
    }
    .banner-text p {
      font-size: 1.5em;
    }
    .banner-button {
    .banner-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #007bff; /* Cor do botão */
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }
	
header .contact_bar .contact-info, .social-media {
  margin: 0 20px;
}




	
