/* ==========================================================================
   AGROVIVAS — sitio público multipágina
   Dirección: "huerto editorial" — papel crema, tinta verde-bosque,
   acentos naranja tierra, serif orgánica Fraunces + sans Outfit.
   ========================================================================== */

:root {
  /* marca */
  --green:        #1C8B2E;
  --green-dark:   #136322;
  --green-vivid:  #4DB848;
  --green-pale:   #E3F2D9;
  --orange:       #F26522;
  --orange-dark:  #C84A0E;
  --orange-pale:  #FCE3D2;
  --lime:         #E4F76F;

  /* superficie */
  --cream:        #F6F1E5;
  --paper:        #FDFBF4;
  --ink:          #1E2A16;
  --ink-soft:     #4C5743;
  --ink-mute:     #717A67;
  --dark:         #14210E;
  --line:         #DDD5BF;

  /* tipografía */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Outfit", -apple-system, sans-serif;

  /* ritmo */
  --container: 1180px;
  --pad: clamp(20px, 4vw, 40px);
  --section-y: clamp(72px, 10vw, 120px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r-lg: 24px;
  --r-xl: 32px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
em { font-style: normal; }

::selection { background: var(--green); color: #fff; }

/* grain overlay */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(2%, 2%); }
}

/* scroll progress */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 1200;
}
.progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-vivid), var(--orange));
}

/* ---------- layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.container--narrow { max-width: 860px; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-top: clamp(36px, 5vw, 60px); }

.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 14px 0 16px;
}
.section__title em { color: var(--green); font-style: italic; font-weight: 600; }
.section__title .em-orange, .em-orange { color: var(--orange); font-style: italic; }
.section__sub { font-size: clamp(16px, 1.6vw, 18.5px); color: var(--ink-soft); max-width: 58ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-dark);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.eyebrow--lime { color: var(--lime); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, box-shadow 0.35s;
  will-change: transform;
}
.btn--sm { padding: 10px 20px; font-size: 14.5px; }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--block { width: 100%; }

.btn--solid { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(28, 139, 46, 0.25); }
.btn--solid:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(28, 139, 46, 0.3); }

.btn--ghost { background: transparent; color: var(--green-dark); box-shadow: inset 0 0 0 2px var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff; transform: translateY(-3px); }

.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 8px 24px rgba(242, 101, 34, 0.28); }
.btn--orange:hover { background: var(--orange-dark); transform: translateY(-3px); }

.btn--lime { background: var(--lime); color: var(--dark); box-shadow: 0 8px 28px rgba(228, 247, 111, 0.18); }
.btn--lime:hover { background: #f0ff8c; transform: translateY(-3px); }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--dark); transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 2px rgba(246, 241, 229, 0.6); }
.btn--outline-light:hover { background: var(--cream); color: var(--dark); transform: translateY(-3px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  transition: transform 0.45s var(--ease), background 0.3s, box-shadow 0.3s;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(246, 241, 229, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-hidden { transform: translateY(-110%); }

.nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.nav__logo { width: 34px; height: 34px; flex-shrink: 0; }
.nav__word {
  font-family: var(--font-body); font-size: 22px; letter-spacing: -0.02em;
  display: inline-flex;
}
.nav__word em { color: var(--orange); font-weight: 700; }
.nav__word strong { color: var(--green); font-weight: 700; }

.nav__links { display: flex; gap: clamp(16px, 2.5vw, 34px); }
.nav__links a {
  text-decoration: none; font-size: 15px; font-weight: 500;
  color: var(--ink-soft); position: relative; padding-block: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--orange);
  border-radius: 2px; transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px var(--pad) 28px;
  background: rgba(246, 241, 229, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 24px rgba(30, 42, 22, 0.08);
}
.nav__mobile a {
  text-decoration: none; font-size: 19px; font-weight: 500;
  padding: 12px 4px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav__mobile-cta { color: var(--green) !important; font-weight: 700 !important; border-bottom: none !important; }
.nav.is-open .nav__mobile { display: flex; }

/* ---------- entrada (data-load) ---------- */
[data-load] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
body.is-loaded [data-load] { opacity: 1; transform: none; }
body.is-loaded [data-load="1"] { transition-delay: 0.08s; }
body.is-loaded [data-load="2"] { transition-delay: 0.18s; }
body.is-loaded [data-load="3"] { transition-delay: 0.30s; }
body.is-loaded [data-load="4"] { transition-delay: 0.42s; }
body.is-loaded [data-load="5"] { transition-delay: 0.56s; }

