body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  background-color: #444441 /*#333333; /* #1f2a44 Alterei a cor do fundo para um tom escuro que destaca o logo */
}

.logo img {
  height: 110px; /* Ajusta a altura do logo conforme necessário */
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white; /* Alterei a cor do texto para branco, para melhor contraste */
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #76b8e3; /* Uma cor azul clara para o hover, combinando com o logo */
}

/* Carousel Styles */
#banner {
  position: relative;
  height: 80vh;
  background: #ddd;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilo de Tipografia para o Carrossel */
.caption {
  position: absolute;
  bottom: 15%;
  left: 10%;
  color: white;
  font-family: 'Poppins', sans-serif; /* Fonte moderna semelhante ao exemplo */
  text-transform: uppercase;
  font-weight: 900; /* Negrito intenso para destaque */
  font-size: 3rem; /* Tamanho grande da fonte */
  background: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente */
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra no texto */
  letter-spacing: 2px; /* Espaçamento entre letras */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* Sombra para destacar o texto */
}

.caption small {
  display: block;
  font-size: 1.5rem; /* Texto menor para subtítulos */
  margin-top: 10px;
  font-weight: 400;
}

/* About Us Section */
#about {
  padding: 80px 0;
  background-color: #1f2a44;
  text-align: center;
  color: white;
}

#about h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: 1px;
}

#about .subheading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #76b8e3;
}

#about .description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #d1d1d1;
  max-width: 800px;
  margin: 0 auto;
}

<!--SERVICES -->

/* Services Section */
#services {
  padding: 60px;
  background-color: #f9f9f9;
  text-align: center;
}

#services h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2a44;
}

.service-blocks {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.service {
  width: 30%;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service:hover {
  transform: scale(1.05); /* Efeito de hover suave */
}

.service h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.service img {
  width: 100%;
  height: 200px; /* Definição de altura fixa para manter tamanho consistente */
  object-fit: cover; /* Para garantir que a imagem preencha o espaço sem distorção */
  margin-bottom: 15px;
  border-radius: 8px;
}

.service p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* Our Work Section */
/* Section Header (Our Completed Projects) */
.section-header {
  background-color: #1f2a44; /* Fundo escuro para separar visualmente as seções */
  padding: 40px 0;
  text-align: center;
}

.section-header h2 {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif; /* Fonte profissional e moderna */
  color: #ffffff;
  margin: 0;
}

/* Subheaders for Video and Photo Galleries */
.gallery-header {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  margin: 30px 0;
  background-color: #f9f9f9; /* Fundo claro para contraste */
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

/* Gallery Layout */
.gallery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-item {
  width: 30%;
  position: relative;
  cursor: pointer;
}

.gallery-item img, .gallery-item video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.05); /* Efeito de zoom suave ao passar o mouse */
}
/* Lightbox para exibir imagem ou vídeo em tela cheia */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}


#portfolio {
  padding: 50px;
  text-align: center;
}

.portfolio-gallery {
  display: flex;
  justify-content: space-around;
}

.portfolio-gallery img {
  width: 30%;
  border-radius: 8px;
}

/* Contact Form Section */
#contact {
  padding: 60px;
  background-color: #f4f4f4;
}

#contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1f2a44;
}

/* Contact Us Button in About Us */
.contact-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #1f2a44;
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #76b8e3; /* Cor de hover para o botão */
}

form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

input[type="text"], input[type="tel"], input[type="email"], textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  height: 150px;
}

input[type="submit"] {
  width: 100%;
  background-color: #1f2a44;
  color: white;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #76b8e3;
}
/* Footer Section */
#footer {
  background-color:#444441;
  color: white;
  padding: 60px 0;
  text-align: center;
}

#footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-info {
  flex: 1;
  padding: 20px;
}

.footer-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-info p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer-logo {
  width: 320px; /* Define o tamanho do logo */
  margin: 20px 0;
}

.footer-map {
  flex: 1;
  padding: 20px;
}

.footer-bottom {
  background-color: #000000;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}



/* ======= Estilo do Menu Hambúrguer ======= */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #1f1f3e;
  position: relative;
}

nav {
  display: none;
  flex-direction: column;
  background-color: #1f1f3e;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

nav.active {
  display: flex;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  border-bottom: 1px solid #333;
}

nav ul li a {
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-size: 18px;
}

nav ul li a:hover {
  background-color: #2d2d5a;
  color: #76b8e3;
}

/* Botão Hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Estilo para mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }

  nav.active {
    display: flex;
  }
}



/* ================= Responsividade ================= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  nav ul li {
    margin: 10px 0;
  }

  .logo img {
    height: 80px;
  }

  .caption {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  .caption small {
    font-size: 1rem;
  }

  #banner {
    height: 60vh;
  }

  .slide img {
    object-fit: cover;
    height: 100%;
  }

  #about {
    padding: 40px 10px;
  }

  #about .container {
    padding: 0 10px;
  }

  .section-content {
    flex-direction: column;
    align-items: center;
  }

  .section-content .item {
    width: 90%;
    margin-bottom: 20px;
  }
}

/* ================= Utilitários para layout flexível ================= */
.section-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.section-content .item {
  width: 30%;
  margin: 15px;
}



/* ================= Estilo do Formulário de Contato ================= */
.contact-form {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #1f1f3e;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #33335a;
}
