/* ================================================================
   EGGBRUNCH.MX — main.css v3.0
   Tipografía: Nunito (900/800/700/600/400)
   Paleta: Blanco · Crema · Ámbar #C9830A · Naranja #D94F1E · Carbón #3D2B1F
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --amber:        #C9830A;
  --amber-light:  #E09B1A;
  --amber-pale:   #FEF3DC;
  --amber-border: #F5E4C0;
  --orange:       #D94F1E;
  --charcoal:     #3D2B1F;
  --charcoal-mid: #4A3F35;
  --charcoal-lt:  #6B5040;
  --text-muted:   #9B7B55;
  --white:        #FFFFFF;
  --cream:        #FAF7F3;
  --cream-2:      #F0EDE8;
  --cream-3:      #EDE6DC;
  --peach:        #FDEBD0;
  --green-wa:     #25D366;

  --font: 'Nunito', system-ui, sans-serif;

  --nav-h:  72px;
  --max-w:  1100px;
  --pad-x:  48px;
  --sec-py: 80px;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 100px;

  --shadow-sm: 0 2px 8px rgba(61,43,31,.06);
  --shadow-md: 0 4px 20px rgba(61,43,31,.09);
  --shadow-lg: 0 8px 40px rgba(61,43,31,.13);

  --ease: cubic-bezier(.4,0,.2,1);
  --t: 0.3s;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography — Nunito scale ─────────────────────────────────── */
h1 { font-family: var(--font); font-size: 48px; font-weight: 900; line-height: 1.1; color: var(--charcoal); }
h2 { font-family: var(--font); font-size: 36px; font-weight: 800; line-height: 1.15; color: var(--charcoal); }
h3 { font-family: var(--font); font-size: 20px; font-weight: 700; line-height: 1.2; color: var(--charcoal); }
h4 { font-family: var(--font); font-size: 16px; font-weight: 700; color: var(--charcoal); }
p  { font-family: var(--font); font-size: 15px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--amber-light); }
.eyebrow--light::before,
.eyebrow--light::after { background: var(--amber-light); }

.subtitle {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal-lt);
  line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-weight: 700; font-size: 14px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg     { padding: 15px 34px; font-size: 15px; }

.btn-amber  { background: var(--amber); color: #fff; box-shadow: 0 4px 16px rgba(201,131,10,.28); }
.btn-amber:hover { background: var(--amber-light); box-shadow: 0 8px 24px rgba(201,131,10,.38); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #e86035; }
.btn-wa     { background: var(--green-wa); color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.22); }
.btn-wa:hover { background: #1fb959; }
.btn-dark   { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #2a1e15; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost-dark  { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost-dark:hover { background: var(--charcoal); color: #fff; }

.icon-wa { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ── NAV ───────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  background: var(--white);
  border-bottom: 2px solid var(--amber);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x); height: 100%;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo img { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: flex-end; gap: 0;
  margin-left: auto; height: 100%;
}
.nav-links a {
  display: flex; align-items: center; height: 100%;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 12px; font-weight: 700;
  color: var(--charcoal-mid);
  letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color var(--t), border-color var(--t);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--amber); border-bottom-color: var(--amber);
}
.nav-cta { margin-left: 1.5rem; flex-shrink: 0; }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto; cursor: pointer;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.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); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 1rem var(--pad-x) 1.5rem;
  border-top: 1px solid var(--cream-2);
  flex-direction: column; gap: 4px;
  z-index: 999; box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 12px 14px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  color: var(--charcoal-mid); border-radius: var(--r-sm);
  transition: background var(--t), color var(--t);
}
.nav-mobile a:hover { background: var(--cream); color: var(--amber); }
.nav-mobile .btn { margin-top: 8px; justify-content: center; }

/* ── HERO BANNER SLIDER ────────────────────────────────────────── */
.hero-banner {
  position: relative; height: 620px;
  overflow: hidden; margin-top: var(--nav-h);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s var(--ease);
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 10s ease;
}
.hero-slide.active .slide-bg { transform: scale(1); }
.slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,11,8,.88) 0%, rgba(14,11,8,.65) 45%, rgba(14,11,8,.20) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.slide-inner { max-width: 580px; }