/* los elementos con parallax solo transicionan opacidad:
   su transform lo controla JS en cada frame */
[data-load][data-parallax],
[data-reveal][data-parallax] { transition-property: opacity; }

/* ---------- topo lines ---------- */
.hero__topo { position: absolute; inset: 0; pointer-events: none; }
.hero__topo svg { width: 100%; height: 100%; }
.hero__topo path {
  fill: none; stroke: #C8A882; stroke-width: 1.4;
  opacity: 0;
  stroke-dasharray: 2400; stroke-dashoffset: 2400;
}
body.is-loaded .hero__topo path { animation: topo-draw 2.8s var(--ease) forwards; }
.hero__topo path:nth-child(1) { animation-delay: 0.2s; }
.hero__topo path:nth-child(2) { animation-delay: 0.4s; }
.hero__topo path:nth-child(3) { animation-delay: 0.55s; }
@keyframes topo-draw { to { stroke-dashoffset: 0; opacity: 0.4; } }

/* ---------- home hero (hub) ---------- */
.home-hero {
  position: relative;
  padding: clamp(140px, 18vh, 190px) 0 clamp(40px, 6vw, 70px);
  overflow: hidden;
}
.home-hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.home-hero__pill {
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 999px;
  margin-bottom: 26px;
}
.home-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 17ch;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.home-hero__title em { font-style: italic; font-weight: 600; color: var(--green); }
.home-hero__title em.em-orange { color: var(--orange); }

/* reveal palabra por palabra (spans inyectados por JS) */
.home-hero__title .w {
  display: inline-block;
  opacity: 0; transform: translateY(0.65em) rotate(2deg);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(0.2s + var(--wi) * 0.06s);
}
body.is-loaded .home-hero__title .w { opacity: 1; transform: none; }

