/* ============================================================
   FERIA DE LA SALCHICHA EJUTECA — styles.css  v2
   Estilo: moderno, limpio, cálido
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --red:          #B91C1C;
  --red-dark:     #7F1D1D;
  --red-light:    #FEF2F2;
  --amber:        #D97706;
  --amber-light:  #FFFBEB;
  --green:        #15803D;
  --green-light:  #F0FDF4;
  --ink:          #111827;
  --ink-2:        #374151;
  --ink-3:        #6B7280;
  --ink-4:        #9CA3AF;
  --line:         #E5E7EB;
  --bg:           #FAFAF9;
  --bg-warm:      #FFF7ED;
  --white:        #FFFFFF;
  --font:         'Inter', sans-serif;
  --sh-sm: 0 1px 2px rgba(0,0,0,.05);
  --sh-md: 0 4px 12px rgba(0,0,0,.08);
  --sh-lg: 0 12px 40px rgba(0,0,0,.10);
  --sh-xl: 0 24px 60px rgba(0,0,0,.12);
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --t:    .25s ease;
}

/* ── 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(--ink-2);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container   { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--alt{ background: var(--bg-warm); }
.section--dark{ background: var(--ink); }
.section--red { background: var(--red); }

/* ── Tipografía ──────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.03em;
  color: var(--ink);
}
.h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
}
.h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.lead {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.75;
}
.accent { color: var(--red); }

/* ── Botones ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .93rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-red, .btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(185,28,28,.25);
}
.btn-red:hover, .btn--primary:hover { background: var(--red-dark); box-shadow: 0 4px 16px rgba(185,28,28,.35); transform: translateY(-1px); }

.btn-amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(217,119,6,.25);
}
.btn-amber:hover { background: #B45309; box-shadow: 0 4px 16px rgba(217,119,6,.35); transform: translateY(-1px); }

.btn-wa {
  background: #22C55E;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(34,197,94,.25);
}
.btn-wa:hover { background: #16A34A; box-shadow: 0 4px 16px rgba(34,197,94,.35); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink-3); background: var(--white); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn-lg { font-size: 1rem; padding: .9rem 1.75rem; }
.btn-sm { font-size: .82rem; padding: .5rem 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Badge / Chip ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 100px;
}
.badge-red    { background: var(--red-light);   color: var(--red); }
.badge-amber  { background: var(--amber-light); color: var(--amber); }
.badge-green  { background: var(--green-light); color: var(--green); }
.badge-dark   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.15); }

/* ── Animaciones ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0; z-index: 100;
  padding: .9rem 0;
  background: rgba(127,29,29,.85);
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.header.scrolled {
  background: rgba(127,29,29,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon { font-size: 1.5rem; line-height: 1; display:flex; align-items:center; }
.logo__icon img, .header__logo-icon img { display:block; width:2.2rem; height:2.2rem; flex-shrink:0; }
.header__logo-icon { font-size:1.5rem; line-height:1; display:flex; align-items:center; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name, .header__logo-name { font-size: .9rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; }
.logo__sub, .header__logo-sub  { font-size: .65rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .04em; }

.nav, .header__nav { display: flex; align-items: center; gap: 0; }
.nav a, .header__nav a {
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem .7rem;
  border-radius: 7px;
  transition: all var(--t);
  text-decoration: none;
}
.nav a:hover, .nav a.active,
.header__nav a:hover, .header__nav a.active { color: var(--white); background: rgba(255,255,255,.1); }

.header__actions, .header__cta { display: flex; align-items: center; gap: .6rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .35rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: .75rem 1.5rem 1rem;
  background: rgba(127,29,29,.98);
  border-top: 1px solid rgba(255,255,255,.08);
  gap: .1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,.8); font-size: .92rem; padding: .55rem .5rem; border-radius: 7px; transition: color var(--t); }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .btn { margin-top: .5rem; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--red-dark);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
/* Textura sutil */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(220,38,38,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0,0,0,.25) 0%, transparent 60%);
  pointer-events: none;
}
/* Líneas decorativas */
.hero__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__left { max-width: 520px; }

.hero__date-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__date-chip .dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: normal;
  color: #FCD34D;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.75rem;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

/* Countdown */
.hero__countdown {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cd-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: .75rem 1rem;
  min-width: 68px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.cd-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #FCD34D;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
}

/* Hero visual */
.hero__right { position: relative; display: flex; justify-content: center; }
.hero__img-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--sh-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  text-align: center;
  padding: 2rem;
}
.hero__img-ph span:first-child { font-size: 4.5rem; }

