/* =========================================================
   WEBER EXPORT SpA — estilos del sitio
   Paleta: Cereza y Crema
   ========================================================= */

:root {
  --blanco: #ffffff;
  --crema: #f8f3f0;
  --crema-2: #f1e7e2;
  --beige: #e9d9d3;
  --beige-2: #efe3de;
  --arena: #c9a69c;
  --cafe: #7d2b35;
  --cafe-oscuro: #3a1c21;
  --texto: #33201f;
  --texto-suave: #6e5552;

  --f-display: 'DM Serif Display', Georgia, serif;
  --f-titulo: 'DM Sans', system-ui, sans-serif;
  --f-texto: 'DM Sans', system-ui, sans-serif;
  --f-logo: 'Inter Tight', system-ui, sans-serif;

  --ancho: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-texto);
  font-size: 18px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
  margin: 0 0 .5em;
}
h2 { font-size: clamp(34px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2vw, 28px); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--ancho);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.boton {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--cafe);
  color: var(--blanco);
  font-family: var(--f-titulo);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .06em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.boton:hover { background: var(--cafe-oscuro); transform: translateY(-2px); }
.boton--claro { background: var(--blanco); color: var(--cafe-oscuro); }
.boton--claro:hover { background: var(--crema-2); }

/* =========================================================
   HEADER: semicirculo con logo + menu horizontal + redes
   ========================================================= */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.header__inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.logo {
  position: relative;
  flex: 0 0 auto;
  display: block;
  width: 220px;
  height: 220px;
  margin-top: -110px;
  border-radius: 50%;
  background: var(--crema);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, .2);
  text-decoration: none;
  color: var(--cafe-oscuro);
  transition: box-shadow .3s ease;
}
.logo:hover { box-shadow: 0 0 0 24px rgba(255, 255, 255, .28); }
.logo__texto {
  position: absolute;
  top: 122px;
  left: 54px;
  font-family: var(--f-logo);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.logo__texto span { display: block; }
.logo__spa {
  position: absolute;
  top: 139px;
  left: 141px;
  font-family: var(--f-logo);
  font-weight: 500;
  font-size: 19px;
  line-height: 1;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 44px;
  padding-top: 34px;
}
.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--f-titulo);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .08em;
  color: var(--blanco);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .25);
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: currentColor;
  transition: right .3s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { right: 0; }

.redes {
  display: flex;
  gap: 18px;
}
.redes a {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  color: var(--blanco);
  opacity: .85;
  transition: opacity .25s ease, transform .25s ease;
}
.redes a:hover { opacity: 1; transform: translateY(-2px); }
.redes svg { width: 100%; height: 100%; fill: currentColor; filter: drop-shadow(0 1px 4px rgba(0,0,0,.25)); }

.burger {
  display: none;
  margin-left: auto;
  margin-top: 26px;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 70;
}
.burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--blanco);
  transition: transform .3s ease, top .3s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.menu-abierto .burger span { background: var(--cafe-oscuro); }
.menu-abierto .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-abierto .burger span:nth-child(2) { opacity: 0; }
.menu-abierto .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =========================================================
   HERO (portada con video)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--blanco);
  overflow: hidden;
  background: var(--arena) center / cover no-repeat;
}
.hero--interior { min-height: 72vh; min-height: 72svh; }
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__velo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(45, 22, 26, .55) 0%, rgba(45, 22, 26, .25) 55%, rgba(45, 22, 26, .05) 100%),
    linear-gradient(0deg, rgba(45, 22, 26, .25), rgba(45, 22, 26, 0) 40%);
}
.hero__contenido {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 200px;
  padding-bottom: 180px;
}
.hero__texto { max-width: 980px; }
.hero h1 {
  font-size: clamp(52px, 8vw, 118px);
  margin-bottom: 36px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .18);
}
.hero--interior h1 { font-size: clamp(46px, 6.5vw, 96px); margin-bottom: 20px; }
.hero p {
  font-size: clamp(19px, 1.7vw, 27px);
  font-weight: 300;
  line-height: 1.45;
  max-width: 700px;
}
.hero p strong { font-weight: 700; }