/* panel principal del hero */
.panel {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  box-shadow: 0 24px 56px rgba(30, 42, 22, 0.08);
}
/* puertas hacia tienda y eventos */
.doors {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.door {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 22px 16px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.4s;
}
.door:hover {
  transform: translateY(-4px);
  border-color: var(--green-vivid);
  background: var(--paper);
  box-shadow: 0 18px 38px rgba(30, 42, 22, 0.12);
}
.door__media { width: 88px; height: 88px; border-radius: 16px; overflow: hidden; }
.door__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.door:hover .door__media img { transform: scale(1.08); }
.door__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange-dark);
  margin-bottom: 2px;
}
.door__body h2 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 3px; color: var(--ink); }
.door__body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.door__arrow {
  font-size: 22px; color: var(--green-dark);
  transition: transform 0.35s var(--ease), color 0.25s;
}
.door:hover .door__arrow { transform: translateX(5px); color: var(--orange); }
.panel__eyebrow {
  font-size: 14.5px; font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 12px;
}
.panel__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.15; letter-spacing: -0.01em;
  max-width: 22ch;
  margin-bottom: 26px;
}
.panel__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.panel__more {
  font-size: 15px; font-weight: 600;
  color: var(--green-dark); text-decoration: none;
  transition: color 0.25s;
}
.panel__more:hover { color: var(--green); text-decoration: underline; }
.panel__media { border-radius: var(--r-lg); overflow: hidden; }
.panel__media img {
  width: 100%; aspect-ratio: 1.1; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.panel:hover .panel__media:not(.panel__media--collage) img { transform: scale(1.04); }

/* animación al cambiar de tab */
.panel.is-entering { animation: panel-in 0.55s var(--ease); }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* mini collage dentro del panel */
.panel__media--collage {
  position: relative;
  overflow: visible;
  margin: 6px 10px 18px 0;
}
.panel__media--collage .panel__photo--main {
  width: 100%; aspect-ratio: 1.08; object-fit: cover;
  border-radius: var(--r-lg);
  border: 5px solid #fff;
  box-shadow: 0 22px 48px rgba(30, 42, 22, 0.18);
  transform: rotate(1.5deg);
}
.panel__media--collage .panel__photo--small {
  position: absolute;
  left: -7%; bottom: -9%;
  width: 33%; height: auto; aspect-ratio: 0.95; object-fit: cover;
  border-radius: 18px;
  border: 4px solid #fff;
  box-shadow: 0 18px 38px rgba(30, 42, 22, 0.22);
  transform: rotate(-5deg);
}
.panel:hover .panel__photo--main { transform: rotate(0.5deg) scale(1.01); transition: transform 0.7s var(--ease); }

/* rueda giratoria "menos basura · más vida" */
.sticker {
  position: absolute;
  right: -7%; bottom: -12%;
  width: 116px; height: 116px;
  display: grid; place-items: center;
  z-index: 2;
}
.sticker svg:first-child {
  position: absolute; inset: 0;
  animation: spin 16s linear infinite;
}
.sticker text {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  fill: var(--green-dark);
}
.sticker__core {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--lime);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(30, 42, 22, 0.2);
  color: var(--green-dark);
}
.sticker__core svg, .sticker__core img { width: 34px; height: 34px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- marquee verde ---------- */
.marquee {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  padding: 15px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin-block: clamp(28px, 4vw, 44px) 6px;
  position: relative; z-index: 3;
  box-shadow: 0 10px 30px rgba(28, 139, 46, 0.25);
}
.marquee__track {
  display: flex; white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(18px, 2.2vw, 25px);
  letter-spacing: 0.01em;
}
.marquee__track i { color: var(--lime); font-style: normal; margin-inline: 18px; }

/* ---------- strip de impacto (home) ---------- */
.strip { background: var(--dark); color: var(--cream); padding-block: clamp(36px, 5vw, 56px); }
.strip__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(24px, 5vw, 64px);
}
.strip__stat { display: flex; flex-direction: column; }
.strip__stat strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 3.8vw, 50px); line-height: 1.1;
  color: var(--lime); font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.strip__stat span { font-size: 14px; color: rgba(246, 241, 229, 0.65); }
.strip__link {
  margin-left: auto;
  font-weight: 600; font-size: 15.5px;
  color: var(--cream); text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.25s;
}
.strip__link:hover { color: var(--lime); }

/* ---------- pasos compactos (home) ---------- */
.steps { background: var(--cream); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.step:hover {
  transform: translateY(-5px);
  border-color: var(--green-vivid);
  box-shadow: 0 18px 36px rgba(30, 42, 22, 0.1);
}
.step__num {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 40px; line-height: 1; color: var(--orange);
  display: block; margin-bottom: 14px;
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* ---------- más que recolección (home) ---------- */
.more { background: var(--paper); border-radius: 48px 48px 0 0; }
.more__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.more-card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.more-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-vivid);
  box-shadow: 0 26px 50px rgba(30, 42, 22, 0.12);
}
.more-card figure { overflow: hidden; }
.more-card img {
  width: 100%; aspect-ratio: 1.35; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.more-card:hover img { transform: scale(1.06); }
.more-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.more-card__body h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 8px; }
.more-card__body p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.more-card__link { font-size: 14.5px; font-weight: 600; color: var(--green-dark); transition: color 0.25s; }
.more-card:hover .more-card__link { color: var(--orange-dark); }

