/* ============================================================
   DAIRYCO — SISTEMA DE DISEÑO 2026
   ============================================================ */

/* ── FUENTES ── */
@font-face { font-family:'Cruyff Sans'; src:url('../fonts/CruyffSans-Light.ttf') format('truetype'); font-weight:300; font-display:swap; }
@font-face { font-family:'Cruyff Sans'; src:url('../fonts/CruyffSans-Regular.ttf') format('truetype'); font-weight:400; font-display:swap; }
@font-face { font-family:'Cruyff Sans'; src:url('../fonts/CruyffSans-Medium.ttf') format('truetype'); font-weight:500; font-display:swap; }
@font-face { font-family:'Cruyff Sans'; src:url('../fonts/CruyffSans-Bold.ttf') format('truetype'); font-weight:700; font-display:swap; }

/* ── VARIABLES ── */
:root {
  --naranja:        #f6be06;
  --verde:          #007934;
  --verde-oscuro:   #1a5632;
  --verde-vibrante: #76bc21;
  --crema-a:        #fef9e5;
  --crema-b:        #fef1ca;
  --white:          #ffffff;
  --black:          #111111;
  --font:           'Cruyff Sans', system-ui, sans-serif;
  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── UTILIDADES ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.container { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: clamp(1.5rem, 4vw, 3rem); }

/* ════════════════════════════════════
   NAVEGACIÓN
════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  transition: background 0.3s;
}
.nav--scrolled { background: var(--verde); }

.nav__logo { margin-right: 0; display: flex; align-items: center; }
.nav__logo img { height: 26px; width: auto; }

.nav__links { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem); margin-right: auto; }
.nav__link { font-size: 0.9375rem; color: var(--white); opacity: 0.8; transition: opacity 0.15s; white-space: nowrap; position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--white); transition: width 0.3s var(--ease); }
.nav__link:hover, .nav__link--active { opacity: 1; }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }

.nav__social { display: flex; align-items: center; gap: 1rem; padding-left: clamp(1rem, 2vw, 2rem); border-left: 1px solid rgba(255,255,255,0.2); }
.nav__social a { display: flex; opacity: 0.7; transition: opacity 0.15s, transform 0.15s; }
.nav__social a:hover { opacity: 1; transform: translateY(-2px); }
.nav__social img { width: 20px; height: 20px; filter: brightness(0) invert(1); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile { position: fixed; inset: 0; background: var(--verde-oscuro); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.nav__mobile.is-open { opacity: 1; pointer-events: all; }
.nav__mobile .nav__link { font-size: clamp(2rem, 8vw, 3rem); font-weight: 300; opacity: 0.9; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; background: var(--verde-oscuro); }
.hero video, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__poster { position: absolute; inset: 0; z-index: 0; }
.hero__poster img { width: 100%; height: 100%; object-fit: cover; }
.hero__poster--vertical { display: none; }
.hero__embed { z-index: 1; }

/* Embed Vimeo a pantalla completa (técnica cover, sin barras) */
.hero__embed { position: absolute; inset: 0; overflow: hidden; }
.hero__embed iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
/* Horizontal 16:9 — escala para cubrir el viewport */
.hero__embed--horizontal iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
}
/* Vertical 9:16 — escala para cubrir el viewport */
.hero__embed--vertical iframe {
  width: 100vw;
  height: 177.78vw;
  min-height: 100vh;
  min-width: 56.25vh;
}
.hero__embed--vertical { display: none; }

/* ════════════════════════════════════
   SECCIONES SPLIT (favoritos, historia, consejos)
════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }

.split__content {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  gap: 1.5rem;
}

.split__image { overflow: hidden; }
.split__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.split:hover .split__image img { transform: scale(1.03); }

.split__title { font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 400; line-height: 0.92; letter-spacing: 0.01em; }
.split__text { font-size: clamp(0.95rem, 1.5vw, 1.15rem); line-height: 1.6; max-width: 36ch; }
.split__btn {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 9999px; border: 1px solid;
  transition: background 0.3s, color 0.3s;
  width: fit-content;
}

/* Favoritos */
.section-favoritos .split__content { background: var(--naranja); }
.section-favoritos .split__title   { color: var(--verde); }
.section-favoritos .split__text    { color: var(--verde-oscuro); opacity: 0.85; }
.section-favoritos .split__btn     { border-color: var(--verde-oscuro); color: var(--verde-oscuro); }
.section-favoritos .split__btn:hover { background: var(--verde-oscuro); color: var(--white); }

