* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
}

/* ================= HEADER ================= */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: gold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

nav ul li a {
  padding: 8px 12px;
  transition: 0.3s;
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  background: gold;
  color: #000;
  border-radius: 5px;
}

/* ================= SECTIONS ================= */

section {
  padding: 90px 5%;
  min-height: 100vh;
  text-align: center;
}

/* ================= HERO ================= */

.hero h1 {
  font-size: clamp(2rem, 8vw, 7.8rem);
  color: gold;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

/* ================= BOTÕES ================= */

.btn {
  background: linear-gradient(145deg, gold, #6f4e37);
  color: #000;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  margin: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* ================= SERVICES ================= */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.card {
  background: #6b1e1e;
  padding: 25px;
  border-radius: 15px;
}

/* ================= GALERIA RESPONSIVA ================= */

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  max-width: 1500px;
  margin: 0 auto;
}

.galeria img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
}

/* ================= FORM ================= */

form {
  max-width: 420px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
select {
  padding: 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
}

/* ================= FOOTER ================= */

footer {
  background: #000;
  padding: 60px 5%;
  position: relative;
  text-align: center;
}

/* Botões flutuantes agora fixos na tela */

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25d366;
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
}

.instagram-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #ce7eba;
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
}

/* ================= VIDEO HERO ================= */

.video-hero {
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    109deg,
    rgba(10, 12, 16, 0.85) 45%,
    rgba(10, 12, 16, 0.7) 55%,
    rgba(10, 12, 16, 0.2) 85%
  );
  z-index: -1;
}

.video-hero h1,
.video-hero p {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* ================= MEDIA QUERIES ================= */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(2rem, 10vw, 4rem);
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    justify-content: center;
  }

  section {
    padding: 70px 5%;
  }

  footer {
    padding: 50px 5%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .whatsapp-float,
  .instagram-float {
    right: 10px;
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}