/* ---------- visión (home) ---------- */
.vision { text-align: center; }
.vision__text {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.vision__text em { font-style: italic; font-weight: 600; color: var(--green); }
.vision__text em.em-orange { color: var(--orange); }
.vision__sub { color: var(--ink-mute); font-size: clamp(16px, 1.6vw, 18.5px); max-width: 48ch; margin-inline: auto; }

/* ---------- CTA band (home) ---------- */
.cta-band { padding-block: clamp(40px, 6vw, 80px); }
.cta-band__card {
  background: var(--green);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-band__card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(420px 220px at 12% 110%, rgba(228, 247, 111, 0.22), transparent 70%),
    radial-gradient(420px 220px at 88% -10%, rgba(20, 33, 14, 0.35), transparent 70%);
}
.cta-band__card > * { position: relative; }
.cta-band__card h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.cta-band__card p { color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; }
.cta-band__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- page hero (subpáginas) ---------- */
.page-hero {
  padding: clamp(130px, 16vh, 170px) 0 clamp(16px, 2vw, 24px);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05; letter-spacing: -0.02em;
  max-width: 20ch; margin: 14px auto 16px;
}
.page-hero__title em { font-style: italic; font-weight: 600; color: var(--green); }
.page-hero__title em.em-orange { color: var(--orange); }
.page-hero__sub { color: var(--ink-soft); max-width: 52ch; margin-inline: auto; font-size: clamp(16px, 1.6vw, 18.5px); }

/* ---------- reveals on scroll ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.12s);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- cómo funciona (planes.html) ---------- */
.how__step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(32px, 4vw, 56px);
}
.how__step + .how__step { border-top: 1px dashed var(--line); }
.how__step--flip .how__media { order: 2; }
.how__step--flip .how__text { order: 1; }

.how__media { position: relative; border-radius: var(--r-xl); overflow: visible; }
.how__media img {
  width: 100%; aspect-ratio: 1.2; object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 50px rgba(30, 42, 22, 0.16);
}
.how__num {
  position: absolute; top: -26px; left: -12px;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: clamp(56px, 6vw, 88px); line-height: 1;
  color: var(--orange);
  text-shadow: 0 4px 0 var(--cream);
  z-index: 2;
}
.how__step--flip .how__num { left: auto; right: -12px; }

.how__text h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(25px, 2.8vw, 34px);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.how__text p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 20px; }
.how__text strong { color: var(--green-dark); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.chip {
  font-size: 13.5px; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--ink-soft);
}
.chip--yes { background: var(--green-pale); border-color: transparent; color: var(--green-dark); }
.chip--no { background: #FBE9E2; border-color: transparent; color: #A63A12; }
.chip--orange { background: var(--orange-pale); border-color: transparent; color: var(--orange-dark); }

/* ---------- parallax band ---------- */
.band {
  position: relative; overflow: hidden;
  min-height: 62vh;
  display: grid; place-items: center;
  text-align: center;
}
.band__bg { position: absolute; inset: -18% 0; z-index: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20, 33, 14, 0.72), rgba(20, 33, 14, 0.55) 50%, rgba(20, 33, 14, 0.78));
}
.band__content {
  position: relative; z-index: 2;
  max-width: 820px; padding-inline: var(--pad);
  color: var(--cream);
}
.band__content h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.12; letter-spacing: -0.015em;
}
.band__content h2 em { color: var(--lime); font-style: italic; }

/* ---------- impacto ---------- */
.impact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.impact__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.stat:hover {
  transform: translateY(-5px);
  border-color: var(--green-vivid);
  box-shadow: 0 18px 36px rgba(30, 42, 22, 0.1);
}
.stat strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.05;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat strong small {
  font-size: 0.42em; font-weight: 600;
  color: var(--ink-mute); letter-spacing: 0;
}
.stat--hero { grid-column: 1 / -1; }
.stat--hero strong { font-size: clamp(46px, 5.4vw, 74px); }
.stat--hero:nth-child(2) strong { color: var(--orange); }
.stat--hero span:last-child { font-size: 15px; }
.stat:nth-child(2) strong { color: var(--orange); }
.stat span { font-size: 14px; color: var(--ink-mute); line-height: 1.45; }

