/* ==========================================================================
   Frescos del Campo — Design System v2
   Paleta y tipografía alineadas a la Guía de Marca Digital.
   Playfair Display (titulares) + Poppins (UI/subtítulos) + Poppins (texto).
   ========================================================================== */

:root {
  /* Color — de la Guía de Marca Digital */
  --c-green-900: #123222;
  --c-green-700: #1E5E3A;   /* Verde Campo */
  --c-green-500: #78BF6A;   /* Verde Claro */
  --c-green-100: #E9F3E7;
  --c-orange:    #F47C20;   /* Naranja Frescos */
  --c-orange-700:#D9670F;
  --c-earth:     #BA6A3D;   /* Tierra */
  --c-white:     #FFFFFF;
  --c-cream:     #F4F6F5;   /* Gris Claro */
  --c-ink:       #222222;   /* Gris Oscuro */
  --c-ink-soft:  #63675F;
  --c-line:      #E4E7E3;

  /* Type */
  --f-display: 'Playfair Display', Georgia, serif;   /* solo titulares grandes */
  --f-heading: 'Poppins', -apple-system, sans-serif;  /* subtítulos, nav, botones */
  --f-body: 'Poppins', -apple-system, sans-serif;     /* texto de párrafo */

  /* Layout */
  --header-h: 84px;
  --header-h-mobile: 64px;
  --maxw: 1360px;
  --radius: 12px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; width: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-white);
  padding-top: var(--header-h);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--f-heading); margin: 0; font-weight: 600; letter-spacing: -0.01em; }
.hero h1, .section-head h2, .cta-band h2, .modal h3 { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.01em; }
p { line-height: 1.65; margin: 0 0 1em; color: var(--c-ink-soft); }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
}

.upper { text-transform: uppercase; letter-spacing: 0.08em; }
.eyebrow {
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange-700);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--c-orange);
}

.wrap {
  max-width: none;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--green { background: var(--c-green-700); color: var(--c-white); }
.section--green p { color: rgba(255,255,255,0.78); }
.section--cream { background: var(--c-cream); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; }
.section-head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--c-green-700); color: var(--c-white); }
.btn-primary:hover { background: var(--c-green-900); }
.btn-secondary { background: transparent; border-color: var(--c-green-700); color: var(--c-green-700); }
.btn-secondary:hover { background: var(--c-green-700); color: var(--c-white); }
.btn-ghost-white { border-color: rgba(255,255,255,.5); color: var(--c-white); }
.btn-ghost-white:hover { background: var(--c-white); color: var(--c-green-700); }
.btn-cta { background: var(--c-orange-700); color: var(--c-white); }
.btn-cta:hover { filter: brightness(0.88); }
.btn-arrow::after { content: '\2192'; transition: transform .2s var(--ease); }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ==========================================================================
   Header — fijo/estático, siempre visible
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 500;
  display: flex;
  align-items: center;
  background: var(--c-white);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.logo-mark__icon { height: 34px; width: auto; flex-shrink: 0; display: block; }
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: 0 6px 24px rgba(23,67,31,0.06);
}
.footer-logo-full { height: 110px; width: auto; margin-bottom: 16px; }
.site-header .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo img { height: 58px; width: auto; }
.site-header__nav { display: flex; align-items: center; gap: 30px; }
.site-header__nav a {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  position: relative;
  padding: 6px 0;
}
.site-header__nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--c-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s var(--ease);
}
.site-header__nav a:hover::after,
.site-header__nav a.active::after { transform: scaleX(1); }
.site-header__nav a.active::after { background: var(--c-green-700); }
.site-header__nav a.active { color: var(--c-green-700); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.lang-picker { display: flex; font-family: var(--f-heading); font-size: 12px; font-weight: 700; gap: 2px; border: 1px solid var(--c-line); border-radius: var(--radius-sm); overflow: hidden; }
.lang-picker button { -webkit-appearance: none; appearance: none; border: none; background: none; margin: 0; font: inherit; padding: 7px 10px; cursor: pointer; color: var(--c-ink-soft); }
.lang-picker button.active { background: var(--c-green-700); color: var(--c-white); }
.lang-picker button:focus-visible { outline: 2px solid var(--c-green-700); outline-offset: 2px; }

.btn-grower-safety {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  border: 1.5px solid var(--c-green-700);
  background: var(--c-green-700);
  border-radius: var(--radius-sm);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-grower-safety:hover { background: var(--c-green-900); border-color: var(--c-green-900); }
.btn-grower-safety svg { width: 20px; height: 20px; }
.icon-16 { width: 16px; height: 16px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none; background: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--c-ink); transition: all .2s var(--ease); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--c-white);
  z-index: 600;
  padding: 24px 28px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav__close { border: none; background: none; font-size: 28px; line-height: 1; color: var(--c-ink); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav nav a { font-family: var(--f-heading); font-size: 22px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--c-line); }
.mobile-nav__footer { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,38,19,0.82) 0%, rgba(15,38,19,0.28) 55%, rgba(15,38,19,0.15) 100%);
}
.hero__content { position: relative; padding-bottom: 72px; max-width: 680px; margin-left: 0; margin-right: auto; text-align: left; }
.hero__eyebrow { color: rgba(255,255,255,0.85); }
.hero__eyebrow::before { background: var(--c-orange); }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.08; margin-bottom: 18px; }
.hero p.lead { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 520px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero--sub { min-height: 380px; }

/* ==========================================================================
   ¿Quiénes somos? / texto + imagen
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.split--reverse { grid-template-columns: 0.95fr 1.05fr; }
.split--reverse .split__media { order: 2; }
.split--feature { grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.split--feature .split__copy { display: flex; flex-direction: column; justify-content: center; }
.split--feature .split__media { background: var(--c-cream); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.split--feature .split__media img { aspect-ratio: auto; max-height: 380px; max-width: 100%; width: auto; height: auto; object-fit: contain; border-radius: 0; }
.split--feature h2 { font-size: clamp(26px, 3.2vw, 36px); }
.split__media img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split__copy h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 20px; }

/* ---------- Historias / Recetas — tarjetas con foto de fondo completa ---------- */
.feature-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.feature-card__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}
.feature-card__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 34%, rgba(255,255,255,0.15) 62%, rgba(255,255,255,0) 78%);
}
.feature-card__content { position: relative; z-index: 2; padding: 36px; max-width: 300px; }
.feature-card__content .eyebrow { margin-bottom: 12px; }
.feature-card__content h3 { font-size: 22px; line-height: 1.25; margin-bottom: 12px; }
.feature-card__content p { font-size: 14.5px; margin-bottom: 16px; }

