* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: radial-gradient(circle at center, #1a1a1a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
}

.logo {
  width: 230px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background-color: #d4af37;
  color: #000;
}

.btn.primary:hover {
  background-color: #b8962e;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background-color: #fff;
  color: #000;
}

/* SEÇÕES */
.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section.dark {
  background-color: #111;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.1rem;
  color: #ccc;
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  width: 280px;
}

/* INSTAGRAM VITRINE */
.instagram-section {
  background-color: #000;
}

.instagram-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Força o embed ocupar largura maior */
.instagram-wrapper iframe,
.instagram-wrapper blockquote {
  width: 100% !important;
  max-width: 1100px !important;
  min-width: 320px;
}

.map-link {
  color: #d4af37;
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}
