/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --card-bg:  #161616;
  --border:   #272727;
  --text:     #e8e8e8;
  --muted:    #888;
  --gold:     #c9a84c;
  --gold-lt:  #e8c87a;
  --white:    #ffffff;
  --red:      #d4202a;
  --green:    #25d366;

  --radius:   16px;
  --radius-sm: 10px;
  --shadow:   0 8px 32px rgba(0,0,0,.45);
  --font:     'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-title  { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -.02em; }
.section-sub    { color: var(--muted); margin-top: 8px; font-size: 1.05rem; }

/* ─── Badge ─── */
.badge {
  display: inline-block;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-lt);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.badge--light {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: var(--text);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }

.btn--whatsapp {
  background: var(--green);
  color: #fff;
}
.btn--whatsapp:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn--sm  { font-size: .82rem; padding: 9px 18px; }
.btn--lg  { font-size: 1rem; padding: 15px 32px; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.02em;
}
.logo-icon { font-size: 1.4rem; }
.dot { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--text); }

@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(201,168,76,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212,32,42,.06) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 60%, var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num  { font-size: 1.4rem; font-weight: 700; color: var(--white); }
.stat__label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.stat__sep { width: 1px; height: 36px; background: var(--border); }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─── PRODUCTOS ─── */
.productos {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.productos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* Card */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 20px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.15);
}

.card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--gold);
  color: var(--black);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.card__badge--new { background: var(--red); color: #fff; }

.card__img-wrap {
  background: #1e1e1e;
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}
.card:hover .card__img { transform: scale(1.05); }

.card__body { padding: 20px; }
.card__line { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 600; }
.card__name { font-size: 1.15rem; font-weight: 700; margin: 4px 0 8px; color: var(--white); }
.card__desc { font-size: .85rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }

.card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag {
  font-size: .7rem;
  font-weight: 600;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 99px;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.card__price { display: flex; flex-direction: column; }
.price__from { font-size: .68rem; color: var(--muted); }
.price__val  { font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.price__cur  { font-size: .7rem; color: var(--muted); }

.productos__cta {
  text-align: center;
  margin-top: 52px;
}

/* ─── BENEFICIOS ─── */
.beneficios {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border);
}
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.benef-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .2s;
}
.benef-card:hover { border-color: rgba(201,168,76,.3); }
.benef-icon { font-size: 2rem; margin-bottom: 16px; }
.benef-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.benef-card p  { font-size: .87rem; color: var(--muted); line-height: 1.6; }

/* ─── CONTACTO ─── */
.contacto {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.contacto__card {
  background: linear-gradient(135deg, #1a1508, #0f0f0f);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 24px;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.contacto__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 12px 0 12px;
  max-width: 420px;
  line-height: 1.2;
}
.contacto__text p { color: var(--muted); max-width: 380px; font-size: .95rem; }
.contacto__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
}
.footer__name {}
.footer__disclaimer { font-size: .78rem; color: var(--muted); max-width: 560px; line-height: 1.65; }
.footer__copy { font-size: .75rem; color: #444; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .contacto__card { padding: 40px 28px; flex-direction: column; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .hero__stats { gap: 16px; }
  .stat__num { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .productos__grid { grid-template-columns: 1fr; }
  .beneficios__grid { grid-template-columns: 1fr; }
}