.impact__chart {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
}
.impact__chart-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 26px; }
.chart { display: flex; align-items: flex-end; gap: clamp(8px, 1.6vw, 18px); height: 250px; }
.chart__col {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; gap: 8px;
  height: 100%;
}
.chart__col i {
  width: 100%; max-width: 58px;
  height: calc(var(--v) / var(--max) * 100% - 44px);
  background: linear-gradient(180deg, var(--green-vivid), var(--green));
  border-radius: 10px 10px 4px 4px;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 1.1s var(--ease);
  transition-delay: calc(var(--ci, 0) * 0.08s);
}
.chart.in .chart__col i { transform: scaleY(1); }
.chart__col--record i { background: linear-gradient(180deg, #FF8B4D, var(--orange)); }
.chart__col b {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--ink-soft);
  opacity: 0; transition: opacity 0.5s ease 1s;
}
.chart.in .chart__col b { opacity: 1; }
.chart__col--record b { color: var(--orange-dark); }
.chart__col span { font-size: 12.5px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.impact__chart-note { margin-top: 22px; font-size: 13.5px; color: var(--ink-mute); }

/* ---------- galería marquee ---------- */
.gallery { overflow: hidden; padding-block: clamp(30px, 4vw, 50px); background: var(--paper); }
.gallery__track { display: flex; gap: 22px; width: max-content; animation: marquee 48s linear infinite; }
.gallery__track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.gallery figure {
  position: relative; width: clamp(240px, 26vw, 340px);
  aspect-ratio: 0.92; border-radius: var(--r-lg); overflow: hidden;
  flex-shrink: 0;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(253, 251, 244, 0.92);
  color: var(--green-dark);
  padding: 6px 13px; border-radius: 999px;
}

/* ---------- planes ---------- */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: 34px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(30, 42, 22, 0.12);
  border-color: var(--green-vivid);
}
.plan h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 23px;
  margin-bottom: 10px; display: flex; flex-direction: column; gap: 6px;
}
.plan__tag {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange-dark);
}
.plan__price {
  font-family: var(--font-display); font-weight: 900;
  font-size: 54px; line-height: 1; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 22px;
}
.plan__price sup { font-size: 24px; font-weight: 600; color: var(--ink-mute); margin-right: 2px; }
.plan__price span { font-family: var(--font-body); font-size: 15px; font-weight: 400; color: var(--ink-mute); letter-spacing: 0; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan li { font-size: 14.5px; color: var(--ink-soft); padding-left: 24px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--green-vivid); font-weight: 700; }
.plan .btn { width: 100%; }

.plan--featured { background: var(--dark); border-color: var(--dark); color: var(--cream); transform: scale(1.04); }
.plan--featured:hover { transform: scale(1.04) translateY(-8px); border-color: var(--green-vivid); }
.plan--featured h3, .plan--featured .plan__price { color: var(--cream); }
.plan--featured .plan__price sup, .plan--featured .plan__price span { color: rgba(246, 241, 229, 0.6); }
.plan--featured li { color: rgba(246, 241, 229, 0.85); }
.plan--featured li::before { color: var(--lime); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(242, 101, 34, 0.35);
}
.plan--compost { background: var(--orange-pale); border-color: transparent; }
.plan--compost:hover { border-color: var(--orange); }

/* ---------- FAQ ---------- */
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: var(--green-vivid); }
.faq__item summary {
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  padding: 20px 24px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-body); font-weight: 400; font-size: 26px;
  color: var(--orange); line-height: 1;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15.5px; max-width: 62ch; }
.faq__cta { margin-top: 40px; text-align: center; }