/* ---------- Valores / beneficios — ícono en círculo, sin caja ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.value-item { text-align: center; }
.value-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--c-green-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { width: 26px; height: 26px; color: var(--c-green-700); }
.value-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--c-ink); }
.value-item p { font-size: 14.5px; margin: 0; color: var(--c-ink-soft); }

/* variante para fondo verde (Home / Nosotros-Misión) */
.value-grid--on-green { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
.value-grid--on-green .value-icon { background: rgba(255,255,255,0.14); }
.value-grid--on-green .value-icon svg { color: var(--c-white); }
.value-grid--on-green .value-item h3 { color: var(--c-white); }
.value-grid--on-green .value-item p { color: rgba(255,255,255,0.78); }

/* Misión / Visión — dos columnas de texto con divisor, sin caja */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.mv-item { position: relative; padding-left: 28px; border-left: 2px solid rgba(255,255,255,0.25); }
.mv-item__label { font-family: var(--f-heading); font-size: 12.5px; font-weight: 700; color: var(--c-green-500); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.mv-item h3 { color: var(--c-white); font-size: 21px; margin-bottom: 12px; }
.mv-item p { color: rgba(255,255,255,0.8); margin: 0; }

/* ==========================================================================
   Cards — Historias / Recetas
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-white);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card[data-open-recipe], .card[data-open-story] {
  cursor: pointer;
  -webkit-appearance: none; appearance: none;
  display: block; width: 100%;
  font: inherit; color: inherit; text-align: left;
  margin: 0; padding: 0; text-decoration: none;
}
.card:hover { box-shadow: 0 16px 36px rgba(23,67,31,0.10); transform: translateY(-3px); }
.card:focus-visible { outline: 2px solid var(--c-green-700); outline-offset: -2px; }
.card__media { aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 22px 22px 26px; }
.card__tag { font-family: var(--f-heading); font-size: 11.5px; font-weight: 700; color: var(--c-green-700); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: inline-block; }
.card__body h3 { font-size: 18px; line-height: 1.35; margin-bottom: 10px; }
.card__body p { font-size: 14.5px; margin: 0; }
.card__meta { display: flex; gap: 16px; margin-top: 14px; font-family: var(--f-heading); font-size: 12.5px; font-weight: 600; color: var(--c-ink-soft); }
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__meta svg { width: 14px; height: 14px; }

.section-cta-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }

/* ==========================================================================
   El Proceso — franja oscura con íconos (elemento distintivo)
   ========================================================================== */
.process-strip {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 56px 36px;
}
.process-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,50,34,0.90), rgba(18,50,34,0.84));
}
.process-strip__track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.process-strip__track::before {
  content: '';
  position: absolute; top: 26px; left: 4%; right: 4%;
  height: 1px; background: rgba(255,255,255,0.22);
}
.process-strip__item { position: relative; text-align: center; flex: 1; min-width: 0; }
.process-strip__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; position: relative; z-index: 1;
}
.process-strip__item.is-active .process-strip__icon { background: var(--c-orange); border-color: var(--c-orange); }
.process-strip__icon svg { width: 22px; height: 22px; color: var(--c-white); }
.process-strip__item span { font-family: var(--f-heading); font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.92); line-height: 1.3; }