/* Slide 1 */
.slide-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(201,131,10,.50);
  background: rgba(201,131,10,.12);
  color: var(--amber-light);
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 20px;
}
.slide-h1 {
  font-family: var(--font); font-size: 52px; font-weight: 900;
  color: #fff; line-height: 1.05; margin-bottom: 16px;
}
.slide-h1 em { font-style: italic; color: var(--amber-light); }
.slide-sub {
  font-family: var(--font); font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,.62); margin-bottom: 24px; line-height: 1.7;
}
.slide-price {
  display: inline-block;
  background: rgba(201,131,10,.20); color: var(--amber-light);
  padding: 2px 9px; border-radius: var(--r-sm); font-weight: 700;
}
.slide-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

/* Redes sociales en hero */
.hero-social {
  display: flex; align-items: center; gap: 10px;
}
.hero-social-label {
  font-family: var(--font); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.45); letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-social a {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--t), transform var(--t);
}
.hero-social a:hover { opacity: .85; transform: translateY(-2px); }
.hero-social a svg { width: 16px; height: 16px; fill: #fff; }
.si-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.si-fb { background: #1877F2; }
.si-tt { background: #000; border: 1px solid rgba(255,255,255,.15); }

/* Slide 2 */
.slide-label {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 20px;
}
.slide-h2-promo {
  font-family: var(--font); font-size: 72px; font-weight: 900;
  color: #fff; line-height: 1.0; margin-bottom: 14px;
}
.slide-h2-promo span { color: var(--amber-light); }
.slide-promo-desc {
  font-family: var(--font); font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,.65); margin-bottom: 18px; line-height: 1.7;
}
.promo-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.promo-pill {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-family: var(--font); font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: var(--r-full);
}

/* Slider nav */
.slider-nav {
  position: absolute; bottom: 28px; left: var(--pad-x);
  z-index: 10; display: flex; gap: 8px;
}
.slider-dot {
  width: 40px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.22); cursor: pointer;
  overflow: hidden; position: relative;
}
.slider-dot-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%; background: var(--amber-light);
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; cursor: pointer;
  transition: background var(--t);
}
.slider-arrow:hover { background: rgba(255,255,255,.20); }
.slider-arrow--prev { left: 20px; }
.slider-arrow--next { right: 20px; }
.hero-chips {
  position: absolute; bottom: 28px; right: var(--pad-x);
  z-index: 10; display: flex; gap: 8px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-family: var(--font); font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: var(--r-full);
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; animation: pulsedot 2s infinite;
}
@keyframes pulsedot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(.8); }
}

/* ── SECTION BASE ──────────────────────────────────────────────── */
.section { padding: var(--sec-py) var(--pad-x); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 10px; }
.section-header .subtitle { max-width: 540px; margin: 0 auto; }

.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-cream2 { background: #F2EDE5; }

/* ── PRODUCT CARDS ─────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card {
  background: var(--white); border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card__img {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: var(--cream-2);
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }

/* Tag — opción B aprobada: fondo blanco, borde ámbar */
.product-card__tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--white); color: var(--amber);
  font-family: var(--font); font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: var(--r-full);
  border: 1.5px solid var(--amber);
}
.product-card__body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card__name {
  font-family: var(--font); font-size: 18px; font-weight: 800;
  color: var(--charcoal); margin-bottom: 8px;
}
.product-card__desc {
  font-family: var(--font); font-size: 13px; font-weight: 400;
  color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px;
}
.product-card__cta { display: flex; justify-content: flex-end; }
.product-card .btn { padding: 9px 20px; font-size: 13px; }

/* ── ORDER SECTION ─────────────────────────────────────────────── */
.order-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.order-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 36px 28px; text-align: center;
  border: 1px solid var(--cream-3); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.order-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.order-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.oi-local    { background: var(--amber-pale); }