/* Historia */
.section-historia .split__content { background: var(--verde-oscuro); }
.section-historia .split__title   { color: var(--verde-vibrante); }
.section-historia .split__btn     { border-color: var(--white); color: var(--white); }
.section-historia .split__btn:hover { background: var(--white); color: var(--verde-oscuro); }

/* Consejos */
.section-consejos .split__content { background: var(--naranja); }
.section-consejos .split__title   { color: var(--verde); }
.section-consejos .split__text    { color: var(--verde-oscuro); opacity: 0.85; }
.section-consejos .split__btn     { border-color: var(--verde-oscuro); color: var(--verde-oscuro); }
.section-consejos .split__btn:hover { background: var(--verde-oscuro); color: var(--white); }

/* ════════════════════════════════════
   DESTACADOS
════════════════════════════════════ */
.section-destacados { background: var(--crema-a); padding: clamp(4rem, 8vw, 7rem) 0; }

.section-destacados__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 4rem); }
.section-destacados__title  { font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 400; color: var(--verde); line-height: 0.92; letter-spacing: 0.01em; }
.section-destacados__tagline { font-size: clamp(0.95rem, 1.5vw, 1.15rem); color: var(--verde); font-weight: 500; max-width: 28ch; line-height: 1.4; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.product-card { border-radius: 16px; overflow: hidden; display: block; transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

.product-card__img {
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1.5rem;
  aspect-ratio: 9 / 16;
  background: var(--crema-b);
  transition: background 0.3s;
}
.product-card:hover .product-card__img { background: var(--naranja); }
.product-card__img img { height: 65%; width: auto; object-fit: contain; transition: transform 0.5s var(--ease); }
.product-card:hover .product-card__img img { transform: translateY(-10px) rotate(-2deg); }
.product-card__name { padding: 0.75rem 1.5rem 1.25rem; font-size: 0.875rem; color: var(--verde-oscuro); text-align: center; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer { background: var(--verde); color: var(--white); padding: clamp(3rem, 5vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1rem;
  align-items: start;
}

.footer-col nav { display: flex; flex-direction: column; }
.footer-col-title { font-size: 0.975rem; font-weight: 500; color: var(--white); margin-bottom: 1rem; }
.footer-col nav a, .site-footer a { font-size: 0.975rem; color: rgba(255,255,255,0.6); line-height: 1.7; transition: color 0.15s; }
.footer-col nav a:hover, .site-footer a:hover { color: var(--white); }

.footer-col--spaced { display: flex; flex-direction: column; }
.footer-col--spaced nav { display: flex; flex-direction: column; gap: 10px; }

.footer-sac-subtitle { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; margin: -0.6rem 0 0.75rem; }
.footer-sac-address { font-size: 0.975rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; min-height: 100%; }

.footer-right__social { display: flex; gap: 0.75rem; }
.footer-right__social a { display: flex; }
.footer-right__social img { width: 20px; height: 20px; filter: brightness(0) invert(1); opacity: 0.8; transition: opacity 0.15s; }
.footer-right__social a:hover img { opacity: 1; }

.footer-right__logos { display: flex; flex-direction: column; align-items: flex-end; gap: 1.25rem; }
.footer-right__logos img { filter: brightness(0) invert(1); width: 140px; height: auto; object-fit: contain; }

.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

/* ════════════════════════════════════
   PÁGINA JUGOS — HERO
════════════════════════════════════ */
.jugos-hero { position: relative; height: 100vh; min-height: 420px; overflow: hidden; }
.jugos-hero__bg { position: absolute; inset: 0; }
.jugos-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.jugos-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.3) 100%); }

/* ════════════════════════════════════
   PÁGINA JUGOS — ACORDEÓN
════════════════════════════════════ */
.jugos-accordion { background: var(--naranja); }
.jugos-accordion__item { border-bottom: 1px solid rgba(26,86,50,0.2); overflow: hidden; }

.jugos-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.3rem clamp(1.5rem, 5vw, 4rem);
  font-family: var(--font);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 400;
  color: var(--verde-oscuro);
  background: var(--naranja);
  cursor: pointer;
  text-align: center;
  border: none;
  transition: background 0.2s;
}
.jugos-accordion__trigger:hover { background: #f0b800; }
.jugos-accordion__trigger.is-open { background: var(--naranja); color: var(--verde-oscuro); }

.jugos-accordion__icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--verde-oscuro);
  transition: transform 0.35s var(--ease), opacity 0.2s;
  opacity: 0.6;
}
.jugos-accordion__trigger:hover .jugos-accordion__icon { opacity: 1; transform: translateY(3px); }
.jugos-accordion__trigger.is-open .jugos-accordion__icon { transform: rotate(180deg); opacity: 1; }