.process-detail { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, auto); grid-auto-flow: column; gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); margin-top: 64px; border-radius: var(--radius); overflow: hidden; }
.process-detail__item {
  background: var(--c-white); display: grid; grid-template-columns: 180px 1fr;
  -webkit-appearance: none; appearance: none;
  width: 100%;
  font: inherit; color: inherit; text-align: left;
  margin: 0; padding: 0; border: none;
}
.process-detail__item img { width: 100%; height: 100%; object-fit: cover; }
.process-detail__copy { padding: 28px; }
.process-detail__copy .process-detail__num { font-family: var(--f-heading); font-size: 12px; font-weight: 700; color: var(--c-orange-700); display: block; margin-bottom: 6px; }
.process-detail__copy h3 { font-size: 19px; margin: 6px 0 10px; }
.process-detail__copy p { font-size: 14.5px; }

/* ==========================================================================
   Los Frescos — tarjetas de producto + modal
   ========================================================================== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-white);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.product-card[data-open-product] {
  cursor: pointer;
  -webkit-appearance: none; appearance: none;
  display: block; width: 100%;
  font: inherit; color: inherit; text-align: left;
  margin: 0; padding: 0;
}
.product-card:hover { box-shadow: 0 16px 36px rgba(23,67,31,0.10); transform: translateY(-3px); }
.product-card:focus-visible { outline: 2px solid var(--c-green-700); outline-offset: -2px; }
.product-card__img { aspect-ratio: 4/3; background: var(--c-cream); overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 22px; transition: transform .4s var(--ease); }
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body { padding: 20px 20px 22px; }
.product-card h3 { font-size: 17px; margin-bottom: 6px; }
.product-card__season { font-size: 13px; color: var(--c-ink-soft); margin-bottom: 14px; }
.product-card .link-cta { font-size: 13.5px; }
.product-card.is-soon { opacity: 0.65; }
.product-card__soon-tag { font-family: var(--f-heading); font-size: 11px; font-weight: 700; color: var(--c-orange-700); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }

/* Link tipo texto con flecha — CTA de tarjetas de producto/historia */
.link-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-heading); font-weight: 600; font-size: 14px;
  color: var(--c-green-700); border: none; background: none; padding: 0; cursor: pointer;
}
.link-cta::after { content: '\2192'; transition: transform .2s var(--ease); }
.link-cta:hover::after { transform: translateX(3px); }
.link-cta:disabled { color: var(--c-ink-soft); cursor: not-allowed; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-heading); font-weight: 600; font-size: 14px;
  color: var(--c-green-700);
}
.back-link:hover { text-decoration: underline; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,38,19,0.55);
  z-index: 800; display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--c-white); border-radius: 6px; max-width: 760px; width: 100%;
  max-height: 88vh; overflow: auto; display: grid; grid-template-columns: 1fr 1.1fr;
  position: relative;
}
.modal__media { background: var(--c-green-100); display: flex; align-items: center; justify-content: center; padding: 40px; }
.modal__media img { max-height: 220px; }
.modal__body { padding: 40px 40px 40px 6px; }
.modal__close { position: absolute; top: 16px; right: 18px; border: none; background: none; font-size: 24px; color: var(--c-ink-soft); }
.modal__body { padding: 40px 40px 40px 6px; display: flex; flex-direction: column; }
.modal__close { position: absolute; top: 16px; right: 18px; border: none; background: none; font-size: 24px; color: var(--c-ink-soft); }

/* Base de "Información adicional" (nutrición / Scoville): color y tipografía.
   Los @media de más abajo solo ajustan tamaños/espaciados por pantalla. */
