/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #111;
  color: white;
  overflow-x: hidden;
}

/* MENU */

header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  transition: 0.3s;
}

nav ul li a:hover {
  background: #d4af37;
  color: black;
}

.btn-menu {
  background: #d4af37;
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-menu:hover {
  transform: scale(1.05);
}

/* HERO */

.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?q=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #d4af37;
  color: black;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px #d4af37;
}

/* SEÇÕES */

section {
  padding: 100px 10%;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #d4af37;
}

/* SOBRE */

.sobre {
  background: #181818;
  text-align: center;
}

.sobre p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

/* SERVIÇOS */

.servicos {
  background: #111;
}

.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 300px;
  padding: 30px;
  background: #1c1c1c;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #333;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

.card h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

/* GALERIA */

.galeria {
  background: #181818;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid-galeria img {
  width: 100%;
  border-radius: 15px;
  transition: 0.4s;
}

.grid-galeria img:hover {
  transform: scale(1.05);
}

/* MAPA */

.localizacao iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 20px;
}

/* CONTATO */

.contato {
  background: #111;
}

form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

textarea {
  min-height: 150px;
}

button {
  background: #d4af37;
  color: black;
  border: none;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px);
}

/* RODAPÉ */

footer {
  background: black;
  padding: 40px;
  text-align: center;
}

footer h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

/* ========================================= */
/* WHATSAPP FLUTUANTE */
/* ========================================= */

.whatsapp-float {
  position: fixed;

  right: 20px;
  bottom: 20px;

  width: 65px;
  height: 65px;

  border-radius: 50%;

  background: #25d366;

  color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px;

  text-decoration: none;

  z-index: 9999;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* RESPONSIVO */

@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 80px 20px;
  }
}