.oi-llevar   { background: #FFF0EC; }
.oi-delivery { background: #E8F5E9; }
.order-num {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--font); font-size: 52px; font-weight: 900;
  color: rgba(201,131,10,.07); line-height: 1;
}
.order-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.order-card p  { font-size: 14px; font-weight: 400; color: var(--charcoal-lt); flex: 1; margin-bottom: 20px; line-height: 1.6; }
.order-card .btn { font-size: 13px; padding: 9px 20px; }

/* ── WHY GRID ──────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 32px; border: 1px solid var(--cream-3); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), background var(--t);
}
.why-card:hover { box-shadow: var(--shadow-md); background: var(--amber-pale); }
.why-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.why-icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--amber-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.why-card h3 { font-size: 16px; font-weight: 800; }
.why-divider { width: 32px; height: 2px; background: var(--amber); border-radius: 2px; margin-bottom: 12px; }
.why-card p { font-size: 14px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.7; margin: 0; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-2); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  color: var(--charcoal); text-align: left;
  background: none; border: none; cursor: pointer;
  transition: color var(--t);
}
.faq-btn:hover { color: var(--amber); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  transition: background var(--t), transform var(--t);
  color: var(--charcoal-mid);
}
.faq-item.open .faq-icon { background: var(--amber); color: #fff; transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding-bottom: 20px; font-size: 14px; font-weight: 400; color: var(--charcoal-mid); }
.faq-item.open .faq-answer { max-height: 240px; }

/* ── CTA SECTION ───────────────────────────────────────────────── */
.cta-section {
  background: var(--amber-pale); border: 2px solid var(--amber-border);
  border-radius: var(--r-xl); padding: 64px var(--pad-x); text-align: center;
  position: relative; overflow: hidden;
  max-width: var(--max-w); margin: 0 auto;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber));
}
.cta-badge {
  display: inline-block; background: white; color: var(--amber);
  font-family: var(--font); font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: var(--r-full);
  border: 1px solid var(--amber-border); margin-bottom: 16px; letter-spacing: 0.08em;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section .subtitle { margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── REVIEWS ───────────────────────────────────────────────────── */
.reviews-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; }

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: var(--max-w); margin: 0 auto; }
.contact-info-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 28px 24px; text-align: center;
  border: 1px solid var(--cream-3); box-shadow: var(--shadow-sm);
}
.contact-info-card .icon { font-size: 28px; margin-bottom: 12px; display: block; }
.contact-info-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; font-weight: 400; color: var(--charcoal-mid); margin: 0; line-height: 1.6; }

/* ── PAGE HERO ─────────────────────────────────────────────────── */
.page-hero { background: var(--cream); padding: calc(var(--nav-h) + 48px) var(--pad-x) 52px; text-align: center; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero .subtitle { max-width: 500px; margin: 0 auto; }

/* ── NOSOTROS ──────────────────────────────────────────────────── */
.nosotros-page { background: var(--cream); }
.card-centered {
  background: var(--white); border-radius: var(--r-xl);
  padding: 36px 40px; box-shadow: var(--shadow-md);
  max-width: 720px; margin: 0 auto 24px;
  border: 1px solid var(--cream-3);
}
.card-centered p { font-size: 15px; font-weight: 400; line-height: 1.8; margin-bottom: 14px; }
.card-centered p:last-child { margin-bottom: 0; }
.card-centered p strong { color: var(--charcoal); font-weight: 700; }
.brioche-box {
  background: var(--amber-pale); border-radius: var(--r-md);
  padding: 14px 18px; font-size: 15px; font-weight: 700; color: #7A4F00;
  text-align: center; margin: 16px 0;
  border: 1px solid rgba(201,131,10,.20);
}
.icon-trio { display: flex; justify-content: center; gap: 14px; margin-bottom: 28px; }
.icon-trio-item {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.it-amber  { background: var(--amber); }
.it-amber2 { background: var(--amber-light); }
.it-dark   { background: var(--charcoal); }
.respaldo-list { display: flex; flex-direction: column; gap: 10px; }
.respaldo-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.65;
}
.respaldo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 7px; }
.esencia-section { background: var(--peach); padding: var(--sec-py) var(--pad-x); }
.esencia-section h2 { text-align: center; margin-bottom: 36px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 0 auto 28px; }
.mv-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid var(--cream-3);
}
.mv-icon { width: 44px; height: 44px; border-radius: 10px; background: #F5B800; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px; }
.mv-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.mv-card p  { font-size: 14px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.7; margin: 0; }
.essence-tags { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.essence-tag { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--charcoal-mid); }
.essence-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* ── UBICACION ─────────────────────────────────────────────────── */
.ubicacion-page { background: var(--cream); padding: 48px var(--pad-x) 64px; }
.map-card-wrap { max-width: 680px; margin: 0 auto 20px; background: var(--white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--cream-3); }
.map-card-wrap iframe { width: 100%; height: 360px; border: none; display: block; }
.dir-card-wrap { max-width: 680px; margin: 0 auto 20px; background: var(--white); border-radius: var(--r-xl); padding: 24px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-3); text-align: center; }
.dir-card-wrap .dir-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.dir-card-wrap h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.dir-card-wrap p  { font-size: 15px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.7; }
.dir-btn-wrap { text-align: center; margin-bottom: 32px; }
.foto-local-wrap { max-width: 680px; margin: 0 auto; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.foto-local-wrap img { width: 100%; display: block; }

/* ── MENU PAGE ─────────────────────────────────────────────────── */
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.menu-tab {
  padding: 10px 22px; border-radius: var(--r-full);
  font-family: var(--font); font-size: 14px; font-weight: 700;
  background: var(--cream-2); color: var(--charcoal-mid);
  border: 2px solid transparent; transition: all var(--t); cursor: pointer;
}
.menu-tab:hover, .menu-tab.active { background: var(--charcoal); color: var(--amber-light); border-color: var(--charcoal); }
.menu-category { margin-bottom: 56px; }
.menu-category-title {
  font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--charcoal);
  padding-bottom: 12px; margin-bottom: 24px;
  border-bottom: 2px solid var(--cream-2);
  display: flex; align-items: center; gap: 10px;
}
.menu-category-sub { font-size: 14px; font-weight: 400; color: var(--charcoal-lt); }