.modal__spec-title { font-family: var(--f-heading); font-weight: 700; color: var(--c-green-700); text-transform: uppercase; letter-spacing: 0.06em; }
.modal__spec-subtitle { color: var(--c-ink-soft); }
.modal__nutrition-item span { color: var(--c-ink-soft); }
.modal__nutrition-item strong { color: var(--c-ink); font-weight: 700; }
.modal__scoville { display: block; color: var(--c-orange-700); font-family: var(--f-heading); font-weight: 700; }
.modal__spec-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.modal__scoville-level {
  font-family: var(--f-heading); font-weight: 700; font-size: 11px;
  border-radius: 20px; padding: 2px 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.modal__scoville-level--mild   { color: var(--c-green-700);  background: var(--c-green-100); }
.modal__scoville-level--medium { color: var(--c-orange-700); background: rgba(244,124,32,0.14); }
.modal__scoville-level--hot    { color: #C0392B;             background: rgba(192,57,43,0.12); }
.modal__scoville-level:empty { display: none; }
.modal__body > .btn { margin-top: auto; align-self: flex-start; }
.modal__season { font-family: var(--f-heading); font-size: 12.5px; font-weight: 700; color: var(--c-green-700); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.modal h3 { font-size: 26px; margin-bottom: 14px; }
.modal__presentations { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.modal__presentations span { font-size: 12.5px; font-family: var(--f-heading); font-weight: 600; background: var(--c-cream); border: 1px solid var(--c-line); padding: 6px 12px; border-radius: 20px; }


/* ==========================================================================
   Recetas
   ========================================================================== */
.recipe-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.recipe-filters button {
  font-family: var(--f-heading); font-size: 13px; font-weight: 600;
  border: 1px solid var(--c-line); background: var(--c-white); color: var(--c-ink-soft);
  padding: 9px 18px; border-radius: 20px; transition: all .2s var(--ease);
}
.recipe-filters button.active, .recipe-filters button:hover { background: var(--c-green-700); border-color: var(--c-green-700); color: var(--c-white); }
.recipe-search { position: relative; max-width: 420px; margin: 0 auto 56px; }
.recipe-search input {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--c-line); border-radius: 24px;
  font-family: var(--f-body); font-size: 15px;
}
.recipe-search input:focus { border-color: var(--c-green-700); outline: none; }

/* ---------- Modal de Historias ---------- */
.story-modal-overlay .modal {
  max-width: 820px;
  grid-template-columns: 1fr 1fr;
  height: min(80vh, 520px);
  max-height: 88vh;
  overflow: hidden;
}
.story-modal-overlay .modal__media--cover { padding: 0; height: 100%; overflow: hidden; }
.story-modal-overlay .modal__media--cover img { width: 100%; height: 100%; max-height: none; object-fit: cover; }
.story-modal-overlay .modal__body { height: 100%; overflow-y: auto; padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.story-modal-overlay .modal__body h3 { color: var(--c-green-700); }
.story-modal-overlay .modal__close {
  top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-white); box-shadow: 0 2px 10px rgba(15,38,19,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1;
}

@media (max-width: 600px) {
  .story-modal-overlay .modal {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    height: auto;
    max-height: calc(100vh - 12px);
    grid-template-columns: 1fr;
    grid-template-rows: 180px minmax(0, 1fr);
    overflow: hidden;
  }
  .story-modal-overlay .modal__media--cover { height: 180px; }
  .story-modal-overlay .modal__body { height: auto; max-height: none; overflow-y: auto; padding: 20px 20px 24px; }
}

/* ---------- Modal de Recetas (rediseño) ---------- */
.recipe-modal-overlay .modal {
  max-width: 940px;
  grid-template-columns: 0.85fr 1.15fr;
  height: min(88vh, 640px);
  max-height: 88vh;
  overflow: hidden;
}
.recipe-modal-overlay .modal__media--cover { padding: 0; height: 100%; overflow: hidden; }
.recipe-modal-overlay .modal__media--cover img { width: 100%; height: 100%; max-height: none; object-fit: cover; }
.recipe-modal-overlay .modal__body { height: 100%; overflow-y: auto; padding: 40px 44px; }
.recipe-modal-overlay .modal__close {
  top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-white); box-shadow: 0 2px 10px rgba(15,38,19,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1;
}
.modal__recipe-category {
  font-family: var(--f-heading); font-size: 12px; font-weight: 700;
  color: var(--c-orange-700); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px;
}
.modal__recipe-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 14px 0 18px; color: var(--c-ink-soft); font-size: 14px; }
.modal__recipe-meta-item { display: flex; align-items: center; gap: 6px; }
.modal__recipe-meta-item svg { width: 16px; height: 16px; color: var(--c-orange-700); }
.modal__recipe-meta-dot { color: var(--c-line); }
.modal__recipe-section { margin-top: 22px; }
.modal__recipe-list, .modal__recipe-steps { padding-left: 20px; color: var(--c-ink-soft); display: flex; flex-direction: column; gap: 6px; }
.recipe-modal-overlay .modal__body h3 { color: var(--c-green-700); }
.modal__recipe-section h4 { font-family: var(--f-heading); font-size: 16px; font-weight: 700; color: var(--c-green-700); margin-bottom: 10px; }
.modal__recipe-divider { border: none; border-top: 2px solid var(--c-orange); margin: 24px 0; }

@media (max-width: 600px) {
 .recipe-modal-overlay .modal {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    height: auto;
    max-height: calc(100vh - 12px);
    grid-template-columns: 1fr;
    grid-template-rows: 180px minmax(0, 1fr);
    overflow: hidden;
  }
  .recipe-modal-overlay .modal__media--cover {
    height: 180px;
  }
  .recipe-modal-overlay .modal__body {
    height: auto;
    max-height: none;
    overflow-y: auto;
    padding: 20px 20px 24px;
  }
  .modal__recipe-category { font-size: 10px; }
  .modal__recipe-meta { font-size: 12px; gap: 8px; margin: 8px 0 12px; }
  .modal__recipe-section { margin-top: 16px; }
}

/* ---------- Modal de "El Proceso" ---------- */
.process-detail__item { cursor: pointer; transition: background .2s var(--ease); }
.process-detail__item:hover { background: var(--c-cream); }
.process-detail__item:focus-visible { outline: 2px solid var(--c-green-700); outline-offset: -2px; background: var(--c-cream); }
.process-modal-overlay .modal {
  max-width: 860px;
  grid-template-columns: 0.9fr 1.1fr;
  height: min(80vh, 560px);
  max-height: 88vh;
  overflow: hidden;
}
.process-modal-overlay .modal__media--cover { padding: 0; height: 100%; overflow: hidden; }
.process-modal-overlay .modal__media--cover img { width: 100%; height: 100%; max-height: none; object-fit: cover; }
.process-modal-overlay .modal__body { height: 100%; overflow-y: auto; padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.process-modal-overlay .modal__body h3 { color: var(--c-green-700); }
.process-modal-overlay .modal__close {
  top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-white); box-shadow: 0 2px 10px rgba(15,38,19,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1;
}
.modal__process-num { font-family: var(--f-heading); font-size: 12.5px; font-weight: 700; color: var(--c-green-700); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.modal__process-tag { font-family: var(--f-heading); font-size: 12px; font-weight: 700; color: var(--c-orange-700); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }

@media (max-width: 600px) {
  .process-modal-overlay .modal {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    height: auto;
    max-height: calc(100vh - 12px);
    grid-template-columns: 1fr;
    grid-template-rows: 180px minmax(0, 1fr);
    overflow: hidden;
  }
  .process-modal-overlay .modal__media--cover { height: 180px; }
  .process-modal-overlay .modal__body { height: auto; max-height: none; overflow-y: auto; padding: 20px 20px 24px; }
}

/* ==========================================================================
   Formularios
   ========================================================================== */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-family: var(--f-heading); font-size: 12.5px; font-weight: 700; color: var(--c-ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
  padding: 13px 14px; font-family: var(--f-body); font-size: 15px; color: var(--c-ink); background: var(--c-white);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-green-700); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--c-ink-soft); margin-top: 4px; }
.form-note.is-error { color: #C0392B; font-weight: 600; }

/* ==========================================================================
   Contacto / info
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 0.85fr; gap: 64px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__item { display: flex; gap: 16px; }
.contact-info__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--c-green-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { width: 18px; height: 18px; color: var(--c-green-700); }
.contact-info__item h4 { font-size: 14.5px; margin-bottom: 4px; }
.contact-info__item p, .contact-info__item a { font-size: 14.5px; margin: 0; }
.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.contact-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--c-line); display: flex; align-items: center; justify-content: center; }
.contact-social a:hover { background: var(--c-green-700); border-color: var(--c-green-700); }
.contact-social img { width: 36px; height: 36px; border-radius: 50%; }
#map { width: 100%; height: 340px; border-radius: var(--radius); background: var(--c-cream); }

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-band { text-align: center; padding: 90px 0; background: var(--c-green-700); color: var(--c-white); position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(28px, 3.6vw, 42px); max-width: 620px; margin: 0 auto 28px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-green-900); color: rgba(255,255,255,0.75); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-grid img.footer-logo { height: 100px; margin-bottom: 16px; width: 150px; }
.footer-grid p { color: rgba(255,255,255,0.62); font-size: 14px; max-width: 260px; }
.footer-col h4 { font-family: var(--f-heading); font-size: 13px; color: var(--c-white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: rgba(255,255,255,0.7); margin-bottom: 10px; overflow-wrap: break-word; word-break: break-word; }
.footer-col a:hover { color: var(--c-white); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--c-orange); border-color: var(--c-orange); }
.footer-social img { width: 34px; height: 34px; border-radius: 50%; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--c-white); }
.footer-legal { display: flex; gap: 20px; }

/* ==========================================================================
   404
   ========================================================================== */
.notfound { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 28px; }
.notfound span { font-family: var(--f-display); font-size: 90px; font-weight: 700; color: var(--c-green-100); line-height: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .split, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 0; }
  .value-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { gap: 32px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip__track { flex-wrap: wrap; row-gap: 32px; }
  .process-strip__track::before { display: none; }
  .process-strip__item { flex: 0 0 calc(25% - 8px); }
  .process-detail { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; }
  .feature-duo { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  :root { --header-h: var(--header-h-mobile); }
  .process-detail__item { grid-template-columns: 1fr; }
  .process-detail__item img { height: 220px; }
  .logo-mark__icon { height: 32px; }
  .footer-logo-full { height: 85px; }
  .site-header__logo img { height: 42px; }
  .site-header__nav, .site-header__actions .lang-picker, .btn-grower-safety span.btn-grower-safety__label { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 64px 0; }
  .hero { min-height: 520px; }
  .hero--sub { min-height: 380px; }
  .hero__content { padding-bottom: 48px; }
  .value-grid, .product-grid, .card-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; gap: 28px; }
  .mv-item { border-left: none; border-top: 2px solid rgba(255,255,255,0.25); padding-left: 0; padding-top: 20px; }
  .process-strip__item { flex: 0 0 calc(50% - 8px); }
  .process-strip { padding: 40px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .section-cta-row { flex-direction: column; align-items: flex-start; }
  .feature-card { aspect-ratio: 3 / 4; align-items: flex-start; }
  .feature-card__bg { object-position: top right; }
  .feature-card__overlay { background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 42%, rgba(255,255,255,0.1) 72%, rgba(255,255,255,0) 85%); }
  .feature-card__content { max-width: 100%; padding: 28px 22px; }
  
  
}
  
/* ==========================================================================
   Imágenes responsivas — variantes WebP en 480w/900w/1600w (/content/images/r/)
   El navegador pide el archivo del breakpoint activo, no el más grande siempre.
   ========================================================================== */
.bg-home-hero    { background-image: url('/content/images/r/home_splash_es-1600w.webp'); }
.bg-home-hero-en { background-image: url('/content/images/r/home_splash_en-1600w.webp'); }
.bg-we-hero      { background-image: url('/content/images/r/hero_nosotros-1600w.webp'); }
.bg-stories-hero { background-image: url('/content/images/r/hero_historias-1600w.webp'); }
.bg-process-hero { background-image: url('/content/images/r/campo_panorama-1600w.webp'); background-position: center top; }
.bg-products-hero{ background-image: url('/content/images/r/anaheim_plant-1600w.webp'); }
.bg-recipes-hero { background-image: url('/content/images/r/recetas_hero-1600w.webp'); }
.bg-recipes-hero-en{ background-image: url('/content/images/r/recetas_hero-1600w.webp'); }
.bg-contact-hero { background-image: url('/content/images/r/team-1600w.webp'); }
.bg-process-strip-home { background-image: url('/content/images/r/caribe_plant-1600w.webp'); }
.bg-process-strip-page { background-image: url('/content/images/r/caribe_plant-1600w.webp'); }

@media (max-width: 900px) {
  .bg-home-hero    { background-image: url('/content/images/r/home_splash_es-900w.webp'); }
  .bg-home-hero-en { background-image: url('/content/images/r/home_splash_en-900w.webp'); }
  .bg-we-hero      { background-image: url('/content/images/r/hero_nosotros-900w.webp'); }
  .bg-stories-hero { background-image: url('/content/images/r/hero_historias-900w.webp'); }
  .bg-process-hero { background-image: url('/content/images/r/campo_panorama-900w.webp'); }
  .bg-products-hero{ background-image: url('/content/images/r/anaheim_plant-900w.webp'); }
  .bg-recipes-hero { background-image: url('/content/images/r/recetas_hero-900w.webp'); }
  .bg-recipes-hero-en{ background-image: url('/content/images/r/recetas_hero-900w.webp'); }
  .bg-contact-hero { background-image: url('/content/images/r/team-900w.webp'); }
  .bg-process-strip-home { background-image: url('/content/images/r/caribe_plant-900w.webp'); }
  .bg-process-strip-page { background-image: url('/content/images/r/caribe_plant-900w.webp'); }
}

@media (max-width: 480px) {
  .bg-home-hero    { background-image: url('/content/images/r/home_splash_es-900w.webp'); }
  .bg-home-hero-en { background-image: url('/content/images/r/home_splash_en-900w.webp'); }
  .bg-we-hero      { background-image: url('/content/images/r/hero_nosotros-900w.webp'); }
  .bg-stories-hero { background-image: url('/content/images/r/hero_historias-900w.webp'); }
  .bg-process-hero { background-image: url('/content/images/r/campo_panorama-900w.webp'); }
  .bg-products-hero{ background-image: url('/content/images/r/anaheim_plant-480w.webp'); }
  .bg-recipes-hero { background-image: url('/content/images/r/recetas_hero-480w.webp'); }
  .bg-recipes-hero-en{ background-image: url('/content/images/r/recetas_hero-480w.webp'); }
  .bg-contact-hero { background-image: url('/content/images/r/team-480w.webp'); }
  .bg-process-strip-home { background-image: url('/content/images/r/caribe_plant-480w.webp'); }
  .bg-process-strip-page { background-image: url('/content/images/r/caribe_plant-480w.webp'); }
}


/* =========================================================
   MODAL LOS FRESCOS — RESPONSIVE FINAL
   DEJAR ESTE BLOQUE AL FINAL DEL CSS
   ========================================================= */


/* ---------------------------------------------------------
   DESKTOP / LAPTOP
   --------------------------------------------------------- */

@media (min-width: 901px) {

  .modal {
    width: min(1000px, calc(100vw - 30px));
    height: min(820px, calc(100vh - 20px));
    max-height: calc(100vh - 20px);

    grid-template-columns: 1fr 1fr;

    overflow: hidden;
  }

  .modal__body {
    padding: clamp(16px, 2.2vh, 30px)
             clamp(22px, 2.5vw, 34px);

    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /*
   * La información usa 2 columnas únicamente
   * cuando realmente tiene espacio.
   */
  .modal__nutrition-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));

    gap: 0 24px;

    width: 100%;
  }

  .modal__nutrition-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;

    align-items: center;

    width: 100%;
    min-width: 0;

    column-gap: 18px;

    padding: 6px 8px;

    font-size: 11px;
    line-height: 1.25;
  }

  .modal__nutrition-item span {
    min-width: 0;

    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .modal__nutrition-item strong {
    margin: 0;

    white-space: nowrap;

    text-align: right;
    font-size: 11px;
  }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (min-width: 601px) and (max-width: 900px) {

  .modal {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);

    grid-template-columns: 40% 60%;

    overflow: hidden;
  }

  .modal__body {
    padding: 18px 22px;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .modal__media {
    height: 100%;
  }

  .modal__media img {
    width: 85%;
    height: 85%;

    object-fit: contain;
  }

  /*
   * Una sola columna aquí evita textos pegados.
   */
  .modal__nutrition-info {
    display: grid;
    grid-template-columns: 1fr;

    gap: 0;

    width: 100%;
  }

  .modal__nutrition-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;

    align-items: center;

    min-height: 28px;

    padding: 4px 7px;

    column-gap: 18px;

    font-size: 10px;
  }

  .modal__nutrition-item strong {
    font-size: 10px;
    white-space: nowrap;
  }

}


/* ---------------------------------------------------------
   CELULAR
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .modal-overlay {
    padding: 6px;

    align-items: center;
    justify-content: center;

    overflow: hidden;
  }



  .modal {
    /*
     * IMPORTANTE:
     * dejamos de obligarlo a medir 100vh.
     * Ahora mide solamente lo que necesita.
     */
    width: calc(100vw - 12px);
    height: auto;
    max-height: calc(100vh - 12px);

    display: grid;

    grid-template-columns: 1fr;
    grid-template-rows: 110px minmax(0, 1fr);

    overflow: hidden;

    border-radius: 8px;
  }


  /* Imagen arriba y compacta */

  .modal__media {
    width: 100%;
    height: 110px;

    min-height: 0;

    padding: 8px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal__media img {
    width: auto;
    height: 95px;
    max-height: 95px;

    object-fit: contain;
  }


  /* Información */

 .modal__body {
    width: 100%;
    height: auto;

    min-width: 0;
    min-height: 0;

    padding: 9px 16px 12px;

    overflow-y: auto;
    overflow-x: hidden;

    display: block;
  }


  .modal__close {
    top: 8px;
    right: 10px;

    font-size: 20px;
  }


  .modal__season {
    margin-bottom: 2px;

    font-size: 8.5px;
  }


  .modal__body h3 {
    margin: 0 0 4px;

    font-size: 20px;
    line-height: 1.05;
  }


  .modal__body > p {
    margin: 0 0 6px;

    font-size: 9px;
    line-height: 1.25;
  }


  /* Presentaciones */

  .upper.eyebrow {
    margin-bottom: 3px !important;

    font-size: 8px;
  }

  .modal__presentations {
    margin: 4px 0 7px;
  }

  .modal__presentations span {
    padding: 4px 8px;

    font-size: 8.5px;
  }


  /* Separador */

  .modal__specs {
    margin-top: 6px;
    padding-top: 7px;
  }


  .modal__spec-section {
    margin-bottom: 6px;
  }


  .modal__spec-title {
    margin-bottom: 1px;

    font-size: 8.5px;
    line-height: 1.2;
  }


  .modal__spec-subtitle {
    margin: 0 0 4px;

    font-size: 7.5px;
    line-height: 1.2;
  }


  /*
   * En celular usamos DOS columnas,
   * pero cada dato pone nombre arriba
   * y valor abajo.
   *
   * Así reducimos mucho la altura sin
   * pegar textos.
   */

  .modal__nutrition-info {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 10px;
    row-gap: 0;

    width: 100%;

    margin-top: 3px;
    padding: 0;
  }


  .modal__nutrition-item {
    display: block;

    width: 100%;
    min-width: 0;

    min-height: 31px;

    padding: 3px 4px;

    border-bottom: 1px solid var(--c-line);

    font-size: 7.5px;
    line-height: 1.15;
  }


  .modal__nutrition-item span {
    display: block;

    width: 100%;

    margin-bottom: 1px;

    white-space: nowrap;

    color: var(--c-ink-soft);
  }


  .modal__nutrition-item strong {
    display: block;

    width: 100%;

    margin: 0;

    font-size: 8px;
    line-height: 1.15;
    font-weight: 700;

    white-space: nowrap;

    text-align: left;
  }


  /* Scoville */

  .modal__scoville-section {
    margin-top: 6px;
    margin-bottom: 6px;
  }


  .modal__scoville {
    margin: 2px 0 0;

    font-size: 8.5px;
  }

  .modal__spec-title-row {
    gap: 6px;
  }
  
  .modal__scoville-level {
    font-size: 7.5px;
    padding: 2px 7px;
  }


  /* Botón: ya NO lo mandamos hasta abajo */

  .modal__body > .btn {
    margin-top: 4px;

    padding: 7px 14px;

    font-size: 9px;

    align-self: auto;
  }

}


/* ---------------------------------------------------------
   CELULARES BAJOS
   --------------------------------------------------------- */

@media (max-width: 600px) and (max-height: 650px) {

  .modal {
    grid-template-rows: 75px minmax(0, 1fr);
  }

  .modal__media {
    height: 75px;
    padding: 4px;
  }

  .modal__media img {
    height: 65px;
    max-height: 65px;
  }

  .modal__body {
    padding-top: 6px;
    padding-bottom: 7px;
  }

  .modal__body h3 {
    font-size: 17px;
  }

  .modal__body > p {
    font-size: 8px;
    margin-bottom: 4px;
  }

  .modal__nutrition-item {
    min-height: 26px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

}

/* Aviso de cookies — barra fija informativa, no bloquea nada */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 16px;
  padding: 16px 24px;
  background: var(--c-green-900);
  color: var(--c-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 14px; max-width: 720px; }
.cookie-banner a { color: var(--c-white); text-decoration: underline; }
.cookie-banner .btn { flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}

/* Respeta la preferencia del sistema de reducir animaciones */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}