
/* Reset */
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #041f3c; /* Altere para a cor desejada */
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  /* ... (outros estilos do body) ... */
}
a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* Logo */
.logo {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* Navegação */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #23232e;
  height: 8vh;
}

/* Estilos para as imagens */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px; /* Espaçamento entre o cabeçalho e as imagens */
}

.image-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  background-color: #041f3b;
  padding: 20px;
  overflow-x: auto;
}

img {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  border: none;
  margin: 0 5px;
}

/* Background da área das imagens */
.image-background {
  background-color: #041f3b;
  padding: 20px;
}

/* Links das imagens */
.image-link {
  position: relative;
  display: inline-block;
}

.image-link img {
  display: block;
}

/* Botão principal */
.button {
  position: absolute;
  top: 75%; /* Posiciona o botão no centro vertical */
  left: 50%; /* Posiciona o botão no centro horizontal */
  transform: translate(-50%, -50%);
  padding: 20px; /* Ajuste de padding para telas maiores */
  background-color: #647d7e;
  color: #000000;
  border: 2px solid #647d7e;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em; /* Altere este valor para ajustar o tamanho do botão */
  transition: all 0.3s ease;
  width: 70%; /* Define a largura dos botões */
  max-width: 300px; /* Largura máxima para evitar expansão excessiva */
  text-align: center; /* Centraliza o texto */
  box-sizing: border-box; /* Inclui padding e border na largura */
}

/* Botão na segunda imagem */
.second-image-button {
  position: absolute;
  top: 94%; /* Ajuste a posição do segundo botão conforme necessário */
  left: 50%; /* Posiciona o botão no centro horizontal */
  transform: translate(-50%, -50%);
  padding: 20px; /* Ajuste de padding para telas maiores */
  background-color: #4baa53;
  color: #000000;
  border: 2px solid #4baa53;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px; /* Altere este valor para ajustar o tamanho do botão */
  transition: all 0.3s ease;
  width: 80%; /* Define a largura dos botões */
  max-width: 300px; /* Largura máxima para evitar expansão excessiva */
  text-align: center; /* Centraliza o texto */
  box-sizing: border-box; /* Inclui padding e border na largura */
}

/* Estilos para a imagem */
.second-image-link {
  position: relative; /* Para que os botões sejam posicionados em relação a esta imagem */
  display: inline-block; /* Garante que a largura da imagem seja do tamanho da própria imagem */
}

/* Estilos para telas menores */
@media screen and (max-width: 768px) {
  .second-image-button {
    top: 94%;
    padding: 7px; /* Ajuste de padding para telas menores */
    font-size: 0.8em; /* Reduz ainda mais o tamanho do texto para telas menores */
    width: 60%; /* Ajusta a largura para telas menores */
    max-width: none; /* Remove a largura máxima para permitir que se expandam conforme necessário */
  }
  .button {
    top: 85%;
    padding: 7px; /* Ajuste de padding para telas menores */
    font-size: 0.8em; /* Reduz ainda mais o tamanho do texto para telas menores */
    width: 60%; /* Ajusta a largura para telas menores */
    max-width: none; /* Remove a largura máxima para permitir que se expandam conforme necessário */
  }
}


/* Segunda imagem */
.second-image-link {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.second-image-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* Estilos adicionais para telas menores */
@media screen and (max-width: 768px) {
  img {
      margin: 0 2.5px;
  }

  .image-container {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Estilos para menu mobile */
.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
      overflow-x: hidden;
  }

  .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: #23232e;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
  }

  .nav-list li {
      margin-left: 0;
      opacity: 0;
  }

  .mobile-menu {
      display: block;
  }
}

.nav-list.active {
  transform: translateX(0);
}

@keyframes navLinkFade {
  from {
      opacity: 0;
      transform: translateX(50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}


/* ... (seu código CSS existente) ... */

/* Botão de WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4baa53;
  padding: 10px;
  border: 2px solid #4baa53;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.whatsapp-float a {
  text-decoration: none;
}

.whatsapp-float img {
  width: 30px; /* Ajuste o tamanho do ícone conforme necessário */
  height: auto;
}

/* ... (seu código CSS existente) ... */