.hero__date-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--sh-lg);
  text-align: center;
  min-width: 110px;
}
.hero__date-card .dc-day   { font-size: 2.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.hero__date-card .dc-month { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); }
.hero__date-card .dc-year  { font-size: .7rem; color: var(--ink-4); margin-top: .1rem; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 1rem;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: none; }
.stat-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.stat-item__num { font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1; }
.stat-item__label { font-size: .75rem; color: var(--ink-3); line-height: 1.3; }

/* ── SOBRE EL EVENTO ─────────────────────────────────────── */
.event-section { background: var(--white); }
.event-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.event-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--sh-md);
}
.event-img img { width: 100%; height: 100%; object-fit: cover; }

.event-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.75rem;
}
.event-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
}
.event-card__label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); margin-bottom: .25rem; }
.event-card__val   { font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.35; }

/* ── SALCHICHA (SEO) ─────────────────────────────────────── */
.salchicha-section { background: var(--bg-warm); }
.salchicha-section__header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(185,28,28,.15);
}
.feature-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card__title { font-size: .98rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.feature-card__text  { font-size: .85rem; color: var(--ink-3); line-height: 1.65; }

/* ── PRODUCTORES ─────────────────────────────────────────── */
.producers-section { background: var(--white); }
.producers-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.producers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Tarjeta de productor real */
.producer-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.producer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(185,28,28,.2);
}
.producer-card__banner {
  height: 80px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.producer-card__banner img { width: 100%; height: 100%; object-fit: cover; }
.producer-card__banner-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.producer-card__avatar {
  position: absolute;
  bottom: -20px; left: 1.25rem;
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--sh-sm);
}

