/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Backgrounds */
  --bg:      #0d100c;
  --bg-2:    #141812;
  --bg-card: #1b201a;
  --bg-zona: #111410;

  /* Text */
  --cream:   #f0e8cc;
  --cream-2: #d2c9a8;
  --cream-3: #8a8270;

  /* Accents */
  --amber:   #d4721a;
  --amber-2: #b85e12;
  --gold:    #c49a5b;
  --wa:      #25d366;
  --wa-dark: #128c47;

  /* Lines */
  --line:    rgba(240, 232, 204, 0.10);
  --line-2:  rgba(240, 232, 204, 0.06);

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --nav-h: 72px;   /* mobile */

  /* Easings */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 720px) {
  :root { --nav-h: 76px; } /* desktop */
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
/* Bloquear scroll de fondo cuando el menú mobile está abierto */
html.menu-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; }
ul { list-style: none; padding: 0; }

::selection { background: var(--amber); color: var(--bg); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  background: var(--cream);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  white-space: nowrap;
  padding: .6rem 1.2rem;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 1rem;
  color: var(--cream-3);
  max-width: 52ch;
  line-height: 1.7;
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* =============================================================
   4. Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Defensive: split+reveal cannot conflict */
.reveal[data-split] { opacity: 1; transform: none; }

/* Staggered siblings */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }

/* =============================================================
   5. Grain overlay
   ============================================================= */
.grain {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
  opacity: 0.032;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 192px 192px;
}

/* =============================================================
   6. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--amber-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 114, 26, 0.35);
}

.btn-amber {
  background: var(--amber);
  color: #fff;
}
.btn-amber:hover {
  background: var(--amber-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 114, 26, 0.35);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .25s var(--ease-out);
  background: var(--wa);
  color: #fff;
}
.btn-wa-hero:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}

.btn-outline {
  border: 1.5px solid rgba(240, 232, 204, 0.35);
  color: var(--cream);
  padding: .85rem 1.75rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(240, 232, 204, 0.06);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 400;
  color: var(--cream-2);
  transition: all .25s var(--ease-out);
}
.btn-ghost:hover { color: var(--cream); }

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.25rem;
  border-radius: 5px;
  font-size: .85rem;
  font-weight: 500;
  background: rgba(212, 114, 26, 0.15);
  color: var(--amber);
  border: 1px solid rgba(212, 114, 26, 0.3);
  transition: all .25s var(--ease-out);
}
.btn-product:hover {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  transform: translateY(-1px);
}

/* =============================================================
   7. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #0d100c;
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-solid {
  background: #0d100c;
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;          /* mobile: 8–10 px → 9 px */
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: 60px;       /* mobile +30 % (era 46 px) */
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(212, 114, 26, 0.44));
  flex-shrink: 0;
  transition: filter .3s var(--ease-out);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 12px rgba(212, 114, 26, 0.70));
}
.nav-logo-text {
  display: none; /* reemplazado por logos imagen en todos los breakpoints */
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.01em;
}
.nav-logo-text em {
  font-style: italic;
  color: var(--gold);
}
/* Logo desktop navbar — oculto en mobile, visible ≥720px */
.nav-logo-desktop {
  display: none;
  width: 210px;
  height: auto;
  flex-shrink: 0;
}
/* Logo mobile navbar — visible <720px, oculto en desktop */
.nav-logo-mobile {
  display: block;
  width: 95px;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 720px) {
  .nav-logo           { gap: 12px; }
  .nav-logo-img       { width: 82px; height: 82px; }
  .nav-logo-text      { display: none; }
  .nav-logo-desktop   { display: block; }
  .nav-logo-mobile    { display: none; }
}

.nav-links {
  display: none;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--cream-2);
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: var(--cream-2);
  transition: color .2s;
}
.nav-phone:hover { color: var(--cream); }

/* Burger */
.nav-burger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: #0d100c;
  display: flex;
  flex-direction: column;
  padding: 1.25rem var(--gutter) 2.5rem;
  gap: 1.75rem;
  transform: translateX(100%);
  transition: transform .38s var(--ease-out);
  z-index: 99;
  overflow-y: auto;
}
.nav-mobile.is-open {
  transform: translateX(0);
}
.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-link {
  font-family: var(--sans);
  font-size: .9375rem;      /* 15px */
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream-2);
  border-bottom: 1px solid var(--line);
  padding: .9rem 0;
  line-height: 1;
  transition: color .2s;
  display: block;
}
.nav-mobile-link:first-child { border-top: 1px solid var(--line); }
.nav-mobile-link:hover { color: var(--cream); }
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.nav-mobile-actions .btn {
  justify-content: center;
}

