: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;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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);
  position: relative;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--gold-soft);
}

@media (min-width: 760px) {
  .nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .nav a:hover::after {
    transform: scaleX(1);
  }
}

.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;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212,175,55,0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-outline:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.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);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.benefits-grid article:hover,
.location-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.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;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(212,175,55,0.38), transparent 32%),
    linear-gradient(145deg, #181818, #050505);
}

.product-image img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.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;
  transition: letter-spacing 0.25s ease, color 0.25s ease;
}

.product-info a:hover {
  letter-spacing: 0.03em;
  color: var(--white);
}

.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;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.card-actions a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #101010;
}

.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);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsapp-pulse 3.2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(212,175,55,0.4);
  animation-play-state: paused;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 18px 32px rgba(0,0,0,0.35), 0 0 0 0 rgba(212,175,55,0.35);
  }
  50% {
    box-shadow: 0 18px 32px rgba(0,0,0,0.35), 0 0 0 10px rgba(212,175,55,0);
  }
}

/* Aparición suave al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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;
}

/* ===== LAYW LAUNCH POPUP ===== */

.layw-launch-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.layw-launch-popup.show {
  opacity: 1;
  visibility: visible;
}

.layw-launch-card {
  width: min(460px, 100%);
  position: relative;
  text-align: center;

  padding: 38px 28px;

  border-radius: 26px;

  background:
    radial-gradient(circle at top, rgba(212,175,55,.18), transparent 42%),
    #0b0b0b;

  border: 1px solid rgba(212,175,55,.35);

  box-shadow:
    0 30px 80px rgba(0,0,0,.65);

  color: #fff;
}

.layw-launch-close {
  position: absolute;
  top: 12px;
  right: 15px;

  background: transparent;
  border: 0;

  color: #999;
  font-size: 28px;

  cursor: pointer;
}

.layw-launch-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.layw-launch-eyebrow {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
}

.layw-launch-card h2 {
  margin: 10px 0 15px;

  font-size: clamp(1.7rem, 5vw, 2.3rem);
}

.layw-launch-card p {
  color: #aaa;
  line-height: 1.7;
}

.layw-launch-card strong {
  display: block;

  margin: 22px 0;

  color: #f0d878;

  font-size: 1.15rem;
}

.layw-launch-button {
  width: 100%;

  padding: 15px 20px;

  border: 0;
  border-radius: 14px;

  background: linear-gradient(135deg,#d4af37,#f0d878);

  color: #111;

  font-weight: 900;
  font-size: 1rem;

  cursor: pointer;
}