/* ── LEGAL PAGES ───────────────────────────────────────────────── */
.legal-content { background: var(--white); padding: 48px var(--pad-x); }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--cream-2); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h3 { font-size: 16px; font-weight: 800; color: var(--charcoal); margin-bottom: 12px; }
.legal-section p { font-size: 14px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.75; margin-bottom: 8px; }
.legal-section p strong { color: var(--charcoal); font-weight: 700; }
.legal-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.legal-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.65; }
.legal-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 7px; }
.legal-highlight { background: var(--amber-pale); border-left: 3px solid var(--amber); padding: 12px 16px; border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: 14px; font-weight: 400; color: var(--charcoal-mid); margin: 12px 0; line-height: 1.65; }
.legal-highlight strong { color: #7A4F00; font-weight: 700; }

/* ── FLOATING CHAT ─────────────────────────────────────────────── */
.float-chat-btn {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--amber); color: #fff;
  border-radius: var(--r-full); padding: 14px 22px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 28px rgba(201,131,10,.40);
  cursor: pointer;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  z-index: 900; border: none;
  transition: transform var(--t), box-shadow var(--t);
}
.float-chat-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,131,10,.50); }
.float-chat-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.chat-widget {
  position: fixed; bottom: 90px; right: 28px; width: 320px;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,.16);
  overflow: hidden; z-index: 900; display: none; flex-direction: column;
}
.chat-widget.open { display: flex; }
.chat-widget-header { background: var(--amber); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 40px; height: 40px; background: rgba(255,255,255,.20); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.chat-header-text strong { display: block; color: #fff; font-size: 14px; font-weight: 800; }
.chat-header-text span { color: rgba(255,255,255,.75); font-size: 12px; font-weight: 400; }
.chat-close { margin-left: auto; color: rgba(255,255,255,.80); font-size: 22px; cursor: pointer; line-height: 1; background: none; border: none; font-family: inherit; transition: color var(--t); }
.chat-close:hover { color: #fff; }
.chat-bubble { background: var(--amber-pale); border-radius: 0 12px 12px 12px; padding: 12px 16px; font-size: 14px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.6; margin: 16px 16px 0; max-width: 85%; }
.chat-form { padding: 12px 16px 18px; }
.chat-form input, .chat-form textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--cream-2); border-radius: var(--r-sm);
  font-family: var(--font); font-size: 14px; font-weight: 400; color: var(--charcoal);
  background: var(--cream); margin-bottom: 10px; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.chat-form input:focus, .chat-form textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(201,131,10,.12); background: var(--white); }
.chat-form textarea { min-height: 80px; resize: none; }
.chat-form .btn { width: 100%; justify-content: center; }

/* ── FOOTER ────────────────────────────────────────────────────── */
.site-footer { background: var(--white); border-top: 1px solid var(--cream-3); }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 0; padding: 48px var(--pad-x) 36px;
  border-bottom: 1px solid var(--cream-2);
}
.footer-col { padding: 0 28px; border-right: 1px solid var(--cream-2); }
.footer-col:first-child { padding-left: 0; }
.footer-col:last-child  { border-right: none; padding-right: 0; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 44px; display: block; }
.footer-tagline { font-size: 13px; font-weight: 400; color: var(--charcoal-lt); line-height: 1.7; max-width: 220px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: opacity var(--t), transform var(--t); }
.footer-social a:hover { opacity: .85; transform: translateY(-1px); }
.footer-social a svg { width: 15px; height: 15px; fill: #fff; }
.footer-heading { font-family: var(--font); font-size: 11px; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.13em; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--amber); display: inline-block; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; font-weight: 400; color: var(--charcoal-mid); transition: color var(--t); }
.footer-links a:hover { color: var(--amber); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-item span { font-size: 13px; font-weight: 400; color: var(--charcoal-mid); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--amber); }
.footer-hours dt { font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--charcoal); margin-top: 6px; }
.footer-hours dt:first-child { margin-top: 0; }
.footer-hours dd { font-size: 13px; font-weight: 400; color: var(--charcoal-lt); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 16px var(--pad-x); background: var(--cream); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-family: var(--font); font-size: 12px; font-weight: 400; color: var(--charcoal-lt); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; font-weight: 400; color: var(--charcoal-lt); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--amber); }
.desktop-btn { display: none; align-items: center; gap: 6px; background: var(--amber-pale); border: 1px solid var(--amber-border); color: var(--amber); font-family: var(--font); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: var(--r-full); cursor: pointer; transition: background var(--t); }
.desktop-btn:hover { background: white; }

/* ── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .product-grid   { grid-template-columns: 1fr 1fr; }
  .order-grid     { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-col     { border-right: none; padding: 0; }
  .contact-info-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .mv-grid        { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; --pad-x: 20px; --sec-py: 56px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger    { display: flex; }
  .hero-banner   { height: 500px; }
  .slide-h1      { font-size: 32px; }
  .slide-h2-promo { font-size: 44px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .product-grid  { grid-template-columns: 1fr; }
  .hero-chips    { display: none; }
  .slider-arrow  { display: none; }
  .footer-grid   { grid-template-columns: 1fr; }
  .chat-widget   { width: 290px; right: 16px; }
  .float-chat-btn { bottom: 20px; right: 16px; }
  .desktop-btn   { display: inline-flex; }
}
@media (max-width: 480px) {
  .slide-h1       { font-size: 26px; }
  .slide-h2-promo { font-size: 34px; }
  .cta-actions    { flex-direction: column; align-items: center; }
  .slide-actions  { flex-direction: column; }
}

/* ══ CTA UNETE AL CLUB EN NAV (EGGBRUNCH) ══ */
.nav-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cta-club {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1A1228;
  color: #fff;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.cta-club:hover {
  border-color: #C9830A;
  transform: translateY(-2px);
}
.cta-club img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}
.cta-club-mobile {
  align-self: stretch;
  justify-content: center;
  margin: 8px 0;
}
.nav-mobile .cta-club,
.nav-mobile .cta-club-mobile {
  color: #fff !important;
  border-bottom: none !important;
}
@media (max-width: 900px) {
  .nav-ctas { display: none; }
}

/* ══ PÁGINA BRUNCH Y QUEENS CLUB ══ */

.eb-club {
  --yellow: #FFB627;
  --yellow-soft: #FFF4DA;
  --pink: #E91E63;
  --pink-deep: #C9134F;
  --pink-soft: #FCE4EC;
  --teal: #0EA5A0;
  --teal-light: #2DD4BF;
  --teal-soft: #DDF5F4;
  --dark: #1A1228;
  --gray: #4A4458;
  --gray-soft: #8A8492;
  --white: #FFFFFF;
  --offwhite: #FAFAFA;
  --border: #EEEEEE;
}

.eb-club {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
/* ── PREVIEW DISCLAIMER (solo para vista previa de Miguel) ─── */
.eb-club .preview-note {
  background: #FFF8E7;
  border-bottom: 1px solid #E8DAB8;
  padding: 10px 24px;
  text-align: center;
  font-size: 12px;
  color: #8A6A2A;
  font-weight: 600;
}
.eb-club .preview-note strong { color: #5A4419; }

/* ── CONTAINER ─── */
.eb-club .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SECTIONS ─── */
.eb-club section { padding: 80px 0; }

.eb-club .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.eb-club .section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--pink);
  display: block;
}

.eb-club .section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.eb-club .section-title em {
  font-style: italic;
  color: var(--pink);
}

