:root {
  --azul-escuro: #0f2235;
  --azul-médio: #1c3e5d;
  --azul-claro: #3e79b3;
  --cinza: #444;
  --cinza-claro: #f4f6f8;
  --branco: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background-color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
   font-family: 'Inter', sans-serif;
  color: var(--cinza);

}

/* Navegação e Hero */
.hero-banner {
  background: url('IMG_9585.png') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  padding: 20px;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ddd;
}

.hero-content {
  text-align: center;
  padding-bottom: 60px;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero-content p {
  font-size: 1rem;
  margin-top: 10px;
}

/* Seções */
section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}



.sobre {
  background: var(--azul-escuro);
  color: var(--branco);
  border-radius: 8px;
}

.sobre h3, .servicos h3, .testemunhos h3, .contato h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid currentColor;
}

.servicos {
  background: var(--cinza-claro);
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

figure {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--sombra);
  text-align: center;
}

figure img {
  max-width: 100%;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

figure:hover img {
  transform: scale(1.03);
}

figcaption {
  margin-top: 10px;
  font-style: italic;
  color: #666;
}

/* Testemunhos */
.testemunhos {
  background: #1f1f1f;
  color: white;
}

/* Contato */
.contato {
  text-align: center;
}

.btn-whatsapp {
  background-color: var(--azul-escuro);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  transition: transform 0.3s ease;



}

.btn-whatsapp:hover {
  background-color: #0f2a45; 
   transform: scale(1.05);
}

/* Rodapé */
footer {
  background: var(--azul-escuro);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

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

.hero-banner {
  position: relative;
  background: url('IMG_9585.png') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  padding: 20px;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* sobreposição escura */
  z-index: 1;
}

.nav-container,
.hero-content {
  position: relative;
  z-index: 2;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animar {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.formulario {
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario input,
.formulario textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
}

.formulario button {
  background-color: var(--azul-escuro);
  color: white;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario button:hover {
  background-color: #0f2a45;
}

.ou {
  text-align: center;
  margin: 20px 0 10px;
  color: #777;
}

.formulario button,
.btn-whatsapp {
  background: var(--azul-médio);
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.formulario button:hover,
.btn-whatsapp:hover {
  background: var(--azul-claro);
}
