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

/* BASE */
body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #eaeaea;
  line-height: 1.6;
}

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

/* HEADER */
header {
  background: #000;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

header h1 {
  color: #d4af37;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* MENU */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: #eaeaea;
  font-size: 16px;
  position: relative;
}

/* underline elegante */
nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #d4af37;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 20px;
  flex-wrap: wrap;
  text-align: center;
}

.hero-text h2 {
  font-size: 40px;
  color: #d4af37;
}

.hero-text p {
  margin: 15px 0;
  font-size: 18px;
  color: #cccccc;
}

/* IMAGEM */
.hero-img {
  max-width: 340px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

/* BOTÃO PRINCIPAL */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 13px 32px;
  background: linear-gradient(135deg, #d4af37, #b8942e);
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

/* SERVIÇOS */
.services {
  text-align: center;
  padding: 60px 20px;
}

.service-box {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service-box article {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 25px;
  border-radius: 16px;
  max-width: 340px;
  transition: 0.3s ease;
}

.service-box article:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

.service-box p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 15px;
}

/* LINKS RÁPIDOS */
.home-links {
  padding: 40px 20px;
  text-align: center;
}

.home-links a {
  display: block;
  margin: 12px auto;
  max-width: 320px;
  padding: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  color: #d4af37;
}

/* WHATSAPP */
.whatsapp {
  text-align: center;
  padding: 20px;
}

.btn-whats {
  display: inline-block;
  padding: 14px 28px;
  background: #25D366;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(37,211,102,0.25);
  transition: 0.3s ease;
}

.btn-whats:hover {
  transform: scale(1.05);
}

/* REDES */
.redes {
  text-align: center;
  padding: 30px 20px;
}

.redes a {
  margin: 0 10px;
  color: #d4af37;
}

.redes a:hover {
  color: #ffffff;
}

/* SEÇÕES */
section {
  padding: 60px 20px;
  text-align: center;
}

/* TÍTULOS */
h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: #000;
  padding: 25px;
  text-align: center;
  color: #777;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 25px;
    padding: 40px 15px;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-img {
    max-width: 260px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

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