.producer-card__body { padding: 1.5rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.producer-card__name    { font-size: .98rem; font-weight: 800; color: var(--ink); margin-bottom: .25rem; }
.producer-card__loc     { font-size: .75rem; color: var(--ink-4); display: flex; align-items: center; gap: .3rem; margin-bottom: .6rem; }
.producer-card__desc    { font-size: .83rem; color: var(--ink-3); line-height: 1.55; flex: 1; margin-bottom: 1rem; }
.producer-card__tags    { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.producer-card__tag     { font-size: .7rem; font-weight: 600; padding: .2rem .65rem; background: var(--red-light); color: var(--red); border-radius: 100px; }
.producer-card__footer  { border-top: 1px solid var(--line); padding-top: 1rem; display: flex; gap: .5rem; }

/* Placeholder card */
.producer-placeholder {
  background: var(--bg);
  border: 1.5px dashed #D1D5DB;
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .75rem;
  min-height: 280px;
  transition: border-color var(--t), background var(--t);
}
.producer-placeholder:hover { border-color: var(--red); background: var(--red-light); }
.producer-placeholder__icon { font-size: 2.5rem; opacity: .35; }
.producer-placeholder__title { font-size: .88rem; font-weight: 700; color: var(--ink-3); }
.producer-placeholder__sub   { font-size: .78rem; color: var(--ink-4); line-height: 1.5; }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-section { background: var(--bg); }
.blog-section__header { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body     { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat      { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); margin-bottom: .5rem; }
.blog-card__title    { font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: .5rem; }
.blog-card__excerpt  { font-size: .83rem; color: var(--ink-3); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card__link     { font-size: .82rem; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: .3rem; transition: gap var(--t); }
.blog-card:hover .blog-card__link { gap: .55rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-section__header { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
details.faq {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t);
}
details.faq[open] { border-color: rgba(185,28,28,.3); background: var(--white); }
details.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  user-select: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ink-4);
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}
details.faq[open] summary::after { transform: rotate(45deg); color: var(--red); }
details.faq[open] summary { color: var(--red); }
.faq__body {
  padding: 0 1.25rem .9rem;
  font-size: .87rem;
  color: var(--ink-3);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: .8rem;
}

/* ── CONTACTO ─────────────────────────────────────────────── */
.contact-section { background: var(--ink); }
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--white); margin-bottom: .5rem; }
.contact-sub   { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item  { display: flex; gap: .875rem; align-items: flex-start; }
.contact-item__icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item__lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: .2rem; }
.contact-item__val { font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 600; }
.contact-item__val a { transition: color var(--t); }
.contact-item__val a:hover { color: #FCD34D; }

.map-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-xl); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── ZONAS ────────────────────────────────────────────────── */
.zonas-section { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.5rem 0; text-align: center; }
.zonas-section p { font-size: .8rem; color: var(--ink-4); margin-bottom: 1.25rem; }
.zonas-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.zona-tag { font-size: .75rem; font-weight: 500; padding: .3rem .8rem; background: var(--white); border: 1px solid var(--line); color: var(--ink-3); border-radius: 100px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #0C0C0F; padding: 3.5rem 0 1.25rem; color: rgba(255,255,255,.75); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand { display: flex; flex-direction: column; gap: .4rem; }
.footer__brand-icon { font-size: 1.75rem; margin-bottom: .25rem; }
.footer__brand-name { font-size: .95rem; font-weight: 800; color: var(--white); }
.footer__brand-desc { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 1rem; }
.footer__socials { display: flex; gap: .4rem; }
.footer__social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: all var(--t);
}
.footer__social:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer__col-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: .875rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .82rem; color: #fff !important; transition: color var(--t); }
.footer__links a:hover { color: var(--amber) !important; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer__copy { font-size: .75rem; color: rgba(255,255,255,.5); }
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a { font-size: .72rem; color: rgba(255,255,255,.7) !important; transition: color var(--t); }
.footer__legal a:hover { color: var(--white) !important; }

/* ── WA float ────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: .5rem;
}
.wa-float__tooltip {
  background: var(--ink);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: var(--sh-md);
  display: none;
}
.wa-float:hover .wa-float__tooltip { display: block; }
.wa-float__btn {
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.6); }
.wa-float__btn svg { width: 28px; height: 28px; fill: var(--white); }
.wa-float__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.85);opacity:0} }

/* ── PÁGINAS DE PRODUCTORES ──────────────────────────────── */
.producers-hero {
  background: var(--ink);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.producers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 90% 50%, rgba(185,28,28,.2) 0%, transparent 60%);
  pointer-events: none;
}
.producers-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.producers-hero__title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 1rem; }
.producers-hero__title em { font-style: normal; color: #FCD34D; }
.producers-hero__sub { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2rem; }

.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.pricing-card__top {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 2rem;
  text-align: center;
}
.pricing-card__badge {
  display: inline-block;
  background: rgba(252,211,77,.15);
  border: 1px solid rgba(252,211,77,.3);
  color: #FCD34D;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.pricing-card__name    { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.pricing-card__price   { display: flex; align-items: baseline; justify-content: center; gap: .2rem; }
.pricing-card__cur     { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,.6); }
.pricing-card__amount  { font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.pricing-card__period  { font-size: .8rem; color: rgba(255,255,255,.5); }
.pricing-card__note    { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: .35rem; }

.pricing-card__body { padding: 1.75rem; }
.pricing-items { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.5rem; }
.pricing-item  { display: flex; align-items: flex-start; gap: .7rem; }
.pricing-item__ck {
  width: 20px; height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .15rem;
}
.pricing-item__ck svg { width: 11px; height: 11px; color: var(--green); }
.pricing-item__text { font-size: .88rem; color: var(--ink-2); line-height: 1.45; }
.pricing-item__text strong { display: block; font-weight: 700; color: var(--ink); }

.pricing-urgency {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--red);
  margin-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

/* Pasos */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step  { display: flex; gap: 1rem; align-items: flex-start; }
.step__num {
  width: 34px; height: 34px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 900;
  flex-shrink: 0;
}
.step__title { font-size: .93rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.step__text  { font-size: .83rem; color: var(--ink-3); line-height: 1.55; }

/* Benefits grid (página productores) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  transition: border-color var(--t), box-shadow var(--t);
}
.benefit:hover { border-color: rgba(185,28,28,.2); box-shadow: var(--sh-sm); }
.benefit__icon { font-size: 1.6rem; flex-shrink: 0; }
.benefit__title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.benefit__text  { font-size: .82rem; color: var(--ink-3); line-height: 1.55; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left  { max-width: 100%; text-align: center; }
  .hero__ctas  { justify-content: center; }
  .hero__chips { justify-content: center; }
  .hero__countdown { justify-content: center; }
  .hero__sub   { margin: 0 auto 2rem; }

  .event-section__inner { grid-template-columns: 1fr; }
  .event-img { max-width: 480px; margin: 0 auto; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .producers-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .blog-grid      { grid-template-columns: 1fr 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 16/9; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .producers-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .pricing-card  { max-width: 440px; margin: 0 auto; }
  .steps { max-width: 440px; margin: 0 auto; }
  .benefits-grid { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section, .section--alt, .section--dark { padding: 3.5rem 0; }
  .nav    { display: none; }
  .header__actions .btn, .header__cta .btn { display: none; }
  .hamburger { display: flex; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .stat-item { border-right: none; padding: 0 .5rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .producers-grid { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr; gap: 1.5rem; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .event-cards    { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title  { font-size: 2rem; }
  .hero__countdown { gap: .5rem; }
  .cd-num { font-size: 1.5rem; }
  .cd-item { min-width: 58px; padding: .6rem .75rem; }
}