/* =========================================================
   ONDAS (curvas entre secciones)
   ========================================================= */
.onda {
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: clamp(60px, 9vw, 140px);
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.onda svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 100%;
  animation: onda-mueve 22s linear infinite;
}
.onda--lenta svg { animation-duration: 34s; }
.onda--arriba { top: -1px; bottom: auto; transform: scaleY(-1); }
@keyframes onda-mueve {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECCIONES GENERALES
   ========================================================= */
.seccion {
  position: relative;
  padding: clamp(80px, 10vw, 150px) 0;
  overflow: hidden;
}
.seccion--blanco { background: var(--blanco); }
.seccion--crema { background: var(--crema); }
.seccion--beige { background: var(--beige); }
.seccion--cafe { background: var(--cafe-oscuro); color: var(--crema); }
.seccion > .container { position: relative; z-index: 2; }

.titulo-fila {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.titulo-fila h2 { margin: 0; }
.antetitulo {
  display: block;
  font-family: var(--f-titulo);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--cafe);
  margin-bottom: 14px;
}

/* Mancha organica animada de fondo (como Oppy) */
.mancha {
  position: absolute;
  width: 70%;
  max-width: 900px;
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
  animation: mancha-flota 26s ease-in-out infinite alternate;
}
.mancha--izq { left: -22%; top: 5%; }
.mancha--der { right: -22%; top: 0; }
.mancha svg { width: 100%; height: 100%; }
@keyframes mancha-flota {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(24deg) scale(1.08); }
}

/* =========================================================
   INICIO: LO QUE CULTIVAMOS (frutas)
   ========================================================= */
.frutas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 60px);
}
.fruta {
  text-align: center;
  text-decoration: none;
  color: var(--texto);
}
.fruta__img {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--crema);
  display: grid;
  place-items: center;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), background .3s ease;
}
.fruta__img { overflow: hidden; }
.fruta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}
.fruta:hover .fruta__img { background: var(--crema-2); transform: translateY(-8px); }
.fruta:hover .fruta__img img { transform: scale(1.08); }
.fruta__nombre {
  display: block;
  margin-top: 22px;
  font-family: var(--f-titulo);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .04em;
}
.fruta__temporada {
  display: block;
  font-size: 15px;
  color: var(--texto-suave);
}

/* =========================================================
   INICIO: TEXTO + DOS IMAGENES DESFASADAS
   ========================================================= */
.dos-columnas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.dos-columnas--invertido > :first-child { order: 2; }
.texto-bloque p { font-size: clamp(17px, 1.3vw, 20px); color: var(--texto-suave); }
.texto-bloque .boton { margin-top: 16px; }

.collage {
  position: relative;
  min-height: 560px;
}
.collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(58, 28, 33, .18);
}
.collage img:nth-child(1) {
  width: 64%;
  height: 82%;
  right: 0; top: 0;
}
.collage img:nth-child(2) {
  width: 52%;
  height: 46%;
  left: 0; bottom: 0;
  border: 8px solid var(--beige);
}

/* =========================================================
   INICIO: NOTICIAS DE TEMPORADA (solo imagenes)
   ========================================================= */
.noticias {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  margin-right: calc(-1 * var(--gutter));
  padding-right: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--arena) transparent;
}
.noticia {
  flex: 0 0 clamp(250px, 28vw, 360px);
  scroll-snap-align: start;
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--beige);
}
.noticia img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}
.noticia:hover img { transform: scale(1.06); }
.noticia__etiqueta {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(247, 242, 234, .92);
  color: var(--cafe-oscuro);
  font-family: var(--f-titulo);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
}
.flechas { display: flex; gap: 10px; }
.flecha {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--cafe);
  background: transparent;
  color: var(--cafe);
  font-size: 22px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.flecha:hover { background: var(--cafe); color: var(--blanco); }

/* =========================================================
   ABOUT US
   ========================================================= */