/* ---------- cobertura ---------- */
.coverage__search { max-width: 620px; margin-bottom: 44px; }
.coverage__search form {
  display: flex; gap: 12px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  padding: 10px; border-radius: 999px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.coverage__search form:focus-within {
  border-color: var(--green-vivid);
  box-shadow: 0 0 0 4px rgba(77, 184, 72, 0.15);
}
.coverage__search input {
  flex: 1; border: none; background: none; outline: none;
  font-family: var(--font-body); font-size: 17px;
  padding-inline: 18px; color: var(--ink);
  min-width: 0;
}
.coverage__search input::placeholder { color: var(--ink-mute); }

.coverage__result {
  margin-top: 18px; font-size: 16.5px; min-height: 28px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.coverage__result.show { opacity: 1; transform: none; }
.coverage__result strong { color: var(--green-dark); }
.coverage__result a { color: var(--orange-dark); font-weight: 600; }

.coverage__days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.day {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
}
.day:hover { transform: translateY(-4px); border-color: var(--green-vivid); background: var(--green-pale); }
.day h4 {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 19px; color: var(--orange); margin-bottom: 6px;
}
.day p { font-size: 14.5px; color: var(--ink-soft); }

.coverage__waitlist {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  background: var(--green-pale);
  border-radius: var(--r-lg);
  padding: 24px 28px;
}
.coverage__waitlist p { color: var(--green-dark); font-weight: 500; flex: 1; min-width: 240px; }

/* ---------- empresas (dark) ---------- */
.b2b {
  background: var(--dark);
  color: var(--cream);
  border-radius: 48px;
  margin-inline: clamp(8px, 1.5vw, 20px);
  overflow: hidden;
  position: relative;
  padding-block: clamp(56px, 8vw, 90px);
}
.b2b__topo { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
.b2b__topo path { fill: none; stroke: rgba(228, 247, 111, 0.16); stroke-width: 1.4; }
.section__head--dark .section__title { color: var(--cream); }
.section__head--dark .section__title em { color: var(--lime); }
.section__head--dark .section__sub { color: rgba(246, 241, 229, 0.7); }

.b2b__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  position: relative; z-index: 1;
}
.b2b__features { display: flex; flex-direction: column; gap: 28px; }
.b2b__feature { display: grid; grid-template-columns: 52px 1fr; gap: 4px 16px; }
.b2b__icon {
  grid-row: span 2;
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(228, 247, 111, 0.12);
  border: 1px solid rgba(228, 247, 111, 0.25);
  display: grid; place-items: center;
  color: var(--lime);
}
.b2b__icon svg { width: 24px; height: 24px; }
.b2b__feature h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; }
.b2b__feature p { color: rgba(246, 241, 229, 0.68); font-size: 15px; max-width: 44ch; }
.b2b__features .btn { align-self: flex-start; margin-top: 10px; }
.b2b__proof { font-size: 14.5px; color: rgba(246, 241, 229, 0.6); }
.b2b__proof strong { color: var(--lime); font-weight: 600; }

.b2b__media { position: relative; min-height: 480px; }
.b2b__photo { position: absolute; border-radius: var(--r-lg); overflow: hidden; }
.b2b__photo img { width: 100%; height: 100%; object-fit: cover; }
.b2b__photo--a {
  width: 72%; aspect-ratio: 0.86;
  top: 0; right: 0;
  transform: rotate(2deg);
  border: 5px solid rgba(246, 241, 229, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.b2b__photo--b {
  width: 48%; aspect-ratio: 0.84;
  bottom: -4%; left: 0;
  transform: rotate(-4deg);
  border: 5px solid rgba(246, 241, 229, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* ---------- tienda ---------- */
.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.product {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(30, 42, 22, 0.12);
  border-color: var(--green-vivid);
}
.product__media { position: relative; }
.product__media img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.product__placeholder {
  width: 100%; aspect-ratio: 1.15;
  display: grid; place-items: center;
  background:
    radial-gradient(280px 180px at 80% 15%, rgba(228, 247, 111, 0.45), transparent 70%),
    var(--green-pale);
  color: var(--green-dark);
}
.product__placeholder svg { width: 72px; height: 72px; opacity: 0.85; }
.product__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.product__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 6px; }
.product__body p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.product__price {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--green-dark); margin-bottom: 18px;
}
.product__price small { font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--ink-mute); }

.shop__how {
  background: var(--green-pale);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.shop__how h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 18px; color: var(--green-dark);
}
.shop__how ol { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; color: var(--ink-soft); max-width: 60ch; }
.shop__note { margin-top: 18px; font-size: 14px; color: var(--ink-mute); }

/* ---------- eventos ---------- */
.events__list { display: flex; flex-direction: column; gap: 16px; }
.event {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 28px;
  align-items: center;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.event:hover {
  transform: translateY(-4px);
  border-color: var(--green-vivid);
  box-shadow: 0 18px 36px rgba(30, 42, 22, 0.1);
}
.event__meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13.5px; font-weight: 600;
  color: var(--orange-dark);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.event h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(21px, 2.4vw, 26px); margin-bottom: 6px; }
.event p { font-size: 15px; color: var(--ink-soft); max-width: 56ch; }
.event__cupos { font-size: 13px; color: var(--ink-mute); margin-top: 8px; }
.event .btn { white-space: nowrap; }

.events__empty {
  text-align: center;
  background: var(--paper);
  border: 1.5px dashed var(--line);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 64px);
  color: var(--ink-soft);
}

/* ---------- alianzas estratégicas ---------- */
.alliance__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.alliance__cover img {
  border-radius: var(--r-xl);
  border: 6px solid var(--paper);
  box-shadow: 0 28px 56px rgba(30, 42, 22, 0.18);
  transform: rotate(-2deg);
}
.alliance__copy .section__title { margin-bottom: 12px; }
.alliance__benefits {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin: 26px 0 22px;
}
.alliance__benefits li {
  font-size: 15px; color: var(--ink-soft);
  padding-left: 26px; position: relative;
  max-width: 56ch;
}
.alliance__benefits li::before {
  content: "✺"; position: absolute; left: 0;
  color: var(--orange); font-size: 15px;
}
.alliance__benefits strong { color: var(--ink); font-weight: 600; }
.alliance__creds {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 26px;
}
.alliance__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- fundadora ---------- */
.founder__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.founder__photo { position: relative; }
.founder__photo img {
  border-radius: 50% 50% 46% 46% / 56% 56% 40% 40%;
  border: 8px solid var(--paper);
  box-shadow: 0 28px 56px rgba(30, 42, 22, 0.2);
  aspect-ratio: 0.92; object-fit: cover; width: 100%;
}
.founder__photo figcaption {
  position: absolute; bottom: 4%; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  padding: 8px 18px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(242, 101, 34, 0.35);
}
.founder__quote p {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.18; letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.founder__quote em { font-style: italic; color: var(--green); }
.founder__quote footer { color: var(--ink-mute); font-size: 16px; }

/* ---------- únete ---------- */
.join__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.join__direct > p { font-size: 15px; color: var(--ink-mute); margin-bottom: 12px; }
.join__wa {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  color: var(--green-dark); text-decoration: none;
  transition: color 0.25s, transform 0.35s var(--ease);
}
.join__wa:hover { color: var(--green); transform: translateX(4px); }
.join__wa svg { width: 30px; height: 30px; color: #25D366; }
.join__photo { margin-top: 36px; }
.join__photo img {
  border-radius: var(--r-xl);
  aspect-ratio: 0.95; object-fit: cover;
  box-shadow: 0 24px 50px rgba(30, 42, 22, 0.16);
  border: 6px solid var(--paper);
  transform: rotate(-2deg);
}

.join__form {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 44px);
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 30px 60px rgba(30, 42, 22, 0.08);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field--row > div { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  outline: none; width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234C5743' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-vivid);
  box-shadow: 0 0 0 4px rgba(77, 184, 72, 0.14);
}
.field input.error, .field select.error { border-color: var(--orange); }
.join__hint { font-size: 13.5px; color: var(--ink-mute); text-align: center; }

/* ---------- footer ---------- */
.footer {
  background: var(--dark); color: rgba(246, 241, 229, 0.75);
  padding-top: clamp(56px, 8vw, 90px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 6vw, 70px);
}
.nav__word--footer { font-size: 30px; }
.footer__brand p { margin-top: 14px; font-size: 15px; max-width: 300px; }
.footer__col h4 {
  font-family: var(--font-display); font-style: italic;
  font-size: 17px; font-weight: 600;
  color: var(--lime); margin-bottom: 14px;
}
.footer__col p { font-size: 15px; line-height: 1.9; }
.footer__col a { color: rgba(246, 241, 229, 0.85); text-decoration: none; transition: color 0.25s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom {
  border-top: 1px solid rgba(246, 241, 229, 0.12);
  padding: 22px var(--pad);
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13.5px;
}
.footer__top { color: rgba(246, 241, 229, 0.6); text-decoration: none; transition: color 0.25s; }
.footer__top:hover { color: var(--lime); }

/* ---------- whatsapp flotante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1000;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.12) rotate(8deg); box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-ring 2.4s ease-out infinite;
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ==========================================================================
   responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .panel { grid-template-columns: 1fr; }
  .panel__media--collage { margin: 10px 6px 30px 0; }
  .panel__media--collage .panel__photo--main { aspect-ratio: 1.5; }
  .more__grid { grid-template-columns: 1fr; }
  .more-card img { aspect-ratio: 1.9; }
  .plans__grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-8px); }
  .impact__grid { grid-template-columns: 1fr; }
  .b2b__grid { grid-template-columns: 1fr; }
  .b2b__media { min-height: 420px; max-width: 560px; }
  .shop__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .strip__link { margin-left: 0; width: 100%; align-self: flex-start; max-width: max-content; }
}

@media (max-width: 768px) {
  .doors { grid-template-columns: 1fr; }
  .door { grid-template-columns: 68px 1fr auto; padding: 12px 18px 12px 12px; }
  .door__media { width: 68px; height: 68px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn { display: none; }
  .nav.is-scrolled, .nav.is-open { background: rgba(246, 241, 229, 0.97); }

  /* móvil: logo a la izquierda, wordmark centrado en la barra */
  .nav__inner { position: relative; }
  .nav__brand .nav__word {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }

  .tabs { flex-direction: column; align-items: stretch; }
  .tab { justify-content: center; background: rgba(255, 255, 255, 0.55); }

  .steps__grid { grid-template-columns: 1fr; }

  .how__step, .how__step--flip { grid-template-columns: 1fr; }
  .how__step--flip .how__media { order: 0; }
  .how__step--flip .how__text { order: 1; }
  .how__step--flip .how__num { right: auto; left: -8px; }
  .how__num { top: -20px; left: -8px; }

  .founder__grid, .join__grid, .alliance__grid { grid-template-columns: 1fr; }
  .alliance__cover { max-width: 440px; margin-inline: auto; }
  .founder__photo { max-width: 340px; margin-inline: auto; }
  .join__photo { display: none; }
  .coverage__days { grid-template-columns: 1fr 1fr; }
  .chart { height: 200px; }
  .band { min-height: 50vh; }
  .event { grid-template-columns: 1fr; }
  .event .btn { justify-self: start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .plans__grid { grid-template-columns: 1fr; }
  .coverage__days { grid-template-columns: 1fr; }
  .shop__grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .coverage__search form { flex-direction: column; border-radius: 24px; }
  .coverage__search .btn { width: 100%; }
  .strip__inner { gap: 18px 28px; }
  .sticker { width: 92px; height: 92px; right: -3%; }
  .sticker__core { width: 50px; height: 50px; }
  .sticker__core svg { width: 25px; height: 25px; }
  .panel__photo--small { left: -4%; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-load], [data-reveal], .home-hero__title .w { opacity: 1 !important; transform: none !important; }
  .chart__col i { transform: scaleY(1) !important; }
  .chart__col b { opacity: 1 !important; }
  .grain { display: none; }
}
