:root {
  --black: #070707;
  --black-soft: #111111;
  --gold: #D4AF37;
  --gold-soft: #f0d878;
  --white: #ffffff;
  --gray: #a8a8a8;
  --line: rgba(212, 175, 55, 0.25);
  --shadow: 0 18px 45px rgba(0,0,0,0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 78px;
  height: auto;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
}

.nav {
  position: absolute;
  top: 72px;
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  padding: 18px;
  background: rgba(17,17,17,0.97);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.nav.active {
  display: flex;
}

.nav a {
  padding: 14px 8px;
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background:
    radial-gradient(circle at 70% 30%, rgba(212,175,55,0.24), transparent 32%),
    linear-gradient(145deg, rgba(0,0,0,0.55), rgba(0,0,0,0.95)),
    url('https://images.unsplash.com/photo-1595425964071-2c1ec92ed1f0?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 0 54px;
}

.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0 0 14px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 14vw, 5.6rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 9vw, 4rem);
}

h3 {
  margin: 0 0 8px;
}

.hero-text,
.section-text {
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 680px;
}

.hero-text {
  font-size: 1.08rem;
  margin: 22px 0 28px;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: rgba(0,0,0,0.28);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.trust-bar div {
  padding: 18px 8px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.15);
}

.trust-bar strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1rem;
}

.trust-bar span {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  color: var(--gray);
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: var(--black-soft);
}

.benefits-grid,
.locations-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.benefits-grid article,
.location-card,
.product-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}

.benefits-grid p,
.location-card p,
.product-card p {
  color: var(--gray);
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-image {
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(212,175,55,0.38), transparent 32%),
    linear-gradient(145deg, #181818, #050505);
}

.bottle {
  width: 56px;
  height: 105px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.95), rgba(255,255,255,0.22), rgba(212,175,55,0.62));
  box-shadow: 0 18px 35px rgba(212,175,55,0.12);
  position: relative;
}

.bottle:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 15px;
  background: #d8c47a;
  border-radius: 6px 6px 0 0;
  top: -15px;
  left: 14px;
}

.product-info {
  padding: 14px;
}

.product-info h3 {
  font-size: 0.94rem;
}

.product-info p {
  font-size: 0.78rem;
  margin: 0;
}

.product-info a {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.promo {
  padding: 42px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,0.22), transparent 42%),
    #090909;
}

.promo-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 32px 22px;
  text-align: center;
  background: rgba(255,255,255,0.04);
}

.promo-card h2 {
  font-size: clamp(1.8rem, 8vw, 3.4rem);
  margin-bottom: 24px;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.card-actions a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-weight: 800;
}

.contact {
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.95)),
    url('https://images.unsplash.com/photo-1585386959984-a4155223168f?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.contact .section-text {
  margin-left: auto;
  margin-right: auto;
}

.socials {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  color: var(--gray);
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 16px;
  bottom: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #101010;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  font-weight: 900;
  box-shadow: 0 18px 32px rgba(0,0,0,0.35);
}

footer {
  padding: 28px 16px 86px;
  text-align: center;
  color: var(--gray);
  background: #050505;
  border-top: 1px solid var(--line);
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-header {
    padding: 0 38px;
  }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav a {
    border: 0;
    padding: 10px 14px;
  }

  .hero-actions {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid,
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand img {
    width: 96px;
  }
}
.rewards-section {
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 42%),
    #080808;
}

.rewards-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  text-align: center;
}

.rewards-card .section-text {
  margin-left: auto;
  margin-right: auto;
}

.rewards-card .btn {
  margin-top: 26px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