.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.pilar {
  background: var(--blanco);
  border-radius: 18px;
  padding: 36px 32px;
}
.pilar__num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 44px;
  color: var(--arena);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.pilar p { color: var(--texto-suave); font-size: 17px; margin: 0; }

.foto-redonda {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
}
.foto-redonda img { width: 100%; height: 100%; object-fit: cover; }

.banda-foto {
  position: relative;
  height: clamp(320px, 50vw, 620px);
  background: var(--arena) center / cover no-repeat;
}

.cita {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.indice-productos {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.indice-productos a {
  padding: 10px 26px;
  border-radius: 999px;
  border: 2px solid var(--cafe);
  color: var(--cafe);
  text-decoration: none;
  font-family: var(--f-titulo);
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .25s ease, color .25s ease;
}
.indice-productos a:hover { background: var(--cafe); color: var(--blanco); }

.producto { scroll-margin-top: 40px; }
.producto .foto-redonda { aspect-ratio: 11 / 13; }
.producto__datos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 8px 0 26px;
}
.producto__dato strong {
  display: block;
  font-family: var(--f-titulo);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cafe);
}
.variedades {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.variedades li {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--blanco);
  font-weight: 600;
  font-size: 16px;
}
.seccion--blanco .variedades li { background: var(--crema); }

/* =========================================================
   CONTACT
   ========================================================= */
.contacto {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.datos-contacto {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 22px;
}
.datos-contacto li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.datos-contacto .icono {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--beige);
  display: grid;
  place-items: center;
  color: var(--cafe-oscuro);
}
.datos-contacto .icono svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.datos-contacto strong {
  display: block;
  font-family: var(--f-titulo);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cafe);
}
.datos-contacto a { text-decoration: none; }
.datos-contacto a:hover { text-decoration: underline; }

.formulario {
  background: var(--blanco);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 30px 70px rgba(58, 28, 33, .10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.campo { display: grid; gap: 8px; }
.campo--ancho { grid-column: 1 / -1; }
.campo label {
  font-family: var(--f-titulo);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
}
.campo input,
.campo select,
.campo textarea {
  width: 100%;
  font: inherit;
  font-size: 17px;
  color: var(--texto);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--beige);
  background: var(--crema);
  transition: border-color .2s ease, background .2s ease;
}
.campo textarea { min-height: 150px; resize: vertical; }
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
  outline: none;
  border-color: var(--cafe);
  background: var(--blanco);
}
.formulario .boton { justify-self: start; }
.oculto { display: none; }
.mensaje-ok {
  grid-column: 1 / -1;
  display: none;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--crema-2);
  font-weight: 600;
}
.mensaje-ok.visible { display: block; }

.mapa {
  margin-top: 36px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--beige);
}
.mapa iframe { width: 100%; height: 100%; border: 0; filter: sepia(.35) saturate(.8); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  background: var(--cafe-oscuro);
  color: var(--crema);
  padding: 70px 0 36px;
}
.footer .onda--arriba { top: -1px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo {
  font-family: var(--f-logo);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
  padding-right: 42px;
  margin-bottom: 20px;
}
.footer__logo span { display: block; }
.footer__logo small {
  position: absolute;
  right: 0; top: 17px;
  font-size: 19px;
  font-weight: 500;
}
.footer p { color: rgba(247, 242, 234, .75); font-size: 16px; }
.footer h4 {
  font-family: var(--f-titulo);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 6px 0 16px;
  color: var(--arena);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; color: var(--crema); opacity: .85; }
.footer a:hover { opacity: 1; text-decoration: underline; }
.footer .redes { margin-top: 6px; }
.footer .redes a { color: var(--crema); }
.footer .redes svg { filter: none; }
.footer__base {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 242, 234, .15);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(247, 242, 234, .6);
}
.subir {
  position: absolute;
  right: var(--gutter);
  top: -28px;
  z-index: 5;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--crema);
  color: var(--cafe-oscuro);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  transition: transform .25s ease;
}
.subir:hover { transform: translateY(-4px); }
.subir svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================
   ANIMACION AL HACER SCROLL
   ========================================================= */