/* Ocultar CTAs del menú mobile en móvil — el botón flotante WA ya cumple esa función */
@media (max-width: 719px) {
  .nav-mobile-actions { display: none; }
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none; }
  .nav-links { margin-left: auto; }
  .nav-actions { margin-left: 1.5rem; }
}

/* =============================================================
   8. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}
@media (max-width: 719px) {
  .hero { padding-bottom: 8rem; } /* 128px vs 64px base → badge sube ~64px en mobile */
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 16, 12, 0.45) 0%,
    rgba(13, 16, 12, 0.65) 40%,
    rgba(13, 16, 12, 0.92) 100%
  );
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(212, 114, 26, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 80% 60%, rgba(180, 80, 15, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 45% 80%, rgba(196, 154, 91, 0.12) 0%, transparent 65%);
  filter: blur(50px) saturate(130%);
  animation: meshPulse 18s ease-in-out infinite alternate;
}

@keyframes meshPulse {
  0%   { transform: scale(1); opacity: .9; }
  50%  { transform: scale(1.08) rotate(2deg); opacity: 1; }
  100% { transform: scale(1.04) rotate(-1deg); opacity: .95; }
}

.hero-content {
  position: relative;
  z-index: 2;
  /* padding-top desacoplado de --nav-h: el hero usa justify-content:flex-end
     y el contenido siempre queda en la parte inferior del viewport.
     Un valor fijo pequeño evita que en pantallas muy cortas el eyebrow
     quede bajo el nav, sin depender de la altura de la barra. */
  padding-top: 1.5rem;
  max-width: 820px;
}

/* .hero-logo-new eliminado — logo movido al navbar */

.hero-eyebrow {
  font-size: clamp(.85rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .35s var(--ease-out) forwards;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
  background: rgba(13, 16, 12, 0.35);
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 50px;
  border: 1px solid rgba(240, 232, 204, 0.18);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s .5s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--cream-2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 44ch;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .85s .7s var(--ease-out) forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s .9s var(--ease-out) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  animation: fadeUp .8s 1.3s var(--ease-out) forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--amber));
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  50% { transform: scaleY(.6); opacity: 1; }
}
.hero-scroll-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-3);
  writing-mode: vertical-rl;
}

/* =============================================================
   9. CONCEPTO
   ============================================================= */
.concepto {
  padding-block: clamp(5rem, 12vw, 9rem);
  border-top: 1px solid var(--line);
}

.concepto-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.concepto-text { display: flex; flex-direction: column; align-items: flex-start; }

.concepto-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.concepto-title em { font-style: italic; color: var(--gold); }

.concepto-body {
  color: var(--cream-2);
  font-size: 1.025rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 50ch;
}

.concepto-text .btn-outline { margin-top: 1.5rem; }

.concepto-visual {
  position: relative;
  flex-shrink: 0;
}

.concepto-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.concepto-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-soft);
}
.concepto-img-wrap:hover img { transform: scale(1.04); }

.concepto-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--amber);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
}
.concepto-badge-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.concepto-badge-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  opacity: .9;
}

@media (min-width: 960px) {
  .concepto-inner { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   10. STATS
   ============================================================= */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cream-3);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
  display: none;
}

@media (min-width: 720px) { .stat-divider { display: block; } }

/* =============================================================
   11. PRODUCTOS
   ============================================================= */
.productos {
  padding-block: clamp(5rem, 12vw, 9rem);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp .7s var(--ease-out) forwards;
}

.product-card:nth-child(1) { animation-delay: .1s; }
.product-card:nth-child(2) { animation-delay: .2s; }
.product-card:nth-child(3) { animation-delay: .3s; }

.product-card.in-view { opacity: 1; transform: none; }

.product-card:hover {
  border-color: rgba(212, 114, 26, 0.35);
  box-shadow: 0 20px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(212,114,26,.15);
}

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: var(--amber);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 3px;
}
.product-badge--alt { background: var(--gold); }

.product-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-soft);
  filter: saturate(1.1) contrast(1.05);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.product-meta { display: flex; align-items: center; gap: .5rem; }

.product-tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-3);
  border: 1px solid var(--line);
  padding: .2rem .6rem;
  border-radius: 2px;
}