.eb-club .section-title .yellow { color: var(--yellow); font-style: italic; }
.eb-club .section-title .teal { color: var(--teal); font-style: italic; }

.eb-club .section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.65;
}

.eb-club .section-center {
  text-align: center;
}

.eb-club .section-center .section-tag { justify-content: center; margin-left: auto; margin-right: auto; }
.eb-club .section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* =============== HERO =============== */
.eb-club .hero {
  padding: 80px 0 60px;
  position: relative;
}

.eb-club .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.eb-club .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.eb-club .hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}

.eb-club .hero h1 .accent-yellow { color: var(--yellow); font-style: italic; }
.eb-club .hero h1 .accent-pink { color: var(--pink); font-style: italic; }

.eb-club .hero-subtitle {
  font-size: 19px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}

.eb-club .hero-subtitle strong {
  color: var(--dark);
  font-weight: 800;
}

.eb-club .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.eb-club .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.eb-club .btn-pink {
  background: var(--pink);
  color: white;
}

.eb-club .btn-pink:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.3);
}

.eb-club .btn-outline {
  background: white;
  color: var(--dark);
  border-color: var(--dark);
}

.eb-club .btn-outline:hover {
  background: var(--dark);
  color: white;
}

.eb-club .hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px dashed var(--border);
}

.eb-club .hero-stat .num {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.eb-club .hero-stat .num.yellow { color: var(--yellow); }
.eb-club .hero-stat .num.pink { color: var(--pink); }
.eb-club .hero-stat .num.teal { color: var(--teal); }

.eb-club .hero-stat .label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 700;
  margin-top: 6px;
}

.eb-club .hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.eb-club .hero-logo img {
  max-width: 460px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

/* Slogan Únete al Club */
.eb-club .club-slogan {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  flex-wrap: wrap;
}

.eb-club .club-slogan .s1 {
  color: var(--yellow);
  font-style: italic;
  transform: rotate(-3deg);
  display: inline-block;
  text-shadow: 3px 3px 0 var(--dark);
}

.eb-club .club-slogan .s2 {
  color: var(--teal);
  font-size: 0.65em;
  font-style: italic;
  font-weight: 800;
  transform: rotate(2deg);
  display: inline-block;
}

.eb-club .club-slogan .s3 {
  color: var(--pink);
  font-style: italic;
  transform: rotate(3deg);
  display: inline-block;
  text-shadow: 3px 3px 0 var(--dark);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =============== BIENVENIDA 40% =============== */
.eb-club .welcome {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  border-radius: 32px;
  padding: 72px 56px;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1140px;
}

.eb-club .welcome::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.18;
}

.eb-club .welcome::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--teal-light);
  opacity: 0.15;
}

.eb-club .welcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eb-club .welcome-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eb-club .welcome h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.eb-club .welcome h2 em {
  font-style: italic;
  color: var(--yellow);
}

.eb-club .welcome p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 460px;
  line-height: 1.55;
}

.eb-club .welcome p strong { color: var(--yellow); }

.eb-club .welcome-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eb-club .welcome-pill {
  background: rgba(255, 255, 255, 0.18);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.eb-club .welcome-pill strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 2px;
}

.eb-club .welcome-number {
  text-align: center;
}

.eb-club .welcome-number .big {
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.eb-club .welcome-number .sub {
  font-size: 22px;
  font-weight: 800;
  margin-top: 4px;
}

/* =============== HOW IT WORKS =============== */
.eb-club .how {
  background: var(--offwhite);
  border-radius: 32px;
  padding: 80px 56px;
  margin: 0 auto;
  max-width: 1140px;
}

.eb-club .how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.eb-club .how-step {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eb-club .how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(26, 18, 40, 0.06);
}

.eb-club .how-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  margin: 0 auto 20px;
}

.eb-club .how-step:nth-child(1) .how-step-num { background: var(--yellow-soft); color: #8B5A00; }
.eb-club .how-step:nth-child(2) .how-step-num { background: var(--pink-soft); color: var(--pink-deep); }
.eb-club .how-step:nth-child(3) .how-step-num { background: var(--teal-soft); color: var(--teal); }
.eb-club .how-step:nth-child(4) .how-step-num { background: var(--yellow-soft); color: #8B5A00; }

.eb-club .how-step-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}

.eb-club .how-step h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.eb-club .how-step .how-step-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 14px;
  display: block;
}

.eb-club .how-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 14px;
}