.aparece {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
}
.aparece.visible { opacity: 1; transform: none; }
.aparece-d1 { transition-delay: .12s; }
.aparece-d2 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .aparece { opacity: 1; transform: none; }
}

/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 1080px) {
  .nav { gap: 28px; }
  .nav__links { gap: 26px; }
  .nav__links a { font-size: 17px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   CELULAR
   ========================================================= */
@media (max-width: 860px) {
  body { font-size: 17px; }

  .logo {
    width: 140px; height: 140px;
    margin-top: -70px;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, .2);
  }
  .logo__texto { top: 78px; left: 36px; font-size: 17px; }
  .logo__spa { top: 88px; left: 89px; font-size: 12px; }

  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    margin: 0;
    padding: 120px var(--gutter) 40px;
    background: var(--crema);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .menu-abierto .nav { opacity: 1; visibility: visible; }
  .nav__links { flex-direction: column; gap: 18px; }
  .nav__links a { color: var(--cafe-oscuro); font-size: 36px; text-shadow: none; letter-spacing: .02em; }
  .nav .redes a { color: var(--cafe-oscuro); width: 28px; height: 28px; }
  .nav .redes svg { filter: none; }

  .hero__contenido { padding-top: 150px; padding-bottom: 120px; }

  .frutas { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .dos-columnas { grid-template-columns: 1fr; }
  .dos-columnas--invertido > :first-child { order: 0; }
  .collage { min-height: 420px; }
  .pilares { grid-template-columns: 1fr; }
  .contacto { grid-template-columns: 1fr; }
  .formulario { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .noticia { flex-basis: 78vw; }
  .flechas { display: none; }
}
.footer .subir { color: var(--cafe-oscuro); opacity: 1; text-decoration: none; }

/* =========================================================
   CALENDARIO DE VARIEDADES (pagina Products)
   ========================================================= */
.enlace-calendario {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--f-titulo);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--cafe);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}
.enlace-calendario:hover { color: var(--cafe-oscuro); }

.cal-scroll { overflow-x: auto; padding-bottom: 8px; }
.cal {
  display: grid;
  gap: 12px;
  min-width: 620px;
  background: var(--crema);
  border-radius: 18px;
  padding: 28px 32px 34px;
}
.cal__fila {
  display: grid;
  grid-template-columns: 150px repeat(14, 1fr);
  align-items: center;
}
.cal__fila--meses { border-bottom: 1px solid var(--beige); padding-bottom: 10px; }
.cal__mes {
  font-family: var(--f-titulo);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--texto-suave);
  text-align: center;
}
.cal__fruta {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--cafe-oscuro);
  margin-top: 12px;
}
.cal__var { grid-column: 1; grid-row: 1; font-weight: 500; font-size: 16px; }
.cal__pista {
  grid-column: 2 / -1;
  grid-row: 1;
  height: 12px;
  border-radius: 999px;
  background: var(--crema-2);
}
.cal__barra {
  grid-row: 1;
  height: 12px;
  border-radius: 999px;
}
.cal__barra--cereza { background: var(--cafe); }
.cal__barra--nectarin { background: #c9735a; }
.cal__barra--ciruela { background: #6b3f63; }

@media (max-width: 600px) {
  .cal { min-width: 0; padding: 20px 14px 24px; gap: 10px; }
  .cal__fila { grid-template-columns: 88px repeat(14, 1fr); }
  .cal__mes { font-size: 10px; letter-spacing: .04em; }
  .cal__var { font-size: 13px; line-height: 1.2; padding-right: 6px; }
  .cal__fruta { font-size: 20px; margin-top: 8px; }
  .cal__pista, .cal__barra { height: 10px; }
}

/* Calendario en la pagina de inicio, bajo las frutas */
.cal-inicio { margin-top: clamp(56px, 7vw, 90px); }
.titulo-fila--chico { margin-bottom: 24px; }
.titulo-fila--chico h3 { font-size: clamp(28px, 3vw, 38px); margin: 0; }