.jugos-accordion__content { max-height: 0; overflow: hidden; transition: max-height 0.7s var(--ease); }
.jugos-accordion__content.is-open { max-height: 2000px; }

/* ════════════════════════════════════
   PANEL PRODUCTO (dentro del acordeón)
════════════════════════════════════ */
.jugos-panel { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }

.jugos-panel__img-wrap {
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  min-height: 480px;
}
.jugos-panel__img-wrap img {
  height: clamp(280px, 35vw, 460px);
  width: auto; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}
.jugos-accordion__item.is-active .jugos-panel__img-wrap img { animation: floatProduct 3.5s ease-in-out infinite; }

.jugos-panel__info {
  background: var(--crema-a);
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
}

.jugos-panel__title { font-family: var(--font); font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 300; color: var(--verde-oscuro); letter-spacing: -0.03em; line-height: 1; }
.jugos-panel__desc { font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: var(--verde-oscuro); line-height: 1.65; max-width: 42ch; }

.jugos-panel__fruits { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.jugos-panel__fruit-label { font-size: 0.9rem; color: var(--verde-oscuro); opacity: 0.6; }
.jugos-panel__fruit-row { display: flex; align-items: center; gap: 2rem; }
.jugos-panel__fruit-item { display: flex; align-items: center; gap: 0.5rem; }
.jugos-panel__fruit-item img { width: 88px; height: 88px; object-fit: contain; }
.jugos-panel__fruit-count { font-size: 3.2rem; font-weight: 700; color: var(--verde-oscuro); line-height: 1; }

.jugos-panel__presentaciones {
  grid-column: 1 / -1;
  background: var(--verde);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 8vw, 8rem);
  display: flex; align-items: center; justify-content: space-around;
  gap: clamp(2.5rem, 5.5vw, 5.75rem);
}

.jugos-panel__bottles { display: flex; align-items: flex-end; gap: clamp(1rem, 2.5vw, 2rem); }
.jugos-panel__bottle { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer; transition: transform 0.25s var(--ease); }
.jugos-panel__bottle:hover { transform: translateY(-6px); }
.jugos-panel__bottle img { object-fit: contain; width: auto; }
.jugos-panel__bottle img.pres-h1 { height: 52px; }
.jugos-panel__bottle img.pres-h2 { height: 68px; }
.jugos-panel__bottle img.pres-h3 { height: 82px; }
.jugos-panel__bottle img.pres-h4 { height: 96px; }
.jugos-panel__bottle img.pres-h5 { height: 116px; }
.jugos-panel__bottle span { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.06em; transition: color 0.15s; }
.jugos-panel__bottle.is-selected span { color: var(--naranja); }
.jugos-panel__bottle.is-selected img { filter: drop-shadow(0 0 14px rgba(246,190,6,0.55)); }

.jugos-panel__pres-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--naranja); margin-bottom: 0.75rem; letter-spacing: -0.02em; line-height: 1; }
.jugos-panel__pres-desc { font-size: 0.875rem; line-height: 1.7; color: var(--naranja); max-width: 44ch; }

/* ════════════════════════════════════
   PÁGINA CONSEJOS — HERO
════════════════════════════════════ */
.consejos-hero { position: relative; height: 100vh; min-height: 500px; overflow: hidden; }
.consejos-hero__bg { position: absolute; inset: 0; }
.consejos-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.consejos-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.3) 100%); }

/* ════════════════════════════════════
   PÁGINA CONSEJOS — BLOQUES SPLIT
   Layout: 50% contenido (color) | 50% imagen
   Texto siempre izquierda, imagen siempre derecha
════════════════════════════════════ */
.consejo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Columna de contenido */
.consejo-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  gap: 2rem;
}

/* Título editorial grande */
.consejo-split__title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Cuerpo de texto */
.consejo-split__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.consejo-split__body p {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  line-height: 1.65;
}
.consejo-split__subhead {
  font-weight: 500;
  margin-top: 0.75rem;
}

