/* ============================================
   SABORES EXPRESS — Landing
   Paleta: marrón cálido, dorado, crema
   ============================================ */

:root{
  --bg: #1a1310;
  --bg-2: #221813;
  --bg-3: #2d2118;
  --cream: #f5ead4;
  --cream-2: #ede0c5;
  --gold: #d4a256;
  --gold-2: #e8c074;
  --gold-3: #b8853e;
  --red: #a83524;
  --red-2: #c14534;
  --white: #ffffff;
  --muted: rgba(245, 234, 212, 0.65);
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.6;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; border:0; background:none; color: inherit; }

.container{
  width: min(1240px, 92%);
  margin: 0 auto;
}

/* === Cursor glow === */
.cursor-glow{
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,162,86,0.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
  mix-blend-mode: screen;
}
@media (max-width: 900px){ .cursor-glow{ display:none; } }

/* === Top marquee bar === */
.top-bar{
  background: var(--gold);
  color: #1a1310;
  overflow: hidden;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  position: relative;
  z-index: 50;
}
.marquee{ overflow: hidden; padding: 8px 0; }
.marquee-track{
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track span{ display: inline-block; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* === Navigation === */
.nav{
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, 92%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 16px;
  background: rgba(26, 19, 16, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(245, 234, 212, 0.08);
  border-radius: 100px;
  z-index: 100;
  transition: top .4s var(--ease), transform .4s var(--ease);
}
.nav.scrolled{
  top: 16px;
  background: rgba(26, 19, 16, 0.92);
}
.nav-brand img{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform .4s var(--ease);
}
.nav-brand:hover img{ transform: rotate(18deg) scale(1.06); }

.nav-menu{
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a{
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, background .2s;
}
.nav-menu a:hover, .nav-menu a.active{
  background: rgba(212, 162, 86, 0.12);
  color: var(--gold-2);
}
.nav-dot{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(.5);
  transition: opacity .3s, transform .3s;
}
.nav-menu a.active .nav-dot{ opacity: 1; transform: scale(1); }

.nav-cta{
  background: var(--gold);
  color: #1a1310;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .3s var(--ease), background .3s;
  box-shadow: 0 8px 20px -8px rgba(212, 162, 86, 0.6);
}
.nav-cta:hover{
  background: var(--gold-2);
  transform: translateY(-2px);
}
.cta-arrow{ transition: transform .3s; }
.nav-cta:hover .cta-arrow{ transform: translateX(4px); }

.nav-burger{ display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-burger span{
  width: 22px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity: 0; }
.nav-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px){
  .nav{ top: 12px; padding: 10px 10px 10px 14px; }
  .nav-menu{
    position: absolute;
    top: calc(100% + 12px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(26, 19, 16, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 234, 212, 0.08);
    border-radius: 24px;
    padding: 12px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .3s, transform .3s;
  }
  .nav-menu.open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu a{ padding: 14px 18px; font-size: 16px; }
  .nav-burger{ display: flex; }
  .nav-cta{ padding: 10px 16px; font-size: 13px; }
}

/* === Scroll progress === */
.scroll-progress{
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: rgba(245, 234, 212, 0.05); z-index: 200;
}
.scroll-progress > div{
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--red-2));
}

/* === HERO === */
.hero{
  position: relative;
  min-height: 100vh;
  padding: 180px 0 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img{
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(1.1);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns{
  from{ transform: scale(1.05); }
  to{ transform: scale(1.18); }
}
.hero-vignette{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(26, 19, 16, 0.6) 60%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(26, 19, 16, 0.4), rgba(26, 19, 16, 0.85));
}
.hero-noise{
  position: absolute; inset: 0; z-index: 1; opacity: .06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content{
  position: relative;
  z-index: 2;
  width: min(1240px, 92%);
  margin: 0 auto;
}
.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  background: rgba(212, 162, 86, 0.08);
  border: 1px solid rgba(212, 162, 86, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: .5; transform: scale(1.3); }
}

.hero-title{
  font-family: 'Bowlby One', serif;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero-title .line{ display: block; overflow: hidden; }
.hero-title .accent{ color: var(--gold); }
.hero-title em{
  font-style: italic;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--gold-2);
  font-size: 0.95em;
  letter-spacing: -0.01em;
  text-transform: none;
}
.hero-sub{
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 560px;
  color: var(--cream);
  opacity: .85;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-sub b{ color: var(--gold-2); font-weight: 600; }

.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--gold);
  color: #1a1310;
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 12px 30px -10px rgba(212, 162, 86, 0.5);
  position: relative;
  overflow: hidden;
}
.btn-primary::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}
.btn-primary > *{ position: relative; z-index: 1; }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(232, 192, 116, 0.6); }
.btn-primary:hover::before{ opacity: 1; }
.btn-primary svg{ transition: transform .3s; }
.btn-primary:hover svg{ transform: translateX(5px); }
.btn-primary.big{ padding: 22px 38px; font-size: 17px; }

.btn-ghost{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid rgba(245, 234, 212, 0.25);
  border-radius: 100px;
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
  transition: background .3s, border-color .3s;
}
.btn-ghost:hover{
  background: rgba(245, 234, 212, 0.08);
  border-color: rgba(245, 234, 212, 0.4);
}
.play-circle{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}
.play-circle::after{
  content: "";
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  border-left: 8px solid #1a1310;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.hero-stats{
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 234, 212, 0.12);
  max-width: 600px;
}
.hero-stats > div{
  display: flex;
  flex-direction: column;
}
.hero-stats strong{
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.hero-stats span{
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* Steam animation */
.steam{
  position: absolute;
  bottom: 80px; right: 8%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  gap: 12px;
}
.steam span{
  width: 8px; height: 80px;
  background: linear-gradient(to top, rgba(245, 234, 212, 0.5), transparent);
  border-radius: 100px;
  filter: blur(6px);
  animation: steam 4s infinite ease-in-out;
}
.steam span:nth-child(2){ animation-delay: 1s; height: 100px; }
.steam span:nth-child(3){ animation-delay: 2s; height: 70px; }
@keyframes steam{
  0%, 100%{ transform: translateY(0) scaleX(1); opacity: 0; }
  50%{ transform: translateY(-30px) scaleX(1.4); opacity: 1; }
}

/* Scroll cue */
.scroll-cue{
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.line-cue{
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lineDown 2s infinite;
}
@keyframes lineDown{
  0%{ transform: scaleY(0); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
  50.01%{ transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* Floating badge */
.floating-badge{
  position: absolute;
  top: 25%; right: 5%;
  z-index: 2;
  width: 160px; height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-rotate{
  position: absolute;
  inset: 0;
  animation: rotate 18s linear infinite;
}
@keyframes rotate{ to{ transform: rotate(360deg); } }
.badge-logo{
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(212, 162, 86, 0.4);
}
@media (max-width: 900px){ .floating-badge{ display: none; } .steam{ right: 4%; } }

/* === Wave divider === */
.wave-divider{
  position: relative;
  margin-top: -100px;
  z-index: 5;
  pointer-events: none;
  line-height: 0;
}
.wave-divider svg{ width: 100%; height: 110px; display: block; }

/* === HISTORIA === */
.historia{
  background: var(--bg);
  padding: 80px 0 120px;
  position: relative;
}
.historia-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px){ .historia-grid{ grid-template-columns: 1fr; gap: 60px; } }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}
.line-sm{
  width: 32px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow-light{ color: var(--gold-2); }

.section-title{
  font-family: 'Bowlby One', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.section-title.light{ color: var(--cream); }
.section-title.small{ font-size: clamp(28px, 3vw, 42px); }
.section-title.xl{ font-size: clamp(40px, 6vw, 80px); }
.section-title .highlight{
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.section-title .highlight::after{
  content: "";
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  height: 8px;
  background: rgba(168, 53, 36, 0.4);
  z-index: -1;
  transform: skewX(-8deg);
}

.lead{
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--cream);
}
.lead-light{ font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; margin-bottom: 28px; color: var(--cream); opacity: .85; }
.historia-text p{ margin-bottom: 16px; opacity: .8; }
.historia-text b{ color: var(--gold-2); font-weight: 600; }

.historia-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.historia-tags span{
  padding: 8px 16px;
  background: rgba(212, 162, 86, 0.1);
  border: 1px solid rgba(212, 162, 86, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-2);
}

/* Collage */
.historia-collage{
  position: relative;
  height: 600px;
  perspective: 1200px;
}
@media (max-width: 980px){ .historia-collage{ height: 500px; } }
.collage-img{
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  transition: transform .5s var(--ease);
}
.collage-img img{ width: 100%; height: 100%; object-fit: cover; }
.collage-img.c1{
  width: 60%; height: 70%;
  top: 0; left: 0;
  border-radius: 50% 50% 50% 0 / 35% 35% 35% 0;
  z-index: 2;
  transform: rotate(-3deg);
}
.collage-img.c2{
  width: 55%; height: 50%;
  bottom: 5%; right: 0;
  border-radius: 40% 40% 0 40% / 30% 30% 0 30%;
  z-index: 3;
  transform: rotate(4deg);
}
.collage-img.c3{
  width: 40%; height: 38%;
  top: 5%; right: 5%;
  border-radius: 50%;
  z-index: 1;
  transform: rotate(8deg);
}
.collage-img:hover{ transform: rotate(0deg) scale(1.03); z-index: 10; }
.collage-badge{
  position: absolute;
  bottom: 15%; left: 35%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
}
.collage-badge img{ width: 80%; height: 80%; border-radius: 50%; }
@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

/* === PRODUCTOS === */
.productos{
  background: var(--bg-2);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  border-radius: 60px 60px 0 0;
  margin-top: -40px;
}
.productos-bg-text{
  position: absolute;
  top: 10%; left: -5%;
  font-family: 'Anton', sans-serif;
  font-size: clamp(180px, 28vw, 360px);
  letter-spacing: -0.04em;
  color: rgba(245, 234, 212, 0.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.section-head{
  max-width: 760px;
  margin-bottom: 80px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-lead{
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  opacity: .8;
  color: var(--cream);
}

/* Feature product */
.product-feature{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 980px){ .product-feature{ grid-template-columns: 1fr; gap: 40px; } }
.feature-img{
  position: relative;
  border-radius: 30px 30px 100px 30px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.feature-img img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.feature-img:hover img{ transform: scale(1.08); }
.feature-tag{
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 16px;
  background: var(--gold);
  color: #1a1310;
  font-weight: 700;
  font-size: 13px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.feature-text small{
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.feature-text h3{
  font-family: 'Bowlby One', serif;
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 20px;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1;
}
.feature-text p{
  font-size: 16px;
  line-height: 1.7;
  opacity: .8;
  margin-bottom: 28px;
}
.feature-flavors{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-flavors span{
  padding: 7px 14px;
  background: rgba(245, 234, 212, 0.06);
  border: 1px solid rgba(245, 234, 212, 0.12);
  border-radius: 100px;
  font-size: 13px;
}

/* Product cards grid */
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 100px;
}
@media (max-width: 900px){ .product-grid{ grid-template-columns: 1fr; } }

.product-card{
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  transition: transform .5s var(--ease);
}
.product-card:nth-child(1){ border-radius: 200px 30px 30px 30px; }
.product-card:nth-child(2){ border-radius: 30px 30px 30px 30px; transform: translateY(40px); }
.product-card:nth-child(3){ border-radius: 30px 30px 200px 30px; }
.product-card:hover{ transform: translateY(-8px); }
.product-card:nth-child(2):hover{ transform: translateY(32px); }

.card-img{
  height: 280px;
  overflow: hidden;
}
.card-img img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .card-img img{ transform: scale(1.1); }
.card-body{
  padding: 24px 28px 32px;
}
.card-body h4{
  font-family: 'Bowlby One', serif;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}
.card-body p{ font-size: 15px; opacity: .75; line-height: 1.5; }

/* Flavors strip */
.flavors-strip{
  border: 1px solid rgba(212, 162, 86, 0.2);
  border-radius: 30px;
  padding: 40px;
  background: rgba(212, 162, 86, 0.04);
}
.strip-title{
  font-family: 'Bowlby One', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 28px;
  color: var(--gold-2);
  text-transform: uppercase;
}
.strip-track{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.strip-track::-webkit-scrollbar{ height: 6px; }
.strip-track::-webkit-scrollbar-thumb{ background: var(--gold); border-radius: 100px; }
.flavor{
  flex: 0 0 160px;
  scroll-snap-align: start;
  text-align: center;
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.flavor img{
  width: 160px; height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: border-color .3s, transform .4s var(--ease);
  margin-bottom: 12px;
}
.flavor:hover{ transform: translateY(-6px); }
.flavor:hover img{ border-color: var(--gold); transform: scale(1.04); }
.flavor span{
  display: block;
  font-weight: 600;
  font-size: 14px;
}

/* === Big marquee === */
.big-marquee{
  background: var(--bg-2);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 162, 86, 0.12);
  border-bottom: 1px solid rgba(212, 162, 86, 0.12);
}
.big-marquee-track{
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.big-marquee-track span{
  font-family: 'Bowlby One', serif;
  font-size: clamp(40px, 6vw, 90px);
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.big-marquee-track i{
  font-size: clamp(28px, 4vw, 56px);
  color: var(--gold);
  font-style: normal;
}

/* === NÚMEROS === */
.numeros{
  background: var(--bg);
  padding: 140px 0;
  position: relative;
}
.numbers-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px){ .numbers-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px){ .numbers-grid{ grid-template-columns: 1fr; } }

.number-card{
  padding: 36px 28px;
  background: var(--bg-2);
  border: 1px solid rgba(212, 162, 86, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.number-card::before{
  content: "";
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 200%;
  background: radial-gradient(ellipse at top, rgba(212, 162, 86, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity .5s;
}
.number-card:hover::before{ opacity: 1; }
.number-card:hover{ transform: translateY(-6px); border-color: rgba(212, 162, 86, 0.4); }

.num-shape{
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  font-family: 'Anton', sans-serif;
  color: var(--gold);
}
.num-shape .num{
  font-size: clamp(60px, 8vw, 110px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.num-shape .plus{
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--gold-2);
}
.num-shape .currency{
  font-size: clamp(36px, 4vw, 56px);
  color: var(--gold-2);
}
.num-shape.small .num{ font-size: clamp(48px, 5vw, 72px); }

.number-card h4{
  font-family: 'Bowlby One', serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}
.number-card p{ font-size: 14px; line-height: 1.5; opacity: .7; }
.number-card.big-card{ grid-column: span 2; }
.number-card.big-card.alt{ background: linear-gradient(135deg, var(--gold), var(--gold-3)); border-color: var(--gold); }
.number-card.big-card.alt h4, .number-card.big-card.alt p{ color: #1a1310; }
.number-card.big-card.alt h4{ opacity: 1; }
.number-card.big-card.alt p{ opacity: .85; }
.number-card.big-card.alt .num-shape{ color: #1a1310; }
.number-card.big-card.alt .num-shape .plus{ color: rgba(26, 19, 16, 0.8); }
@media (max-width: 980px){ .number-card.big-card{ grid-column: span 2; } }
@media (max-width: 580px){ .number-card.big-card{ grid-column: span 1; } }

/* === FRANQUICIA === */
.franquicia{
  background: var(--bg-2);
  padding: 140px 0;
  border-radius: 60px 60px 0 0;
  margin-top: -40px;
  position: relative;
}
.franquicia-head{ max-width: 760px; margin-bottom: 80px; }
.benefits{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 120px;
}
@media (max-width: 900px){ .benefits{ grid-template-columns: 1fr; } }
.benefit{
  display: flex;
  gap: 28px;
  padding: 36px;
  background: var(--bg);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.benefit:hover{ transform: translateY(-6px); }
.benefit::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.benefit:hover::before{ transform: translateX(0); }
.benefit-num{
  font-family: 'Bowlby One', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  opacity: .4;
  flex-shrink: 0;
}
.benefit-body h3{
  font-family: 'Bowlby One', serif;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.1;
}
.benefit-body p{ font-size: 15px; line-height: 1.6; opacity: .75; }

/* Proceso */
.proceso{
  background: var(--bg);
  border-radius: 40px;
  padding: 60px 50px;
  border: 1px solid rgba(212, 162, 86, 0.15);
}
.proceso-head{ margin-bottom: 50px; }
.proceso-steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
@media (max-width: 900px){ .proceso-steps{ grid-template-columns: 1fr; gap: 30px; } }
.step{ position: relative; }
.step-circle{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1310;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bowlby One', serif;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px -8px rgba(212, 162, 86, 0.5);
  position: relative;
  z-index: 2;
}
.step-body h4{
  font-family: 'Bowlby One', serif;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}
.step-body p{ font-size: 14px; line-height: 1.6; opacity: .75; }
.step-line{
  position: absolute;
  top: 32px;
  left: 64px;
  right: -30px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 14px);
  opacity: .4;
}
@media (max-width: 900px){ .step-line{ display: none; } }

/* === EXPANSION === */
.expansion{
  background: var(--bg);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.expansion-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px){ .expansion-grid{ grid-template-columns: 1fr; gap: 60px; } }

.countries{
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.countries li{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(245, 234, 212, 0.04);
  border: 1px solid rgba(245, 234, 212, 0.08);
  border-radius: 18px;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.countries li:hover{
  background: rgba(212, 162, 86, 0.1);
  border-color: rgba(212, 162, 86, 0.3);
  transform: translateX(4px);
}
.countries li > span{ font-size: 28px; }
.countries li b{
  display: block;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 2px;
}
.countries li small{ font-size: 12px; opacity: .65; }
@media (max-width: 580px){ .countries{ grid-template-columns: 1fr; } }

/* Map visual */
.expansion-visual{ position: relative; height: 500px; }
.map-circle{
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.map-img{
  width: 80%; aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 0 0 4px var(--bg);
  border: 4px solid var(--gold);
}
.map-img img{ width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(1.1); }
.pulse{
  position: absolute;
  width: 80%; aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 4s infinite;
}
.pulse.p2{ animation-delay: 1.3s; }
.pulse.p3{ animation-delay: 2.6s; }
@keyframes pulse-ring{
  0%{ transform: translate(-50%, -50%) scale(1); opacity: .7; }
  100%{ transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* === QUOTE === */
.quote-section{
  background: var(--bg);
  padding: 100px 0;
  position: relative;
}
.quote{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark{
  font-family: 'Bowlby One', serif;
  font-size: 240px;
  line-height: 0.5;
  color: var(--gold);
  opacity: .15;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
}
.quote blockquote{
  font-family: 'Bowlby One', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: normal;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.quote blockquote span{ color: var(--gold); }
.quote cite{
  font-style: normal;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-2);
  opacity: .8;
}

/* === SUMATE / CTA === */
.sumate{
  position: relative;
  background: var(--bg-2);
  padding: 140px 0;
  overflow: hidden;
  border-radius: 60px 60px 0 0;
  margin-top: -40px;
}
.sumate-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sumate-bg img{
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.25) saturate(1.2);
}
.sumate-bg::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 19, 16, 0.92), rgba(45, 33, 24, 0.85));
}
.sumate-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px){ .sumate-inner{ grid-template-columns: 1fr; } }

.sumate-meta{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.sumate-meta > div{ display: flex; flex-direction: column; }
.sumate-meta b{
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
  line-height: 1;
}
.sumate-meta small{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: .7;
}

/* Form */
.sumate-form{
  background: var(--bg);
  border: 1px solid rgba(212, 162, 86, 0.2);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.form-row{ margin-bottom: 20px; }
.form-row.two{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 580px){ .form-row.two{ grid-template-columns: 1fr; } }
.sumate-form label{ display: block; }
.sumate-form label > span{
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold-2);
}
.sumate-form input,
.sumate-form select{
  width: 100%;
  padding: 16px 18px;
  background: rgba(245, 234, 212, 0.04);
  border: 1px solid rgba(245, 234, 212, 0.12);
  border-radius: 14px;
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .3s, background .3s;
}
.sumate-form input:focus,
.sumate-form select:focus{
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 162, 86, 0.06);
}
.sumate-form input::placeholder{ color: rgba(245, 234, 212, 0.35); }
.sumate-form select option{ background: var(--bg); color: var(--cream); }

.chip-group{ display: flex; gap: 8px; flex-wrap: wrap; }
.chip{
  display: inline-block;
  cursor: pointer;
}
.chip input{ display: none; }
.chip span{
  display: inline-block;
  padding: 12px 22px;
  background: rgba(245, 234, 212, 0.04);
  border: 1px solid rgba(245, 234, 212, 0.12);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
}
.chip input:checked + span{
  background: var(--gold);
  color: #1a1310;
  border-color: var(--gold);
}

.sumate-form button{ width: 100%; justify-content: center; margin-top: 12px; }
.form-note{
  font-size: 12px;
  text-align: center;
  opacity: .55;
  margin-top: 16px;
}
.form-success{
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.sumate-form.sent .form-success{ opacity: 1; pointer-events: auto; }
.ok-circle{
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1310;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: pop .5s var(--ease);
}
@keyframes pop{
  0%{ transform: scale(0); }
  60%{ transform: scale(1.15); }
  100%{ transform: scale(1); }
}
.form-success h4{
  font-family: 'Bowlby One', serif;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

/* === FOOTER === */
.footer{
  background: var(--bg);
  padding: 80px 0 0;
  border-top: 1px solid rgba(245, 234, 212, 0.06);
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
@media (max-width: 780px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand img{
  width: 72px; height: 72px; border-radius: 50%;
  margin-bottom: 18px;
}
.footer-brand p{
  font-size: 14px;
  opacity: .65;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h5{
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col a{
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--cream);
  opacity: .75;
  transition: opacity .3s, transform .3s;
}
.footer-col a:hover{ opacity: 1; transform: translateX(4px); color: var(--gold-2); }
.footer-bottom{
  border-top: 1px solid rgba(245, 234, 212, 0.06);
  padding: 24px 0;
}
.footer-bottom .container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  opacity: .5;
}

/* Peeka credit */
.peeka-credit{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 24px;
  background: linear-gradient(180deg, transparent, rgba(212, 162, 86, 0.06));
  border-top: 1px solid rgba(212, 162, 86, 0.12);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s, letter-spacing .4s var(--ease);
}
.peeka-credit:hover{
  color: var(--gold-2);
  letter-spacing: .2em;
}
.peeka-label{ font-weight: 500; }
.peeka-name{
  font-family: 'Bowlby One', serif;
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--gold);
  text-transform: none;
  position: relative;
}
.peeka-name::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.peeka-credit:hover .peeka-name::after{ transform: scaleX(1); }
.peeka-year{
  font-size: 11px;
  padding: 3px 9px;
  border: 1px solid rgba(212, 162, 86, 0.4);
  border-radius: 100px;
  color: var(--gold-2);
  letter-spacing: .18em;
  transition: border-color .3s, background .3s;
}
.peeka-credit:hover .peeka-year{
  background: rgba(212, 162, 86, 0.15);
  border-color: var(--gold);
}

/* === Reveal animations === */
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

/* === Mobile fine-tuning === */
@media (max-width: 980px){
  .hero{ padding: 140px 0 80px; min-height: auto; }
  .historia, .productos, .numeros, .franquicia, .expansion, .sumate{
    padding: 90px 0;
  }
  .quote-section{ padding: 70px 0; }
  .productos, .franquicia, .sumate{ border-radius: 40px 40px 0 0; }
  .historia-collage{ height: 460px; width: 100%; max-width: 520px; margin-left: auto; margin-right: auto; justify-self: center; }
  .expansion-visual{ height: 380px; }
  .product-card:nth-child(2){ transform: none; }
  .product-card:nth-child(2):hover{ transform: translateY(-8px); }
  .floating-badge{ display: none; }
  .scroll-cue{ display: none; }
  .quote-mark{ font-size: 140px; }
  .proceso{ padding: 40px 28px; }
  .section-head, .franquicia-head{ margin-bottom: 56px; }
  .product-feature{ margin-bottom: 70px; }
  .product-grid{ margin-bottom: 70px; }
  .benefits{ margin-bottom: 80px; }
  .wave-divider{ margin-top: -60px; }
  .wave-divider svg{ height: 70px; }
}

@media (max-width: 640px){
  .container{ width: 92%; }
  .top-bar{ font-size: 11px; }
  .marquee{ padding: 6px 0; }

  .nav{ padding: 8px 8px 8px 12px; top: 8px; }
  .nav-brand img{ width: 40px; height: 40px; }
  .nav-cta{ padding: 9px 14px; font-size: 12px; }
  .nav-cta .cta-arrow{ display: none; }

  .hero{ padding: 120px 0 70px; }
  .hero-eyebrow{ font-size: 11px; padding: 6px 12px; margin-bottom: 20px; }
  .hero-title{ font-size: clamp(40px, 13vw, 64px); margin-bottom: 24px; }
  .hero-sub{ font-size: 15px; margin-bottom: 28px; }
  .hero-actions{ margin-bottom: 44px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost{ width: 100%; justify-content: center; }
  .btn-primary{ padding: 16px 24px; font-size: 15px; }
  .btn-primary.big{ padding: 18px 28px; font-size: 15px; }
  .btn-ghost{ padding: 14px 22px; font-size: 14px; }
  .hero-stats{ gap: 24px 32px; padding-top: 24px; }
  .hero-stats strong{ font-size: 32px; }
  .hero-stats span{ font-size: 11px; }
  .steam{ right: 8%; bottom: 60px; transform: scale(.7); transform-origin: bottom right; }

  .historia{ padding: 70px 0 90px; }
  .historia-grid{ gap: 40px; }
  .historia-collage{ height: 380px; }
  .collage-badge{ width: 80px; height: 80px; bottom: 18%; left: 32%; }

  .productos, .franquicia, .sumate{ padding: 80px 0; }
  .productos-bg-text{ font-size: 140px; top: 5%; }
  .feature-img{ border-radius: 24px 24px 60px 24px; }
  .feature-text h3{ font-size: 36px; }
  .feature-text p{ font-size: 15px; }

  .product-card:nth-child(1){ border-radius: 100px 24px 24px 24px; }
  .product-card:nth-child(3){ border-radius: 24px 24px 100px 24px; }
  .card-img{ height: 220px; }
  .card-body{ padding: 20px 22px 26px; }
  .card-body h4{ font-size: 22px; }

  .flavors-strip{ padding: 28px 20px; border-radius: 24px; }
  .strip-title{ font-size: 22px; margin-bottom: 22px; }
  .flavor{ flex: 0 0 130px; }
  .flavor img{ width: 130px; height: 130px; margin-bottom: 10px; }
  .flavor span{ font-size: 13px; }

  .big-marquee{ padding: 22px 0; }
  .big-marquee-track{ gap: 28px; }

  .numeros{ padding: 80px 0; }
  .number-card{ padding: 28px 24px; }
  .num-shape{ margin-bottom: 18px; }
  .num-shape .num{ font-size: 64px; }
  .num-shape .plus{ font-size: 26px; }
  .num-shape.small .num{ font-size: 44px; }
  .number-card h4{ font-size: 16px; }

  .benefit{ padding: 26px 24px; gap: 20px; }
  .benefit-num{ font-size: 42px; }
  .benefit-body h3{ font-size: 20px; }
  .benefit-body p{ font-size: 14px; }

  .proceso{ padding: 36px 22px; border-radius: 28px; }
  .step-circle{ width: 54px; height: 54px; font-size: 24px; margin-bottom: 18px; }
  .step-body h4{ font-size: 20px; }

  .expansion{ padding: 80px 0; }
  .expansion-visual{ height: 320px; }
  .map-img{ width: 88%; }
  .countries li{ padding: 14px 16px; }
  .countries li > span{ font-size: 24px; }
  .countries li b{ font-size: 15px; }
  .countries li small{ font-size: 11px; }

  .quote-section{ padding: 60px 0; }
  .quote-mark{ font-size: 100px; top: 10px; }
  .quote blockquote{ font-size: 22px; line-height: 1.25; }
  .quote cite{ font-size: 12px; }

  .sumate{ padding: 80px 0; }
  .sumate-inner{ gap: 50px; }
  .sumate-meta{ gap: 16px; margin-top: 30px; }
  .sumate-meta b{ font-size: 24px; }
  .sumate-meta small{ font-size: 10px; }
  .sumate-form{ padding: 26px 22px; border-radius: 24px; }
  .sumate-form input, .sumate-form select{ padding: 14px 16px; font-size: 14px; }
  .chip span{ padding: 10px 18px; font-size: 13px; }
  .form-success{ padding: 24px; }
  .form-success h4{ font-size: 22px; }

  .section-title{ font-size: clamp(32px, 10vw, 48px); margin-bottom: 22px; }
  .section-title.xl{ font-size: clamp(36px, 11vw, 56px); }
  .section-title.small{ font-size: clamp(24px, 7vw, 32px); }
  .lead, .lead-light, .section-lead{ font-size: 16px; }
  .eyebrow{ font-size: 12px; margin-bottom: 18px; }

  .footer{ padding: 60px 0 0; }
  .footer-grid{ padding-bottom: 40px; gap: 28px; }
  .footer-brand img{ width: 60px; height: 60px; }
  .footer-bottom{ padding: 20px 0; }
  .footer-bottom .container{ flex-direction: column; gap: 6px; text-align: center; }

  .peeka-credit{ padding: 18px 20px; font-size: 11px; flex-wrap: wrap; }
  .peeka-name{ font-size: 14px; }
}

@media (max-width: 420px){
  .hero-stats{ gap: 20px 24px; }
  .hero-stats > div{ flex: 1 1 40%; }
  .historia-collage{ height: 320px; }
  .collage-badge{ width: 64px; height: 64px; left: 30%; }
  .feature-flavors span{ font-size: 12px; padding: 6px 11px; }
  .chip-group{ gap: 6px; }
  .chip span{ padding: 9px 14px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