.product-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
}

.product-desc {
  font-size: .95rem;
  color: var(--cream-2);
  line-height: 1.7;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.product-price {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.01em;
  text-shadow: 0 0 20px rgba(212, 114, 26, 0.25);
}

.products-note {
  text-align: center;
  color: var(--cream-3);
  font-size: .9rem;
}
.products-note a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.products-note a:hover { color: var(--gold); }

/* Extras / También llevamos */
.extras-section {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.25rem, 4vw, 2.75rem);
  background: var(--bg-card);
  border: 1px solid rgba(240, 232, 204, 0.12);
  border-radius: 10px;
  overflow: hidden;                     /* previene overflow horizontal */
  width: 100%;
  box-sizing: border-box;
}

.extras-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(240, 232, 204, 0.12);
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr;          /* mobile: 1 columna */
  gap: .75rem;
  margin-bottom: 1.75rem;
  width: 100%;
}
@media (min-width: 768px) { .extras-grid { grid-template-columns: repeat(3, 1fr); gap: .85rem 1.25rem; } }

.extra-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  transition: border-color .2s, background .2s;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;               /* limpio cuando es <a> */
  cursor: pointer;
}
.extra-item:hover {
  border-color: rgba(212, 114, 26, 0.35);
  background: rgba(212, 114, 26, 0.05);
}

.extra-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--amber);
  opacity: .9;
}
.extra-name {
  flex: 1;
  font-size: .9rem;
  color: var(--cream);
  font-weight: 500;
  min-width: 0;                         /* permite que el texto haga wrap */
  word-break: break-word;
}
.extra-name small {
  display: block;
  font-size: .75rem;
  color: var(--cream-2);
  font-weight: 400;
}
.extra-price {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.8vw, 1.5rem);  /* min 22px mobile, 24px desktop */
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 1rem;
  letter-spacing: -0.01em;
}

.extras-note {
  font-size: .875rem;
  color: var(--cream-3);
  text-align: center;
}
.extras-note strong { color: var(--cream-2); }
.extras-note a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: .35rem;
}
.extras-note a:hover { color: var(--gold); }

/* =============================================================
   12. ZONA
   ============================================================= */
.zona {
  background: var(--bg-zona);
  border-top: 1px solid var(--line);
  padding-block: clamp(5rem, 12vw, 9rem);
}

.zona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 540px) { .zona-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .zona-grid { grid-template-columns: repeat(4, 1fr); } }

.zona-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color .3s;
}
.zona-card:hover { border-color: rgba(212, 114, 26, 0.3); }

.zona-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.zona-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 114, 26, 0.12);
  color: var(--amber);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.zona-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--cream);
}

.zona-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.zona-list li {
  font-size: .875rem;
  color: var(--cream-3);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.zona-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  opacity: .6;
}

.zona-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.zona-cta p {
  color: var(--cream-2);
  font-size: 1.05rem;
}

/* =============================================================
   13. TESTIMONIOS
   ============================================================= */
.testimonios {
  padding-block: clamp(4rem, 10vw, 7rem);
  border-top: 1px solid var(--line);
}

/* Bloque reseñas Google */
.resenas-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.resenas-stars {
  display: flex;
  gap: .35rem;
  color: var(--amber);
}

.btn-resenas {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  padding: .85rem 2rem;
}

/* =============================================================
   14. NEGOCIOS
   ============================================================= */
.negocios {
  padding-block: clamp(4rem, 10vw, 7rem);
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.negocios-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.75rem, 5vw, 3.5rem);
  background: var(--bg-card);
  border: 1px solid rgba(212, 114, 26, 0.22);
  border-radius: 12px;
}

.negocios-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cream);
}
.negocios-title em {
  font-style: italic;
  color: var(--gold);
}

.negocios-body {
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  color: var(--cream-2);
  line-height: 1.75;
  max-width: 520px;
}

.negocios-rubros {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: center;
  padding: .5rem 0;
}

.negocios-rubro {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--cream-3);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.negocios-rubro svg { color: var(--amber); opacity: .75; flex-shrink: 0; }

.negocios-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  padding: .9rem 2.25rem;
  margin-top: .5rem;
}

/* =============================================================
   15. CONTACTO
   ============================================================= */