.eb-club .how-step-list {
  list-style: none;
  text-align: left;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  margin-top: 4px;
}

.eb-club .how-step-list li {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.eb-club .how-step-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 14px;
}

/* Ejemplo práctico */
.eb-club .how-example {
  margin-top: 48px;
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  border: 2px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}

.eb-club .how-example-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  flex-shrink: 0;
}

.eb-club .how-example-content {
  text-align: left;
}

.eb-club .how-example .example-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.eb-club .how-example h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.eb-club .how-example h3 em {
  font-style: italic;
  color: var(--pink);
}

.eb-club .how-example-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.eb-club .example-case {
  background: var(--offwhite);
  border-radius: 12px;
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
}

.eb-club .example-case.queen {
  border-left-color: var(--pink);
}

.eb-club .example-case .case-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 4px;
}

.eb-club .example-case .case-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
}

.eb-club .example-case .case-value span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.eb-club .how-example p.footnote {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.eb-club .how-example p.footnote strong {
  color: var(--dark);
  font-weight: 800;
}

/* =============== LEVELS (estilo plan) =============== */
.eb-club .tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.eb-club .tier-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 44px 36px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eb-club .tier-card.brunch {
  border-color: var(--teal-soft);
}

.eb-club .tier-card.brunch:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 165, 160, 0.12);
}

.eb-club .tier-card.queen {
  background: linear-gradient(165deg, var(--dark) 0%, #2D1F3E 100%);
  border-color: var(--dark);
  color: white;
  box-shadow: 0 24px 56px rgba(26, 18, 40, 0.22);
}

.eb-club .tier-card.queen:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(233, 30, 99, 0.22);
}

.eb-club .tier-premium-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--yellow) 0%, var(--pink) 100%);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.3);
}

.eb-club .tier-level-tag {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eb-club .tier-card.queen .tier-level-tag {
  background: rgba(255, 182, 39, 0.18);
  color: var(--yellow);
}

.eb-club .tier-name {
  font-size: 44px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--dark);
}

.eb-club .tier-card.queen .tier-name { color: white; }

.eb-club .tier-tagline {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 28px;
}

.eb-club .tier-card.queen .tier-tagline { color: rgba(255, 255, 255, 0.7); }

.eb-club .tier-percent-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.eb-club .tier-percent {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--teal);
}

.eb-club .tier-card.queen .tier-percent {
  color: var(--yellow);
}

.eb-club .tier-percent-suffix {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  line-height: 1.3;
}

.eb-club .tier-card.queen .tier-percent-suffix { color: rgba(255, 255, 255, 0.7); }

.eb-club .tier-perks {
  list-style: none;
}

.eb-club .tier-perks li {
  padding: 9px 0;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.eb-club .tier-perks li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 16px;
}

.eb-club .tier-card.queen .tier-perks li::before { color: var(--yellow); }

.eb-club .tier-access {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}

.eb-club .tier-card.queen .tier-access {
  border-top-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}

.eb-club .tier-access strong {
  color: var(--dark);
  display: block;
  font-size: 16px;
  margin-top: 4px;
  font-weight: 800;
}

.eb-club .tier-card.queen .tier-access strong { color: var(--pink); }

/* =============== BENEFITS =============== */
.eb-club .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.eb-club .benefit {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all 0.2s ease;
}

.eb-club .benefit:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(233, 30, 99, 0.08);
}

.eb-club .benefit-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 40px;
  margin-bottom: 20px;
}

.eb-club .benefit:nth-child(1) .benefit-emoji { background: var(--pink-soft); }
.eb-club .benefit:nth-child(2) .benefit-emoji { background: var(--yellow-soft); }

.eb-club .benefit h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  font-style: italic;
}

.eb-club .benefit p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.eb-club .benefit-detail {
  background: var(--offwhite);
  border-radius: 14px;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.eb-club .benefit-detail .pink-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--pink);
}

/* Birthday Card (sola, rediseñada) */
.eb-club .birthday-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, #FFF4DA 0%, #FFE0EC 100%);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  border: 2px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

.eb-club .birthday-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.1;
}

.eb-club .birthday-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.15;
}

