/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Merienda:wght@300..900&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Shrikhand&display=swap');

/* Reset */
* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Header */
header {
  background-color: #003366;
  color: white;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

header h3 {
  font-size: 2em;
  font-family: 'Merienda', cursive;
  margin-left: 15px;
  flex: 2;
  margin-right: 10px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

h3.animado {
  animation: brilhoTexto 1s ease-in-out forwards;
  opacity: 1;
  transform: translateY(0);
}

@keyframes brilhoTexto {
  0% { text-shadow: none; }
  100% { text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.8); }
}

.logo-header {
  width: 120px;
  height: auto;
  margin-right: 2%;
}

/* WhatsApp */
.whatsapp-numeros {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-right: 10%;
  text-align: center;
  justify-content: center;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.6em;
  color: gold;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.whatsapp-link:hover {
  color: rgb(185, 19, 32);
}

.whatsapp-icon {
  width: 45px;
  height: auto;
  margin-right: 5px;
}

/* Main */
main {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* Seção de Texto com Imagem */
.container-texto-imagem {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 2rem;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
}

.predio1 { mix-blend-mode: lighten; }
.predio3 { mix-blend-mode: multiply; }

@keyframes floatSlow {
  0% { transform: translateY(0px) scale(1); opacity: 0.08; }
  50% { transform: translateY(-10px) scale(1.02); opacity: 0.12; }
  100% { transform: translateY(0px) scale(1); opacity: 0.08; }
}

img.predio1,
img.predio3 {
  animation: floatSlow 10s ease-in-out infinite;
}

/* Colunas */
.coluna-esquerda, .coluna-direita {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  flex: 1;
  min-width: 300px;
}

/* Lista de serviços */
.lista-servicos {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.lista-servicos li {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #444;
  position: relative;
  padding-left: 25px;
}

.lista-servicos li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #28a745;
}

/* Informações de contato */
.contato-info {
  margin-top: 30px;
  font-size: 1.05em;
  line-height: 1.6;
}

.contato-info a {
  color: #007bff;
  text-decoration: none;
}

.contato-info a:hover {
  text-decoration: underline;
}

/* Galeria de Imagens */
.galeria-imagens {
  width: 100%;
  margin-top: 40px;
  padding: 20px;
  background-color: #fdfdfd;
  border-top: 3px solid rgb(241, 177, 37);
}

.galeria-imagens h2 {
  text-align: center;
  margin-bottom: 25px;
  font-family: 'Merienda', cursive;
  font-size: 2em;
  color: #222;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.galeria img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Seção de Serviços Detalhados */
.servicos-detalhados {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
  background-color: #fff;
  max-width: 1100px;
  margin: auto;
}

.bloco-servico {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background-color: #fffefc;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  text-align: center;
}

.bloco-servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.bloco-servico img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.bloco-servico .descricao h3 {
  font-size: 1.6em;
  font-family: 'Merienda', cursive;
  margin-bottom: 10px;
  color: #222;
}

.bloco-servico .descricao p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
}

/* Footer */
footer {
  background: #003366;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

footer h2 {
  margin: 0;
  padding-bottom: 10px;
}

footer b {
  display: block;
  margin-top: 10px;
}

footer p {
  margin: 10px 0 0;
}

footer img {
  width: 130px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
}

/* Botão WhatsApp flutuante */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-fixed img {
  width: 50px;
  height: 50px;
}

/* Responsivo */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }

  header h3 {
    font-size: 1.4em;
    margin: 10px 0;
  }

  .logo-header {
    width: 100px;
  }

  .whatsapp-numeros {
    margin: 10px 0;
    gap: 10px;
  }

  main {
    padding: 10px;
  }

  .container-texto-imagem,
  .bloco-servico {
    flex-direction: column;
    align-items: center;
  }

  .coluna-esquerda, .coluna-direita,
  .bloco-servico {
    max-width: 100%;
    flex: none;
  }

  .lista-servicos li,
  .contato-info {
    font-size: 1em;
  }

  .servicos-detalhados {
    padding: 1rem;
    gap: 1rem;
  }

  .bloco-servico {
    width: 100%;
    text-align: left;
  }

  .bloco-servico .descricao h3 {
    font-size: 1.3em;
  }

  .bloco-servico .descricao p {
    font-size: 1em;
  }

  .galeria {
    grid-template-columns: 1fr;
    padding: 0;
  }

  footer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  header h3 {
    font-size: 1.2em;
  }

  .whatsapp-link {
    font-size: 1.1em;
    flex-direction: row;
    justify-content: center;
  }

  .whatsapp-icon {
    width: 35px;
  }

  .bloco-servico img {
    width: 100%;
    height: auto;
  }

  .whatsapp-fixed {
    width: 50px;
    height: 50px;
  }

  .whatsapp-fixed img {
    width: 40px;
    height: 40px;
  }
}

/* Seção predios-container */
.predios-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.predios-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out, transform 0.5s ease-out;
}

.predio1 {
  z-index: 1;
}

.predio3 {
  z-index: 2;
  opacity: 0;
}
