:root {
  --bg: #121212;
  --bg-soft: #181818;
  --gold: #c9a962;
  --text-soft: rgba(255, 255, 255, 0.78);
}

/* RESET */
html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

body {
  color: #fff;
}

/* HEADER */
.site-header {
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.14);
}

.site-logo {
  height: 60px;
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: white;
}

.mobile-menu {
  display: none;
  padding: 16px;
  background: #121212;
}

.mobile-menu.active {
  display: grid;
  gap: 10px;
}

.mobile-link {
  padding: 10px;
  color: white;
}

.mobile-whats {
  margin-top: 10px;
  padding: 12px;
  text-align: center;
  background: linear-gradient(90deg, #c9a962, #b8984f);
  border-radius: 10px;
  color: black;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(to bottom, #141414 0%, #121212 100%);
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,18,18,0.02),
    rgba(18,18,18,0.08),
    rgba(18,18,18,0.35),
    #121212
  );
}

.hero-side-fade {
  display: none;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  height: 220px;
  width: 100%;
  background: linear-gradient(to bottom, transparent, #121212);
}

/* TEXTO */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 420px;
  padding-bottom: 80px;
}

.hero-text-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0)
  );
  padding: 20px 10px;
  border-radius: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title span {
  display: block;
  color: var(--gold);
  font-weight: 500;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-soft);
  line-height: 1.8;
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BOTÕES */
.btn-main {
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, #c9a962, #b8984f);
  color: black;
  font-weight: 600;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* CARDS */
.card-hover {
  background: rgba(255,255,255,0.02);
  transition: 0.3s;
}

.card-hover:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

/* ========================= */
/* GALERIA (CORRIGIDA) */
/* ========================= */

#estrutura .grid {
  align-items: start;
}

.gallery-img {
  width: 100%;
  height: auto; /* 🔥 volta proporção original */
  border-radius: 16px;
  transition: 0.3s;
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 768px) {

  .site-logo {
    height: 50px;
  }

  .hero-bg-wrap {
    height: 320px;
  }

  .hero-bg-image {
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 210px;
    object-fit: contain;
  }

  .hero-content {
    padding-top: 270px;
    padding-bottom: 56px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .hero-actions a {
    width: 100%;
    max-width: 320px;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 480px) {

  .site-logo {
    height: 42px;
  }

  .hero-bg-wrap {
    height: 260px;
  }

  .hero-bg-image {
    top: 74px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 170px;
    object-fit: contain;
  }

  .hero-content {
    padding-top: 215px;
    padding-bottom: 44px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions a {
    width: 100%;
  }

  .btn-main,
  .btn-secondary {
    padding: 13px;
    font-size: 0.94rem;
  }
}