.eb-club .birthday-emoji {
  font-size: 72px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.eb-club .birthday-card h3 {
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.eb-club .birthday-card p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.eb-club .birthday-amounts {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.eb-club .birthday-amount {
  background: white;
  border-radius: 16px;
  padding: 18px 32px;
  border: 2px solid var(--yellow);
  min-width: 140px;
}

.eb-club .birthday-amount.queen {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
}

.eb-club .birthday-amount .b-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  color: var(--gray);
}

.eb-club .birthday-amount.queen .b-label {
  color: rgba(255,255,255,0.85);
}

.eb-club .birthday-amount .b-value {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
}

.eb-club .birthday-amount.queen .b-value {
  color: white;
}

/* =============== DOWNLOAD APP =============== */
.eb-club .download-section {
  background: var(--offwhite);
  border-radius: 32px;
  padding: 80px 56px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.eb-club .download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Apple / Google Play buttons */
.eb-club .app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  min-width: 220px;
}

.eb-club .app-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.eb-club .app-btn-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.eb-club .app-btn-text {
  text-align: left;
  line-height: 1.1;
}

.eb-club .app-btn-text .small {
  font-size: 11px;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.eb-club .app-btn-text .big {
  font-size: 20px;
  font-weight: 700;
}

/* Web button */
.eb-club .web-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--pink);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 220px;
}

.eb-club .web-btn:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
}

.eb-club .web-btn-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.eb-club .web-btn-text {
  text-align: left;
  line-height: 1.1;
}

.eb-club .web-btn-text .small {
  font-size: 11px;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  opacity: 0.85;
}

.eb-club .web-btn-text .big {
  font-size: 20px;
  font-weight: 700;
}

/* =============== FAQ =============== */
.eb-club .faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.eb-club .faq-item {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.eb-club .faq-item[open] {
  border-color: var(--pink);
}

.eb-club .faq-question {
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.eb-club .faq-question::-webkit-details-marker { display: none; }

.eb-club .faq-question::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.eb-club .faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.eb-club .faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* =============== FINAL CTA =============== */
.eb-club .final-cta {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--pink) 100%);
  border-radius: 32px;
  padding: 80px 48px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eb-club .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(255,255,255,0.25) 0%, transparent 50%);
  pointer-events: none;
}

.eb-club .final-cta-content { position: relative; z-index: 2; }

.eb-club .final-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.eb-club .final-cta h2 em { font-style: italic; }

.eb-club .final-cta p {
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.eb-club .final-cta .download-buttons { margin-top: 24px; }

/* =============== RESPONSIVE =============== */
@media (max-width: 900px) {
  .eb-club section{ padding: 56px 0; }
  .eb-club .container{ padding: 0 20px; }
  .eb-club .hero-grid{ grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .eb-club .hero-content{ order: 2; }
  .eb-club .hero-logo{ order: 1; }
  .eb-club .hero-eyebrow, .eb-club .hero h1, .eb-club .hero-subtitle, .eb-club .hero-ctas, .eb-club .hero-stats{ justify-content: center; }
  .eb-club .hero-stats{ justify-content: space-around; gap: 24px; }
  .eb-club .hero-subtitle{ margin-left: auto; margin-right: auto; }
  .eb-club .hero-logo img{ max-width: 320px; }
  .eb-club .welcome{ padding: 56px 32px; }
  .eb-club .welcome-grid{ grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .eb-club .welcome-pills{ justify-content: center; }
  .eb-club .how, .eb-club .download-section{ padding: 56px 28px; }
  .eb-club .how-grid{ grid-template-columns: 1fr 1fr; }
  .eb-club .levels-grid{ grid-template-columns: 1fr; }
  .eb-club .tiers-grid{ grid-template-columns: 1fr; }
  .eb-club .benefits-grid{ grid-template-columns: 1fr; }
  .eb-club .download-buttons{ flex-direction: column; align-items: center; }
  .eb-club .app-btn, .eb-club .web-btn{ width: 100%; max-width: 280px; }
  .eb-club .final-cta{ padding: 56px 28px; }
  .eb-club .welcome, .eb-club .how, .eb-club .download-section, .eb-club .final-cta{ margin-left: 16px; margin-right: 16px; max-width: none; }
}

@media (max-width: 500px) {
  .eb-club .how-grid{ grid-template-columns: 1fr; }
  .eb-club .hero-stats{ flex-direction: column; gap: 16px; }
  .eb-club .level-card{ padding: 36px 28px; }
  .eb-club .tier-card{ padding: 36px 28px; }
  .eb-club .welcome{ padding: 48px 24px; }
  .eb-club .welcome-number .big{ font-size: 100px; }
}