/* Columna imagen */
.consejo-split__image {
  overflow: hidden;
}
.consejo-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.consejo-split:hover .consejo-split__image img { transform: scale(1.03); }

/* ── Variante amarillo (bloques 1 y 3) ── */
.consejo-split--amarillo .consejo-split__content { background: var(--naranja); }
.consejo-split--amarillo .consejo-split__title   { color: var(--verde-oscuro); }
.consejo-split--amarillo .consejo-split__body p  { color: var(--verde-oscuro); }
.consejo-split--amarillo .consejo-split__body strong { color: var(--verde-oscuro); font-weight: 500; }
.consejo-split--amarillo .consejo-split__subhead { color: var(--verde-oscuro); }

/* ── Variante verde (bloque 2) ── */
.consejo-split--verde .consejo-split__content { background: var(--verde-oscuro); }
.consejo-split--verde .consejo-split__title   { color: var(--verde-vibrante); }
.consejo-split--verde .consejo-split__body p  { color: rgba(255,255,255,0.85); }
.consejo-split--verde .consejo-split__body strong { color: var(--white); font-weight: 500; }

/* ════════════════════════════════════
   PÁGINA HISTORIA
════════════════════════════════════ */
.historia-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}
.historia-hero__bg { position: absolute; inset: 0; }
.historia-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
}
.historia-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 100%);
}

.historia-body {
  background: var(--crema-a);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.historia-intro {
  max-width: 900px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}
.historia-intro__title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--verde-oscuro);
  line-height: 1.25;
  margin-bottom: 2rem;
  max-width: 60ch;
}
.historia-intro__lead {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: var(--verde-oscuro);
  line-height: 1.75;
  max-width: 70ch;
}

.historia-section { max-width: 900px; margin: 0 auto; }
.historia-section + .historia-section { margin-top: clamp(3rem, 6vw, 5rem); }

.historia-section__heading {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--verde);
  margin-bottom: 1.25rem;
}
.historia-section__body {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--verde-oscuro);
  line-height: 1.8;
}
.historia-section__body p + p { margin-top: 1rem; }
.historia-section__item strong { color: var(--verde); font-weight: 500; }

.historia-img {
  max-width: 900px;
  margin: clamp(3rem, 6vw, 5rem) auto;
  border-radius: 4px;
  overflow: hidden;
}
.historia-img img {
  width: 100%; height: auto; display: block;
  filter: grayscale(100%);
  transition: filter 0.6s;
}
.historia-img:hover img { filter: grayscale(60%); }

/* ════════════════════════════════════
   PÁGINA FAQ — HERO
════════════════════════════════════ */
.faq-hero { position: relative; height: 100vh; min-height: 500px; overflow: hidden; }
.faq-hero__bg { position: absolute; inset: 0; }
.faq-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.faq-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%); }

/* ════════════════════════════════════
   PÁGINA FAQ — SECCIÓN ACORDEÓN
════════════════════════════════════ */
.faq-section {
  background: var(--naranja);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
}
.faq-section__inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq-section__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--verde-oscuro);
  line-height: 1.1;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.faq-accordion { display: flex; flex-direction: column; }

.faq-item { border-top: 1.5px solid rgba(26,86,50,0.25); }
.faq-item:last-child { border-bottom: 1.5px solid rgba(26,86,50,0.25); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 500;
  color: var(--verde-oscuro);
  text-align: left;
  transition: opacity 0.15s;
}
.faq-item__trigger:hover { opacity: 0.75; }

.faq-item__chevron {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--verde-oscuro);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item__chevron svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  transition: transform 0.35s var(--ease);
}
.faq-item__trigger[aria-expanded="true"] .faq-item__chevron svg {
  transform: rotate(90deg);
}

.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease), padding 0.3s;
  padding-bottom: 0;
}
.faq-item__panel:not([hidden]) {
  max-height: 600px;
  padding-bottom: 1.5rem;
}
.faq-item__panel[hidden] { display: block; max-height: 0; padding-bottom: 0; }

.faq-item__panel p {
  font-size: clamp(0.85rem, 1.4vw, 0.975rem);
  color: var(--verde-oscuro);
  line-height: 1.75;
  opacity: 0.8;
  max-width: 66ch;
}