.contacto {
  padding-block: clamp(5rem, 12vw, 9rem);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.contacto-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* Contacto info column */
.contacto-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contacto-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contacto-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: all .2s;
}
.contacto-link:last-of-type { border-bottom: none; }
.contacto-link:hover { padding-left: .25rem; }
.contacto-link--wa .contacto-link-icon { background: rgba(37, 211, 102, 0.12); color: var(--wa); }
.contacto-link--wa:hover .contacto-link-icon { background: rgba(37, 211, 102, 0.22); }

.contacto-link-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 114, 26, 0.10);
  color: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .2s;
}
.contacto-link:hover .contacto-link-icon { background: rgba(212, 114, 26, 0.20); }

.contacto-link-body { display: flex; flex-direction: column; gap: .1rem; }
.contacto-link-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--cream-3); }
.contacto-link-value { font-size: .9rem; font-weight: 500; color: var(--cream); }

/* Redes sociales en contacto */
.contacto-socials {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contacto-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: .8rem;
  color: var(--cream-2);
  transition: all .2s;
}
.contacto-social-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(212, 114, 26, 0.08);
}

.contacto-horario {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.contacto-horario h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber);
  margin-bottom: .6rem;
}
.contacto-horario p { font-size: .875rem; color: var(--cream-3); line-height: 1.8; }
.contacto-horario-note {
  font-size: .8rem;
  color: var(--wa);
  margin-top: .35rem;
}

.contacto-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.contacto-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85);
}

/* =============================================================
   14b. FORMAS DE PAGO
   ============================================================= */
.pagos {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(4rem, 10vw, 7rem);
}

.pagos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 680px;
}
@media (min-width: 540px) { .pagos-grid { grid-template-columns: repeat(2, 1fr); } }

.pago-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.pago-card:hover {
  border-color: rgba(212, 114, 26, 0.4);
  transform: translateY(-3px);
}

.pago-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 114, 26, 0.12);
  color: var(--amber);
  border-radius: 10px;
  flex-shrink: 0;
}

.pago-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
}

.pago-desc {
  font-size: .9rem;
  color: var(--cream-2);
  line-height: 1.65;
}

/* =============================================================
   15. FOOTER
   ============================================================= */
.footer {
  background: #0a0c09;
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand p {
  font-size: .875rem;
  color: var(--cream-3);
  margin-top: .35rem;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: .5rem;
}
.footer-logo-img {
  width: 130px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212, 114, 26, 0.3));
  opacity: .9;
  transition: opacity .2s, filter .2s;
}
.footer-logo-link:hover .footer-logo-img {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(212, 114, 26, 0.5));
}
.footer-location {
  font-size: .78rem;
  color: var(--cream-3);
  opacity: .6;
  margin-top: .25rem;
}
/* Legacy text logo fallback */
.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
}
.footer-logo em { font-style: italic; color: var(--gold); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.footer-nav a {
  font-size: .875rem;
  color: var(--cream-3);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-2);
}
.footer-copy, .footer-credits {
  font-size: .78rem;
  color: var(--cream-3);
  opacity: .65;
}
.footer-credits a { text-decoration: underline; text-underline-offset: 2px; }
.footer-credits a:hover { opacity: 1; color: var(--cream); }

@media (min-width: 720px) {
  .footer-inner { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .footer-nav { margin-left: auto; }
}

/* =============================================================
   16. Floating WhatsApp button
   ============================================================= */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--wa);
  color: #fff;
  padding: .85rem 1.25rem .85rem 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,.3);
  font-size: .875rem;
  font-weight: 600;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s;
  animation: waEntrance .6s 1.5s var(--ease-bounce) both;
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,.35);
}
.wa-float:active { transform: scale(.97); }

.wa-float-label { white-space: nowrap; }

@keyframes waEntrance {
  from { opacity: 0; transform: translateY(20px) scale(.85); }
  to   { opacity: 1; transform: none; }
}

/* Collapse to icon-only on small screens */
@media (max-width: 539px) {
  .wa-float { padding: 1rem; border-radius: 50%; }
  .wa-float-label { display: none; }
}
/* Mobile: reducir tamaño y acercar a esquina inferior derecha */
@media (max-width: 719px) {
  .wa-float {
    bottom: 1rem;   /* 16px vs 28px — 12px más bajo */
    right: 1rem;    /* 16px vs 28px — 12px más a la esquina */
    padding: .8rem; /* vs 1rem — ~12% más pequeño */
  }
}

/* =============================================================
   17. Reduced-motion (ONLY intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-scroll-line { animation: none; }
  .meshPulse { animation: none; }
}