/* ════════════════════════════════════
   ANIMACIONES SCROLL REVEAL
════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms;   opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms;  opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }

@keyframes floatProduct { 0%,100%{transform:translateY(0) rotate(0deg)} 33%{transform:translateY(-14px) rotate(1.5deg)} 66%{transform:translateY(-6px) rotate(-1deg)} }

/* ════════════════════════════════════
   CURSOR PERSONALIZADO
════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 10px; height: 10px;
  background: #f4801f;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot::after {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  width: 4px; height: 3px;
  background: var(--verde-vibrante);
  border-radius: 0 100% 0 100%;
  transform: translateX(-30%) rotate(-20deg);
}
.cursor-ring { position: fixed; width: 20px; height: 20px; border: 1.5px solid rgba(246,190,6,0.7); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, border-color 0.2s; }
.cursor-ring--hover { width: 32px; height: 32px; border-color: var(--naranja); }

/* ════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0.5rem; }
  .footer-right__logos { flex-direction: row; align-items: center; gap: 2rem; }
  .footer-right__logos img { width: 100px; }
  .jugos-panel__img-wrap { min-height: 380px; }
  .jugos-panel__fruit-item img { width: 72px; height: 72px; }
}

/* ════════════════════════════════════
   RESPONSIVE — MÓVIL (≤ 768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav { height: 56px; }
  .nav__links, .nav__social { display: none; }
  .nav__toggle { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__embed--horizontal { display: none; }
  .hero__embed--vertical { display: block; }
  .hero__poster--horizontal { display: none; }
  .hero__poster--vertical { display: block; }

  /* Secciones split: apiladas */
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split__image { height: 60vw; min-height: 260px; }
  .split__content { padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 2.5rem); }
  .split__title { font-size: clamp(3rem, 12vw, 5rem); }

  .section-favoritos .split__image { order: 1; }
  .section-favoritos .split__content { order: 0; }

  /* Destacados */
  .section-destacados__header { flex-direction: column; align-items: center; text-align: center; }
  .section-destacados__title { font-size: clamp(2.5rem, 9vw, 3.8rem); }
  .section-destacados__tagline { max-width: 32ch; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-card__img { aspect-ratio: 3 / 4; }
  .product-card__img img { height: 78%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0.5rem; }
  .footer-right__logos { flex-direction: row; align-items: center; gap: 1.5rem; }
  .footer-right__logos img { width: 90px; }

  /* Jugos */
  .jugos-hero { height: 50vw; min-height: 260px; }
  .jugos-panel { grid-template-columns: 1fr; min-height: calc(100svh - 56px); }
  .jugos-panel__img-wrap  { min-height: auto; padding: 2.5rem 1.5rem; }
  .jugos-panel__img-wrap img { height: 260px; }
  .jugos-panel__info { padding: 2rem 1.5rem; min-height: 50svh; }
  /* Presentaciones: texto al 100% arriba, botellas al 100% abajo */
  .jugos-panel__presentaciones {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  .jugos-panel__presentaciones > div:not(.jugos-panel__bottles) { order: -1; }
  .jugos-panel__bottles { width: 100%; justify-content: space-evenly; }
  /* Frutas: reducir tamaño para evitar desbordamiento en multifruta (3 por fila) */
  .jugos-panel__fruit-row { gap: 0.75rem; }
  .jugos-panel__fruit-item img { width: 48px; height: 48px; }
  .jugos-panel__fruit-count { font-size: 2rem; }

  /* FAQ hero */
  .faq-hero { height: 50vw; min-height: 260px; }

  /* Consejos hero */
  .consejos-hero { height: 50vw; min-height: 260px; }

  /* Consejos bloques — apilados: texto primero, imagen debajo
     (evita dos imágenes consecutivas tras el hero) */
  .consejo-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .consejo-split__content {
    order: 0;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 2.5rem);
    gap: 1.25rem;
  }
  .consejo-split__image {
    height: 60vw;
    min-height: 240px;
    order: 1;
  }
  .consejo-split__title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
  .consejo-split__body p {
    font-size: 0.9rem;
  }

  /* Historia */
  .historia-hero { height: 60vw; min-height: 280px; }
}

/* ════════════════════════════════════
   RESPONSIVE — MÓVIL PEQUEÑO (≤ 480px)
════════════════════════════════════ */
@media (max-width: 480px) {
  .split__title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .products-grid { grid-template-columns: 1fr; }
  .product-card__img { aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-right { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-right__logos { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-right__logos img { width: 120px; }
}
