/* ==============================================
   GREENMAX — Mint Minimal Landing System
   Single source of truth: STYLE_GUIDE.md
   ============================================== */

/* --- TOKENS (palette + semantic) --- */
:root {
  /* Palette */
  --mint-50:  #E9FBF4;
  --mint-100: #D4F7EA;
  --mint-200: #A9EED6;
  --mint-300: #7FE5C3;
  --mint-400: #4EDBAE;
  --mint-500: #20CF96;
  --mint-600: #17B782;
  --mint-700: #11946A;

  --teal-700: #0E6B62;
  --teal-800: #0B4F49;
  --teal-900: #083B37;

  --ink-900: #0F1B18;
  --ink-800: #162321;
  --ink-700: #273230;
  --ink-500: #5C6763;
  --ink-400: #77817D;

  --line-200: #DFE7E3;
  --line-150: #E8EFEC;
  --surface-0:   #FFFFFF;
  --surface-50:  #F6F8F7;
  --surface-100: #EFF3F1;

  --danger-500:  #E05656;
  --warning-500: #F2B84B;

  /* Semantic */
  --bg:            var(--surface-50);
  --surface:       var(--surface-0);
  --surface-muted: var(--surface-100);

  --border:        var(--line-200);
  --border-subtle: var(--line-150);

  --text-primary:   var(--ink-900);
  --text-secondary: var(--ink-500);
  --text-tertiary:  var(--ink-400);

  --primary:        var(--mint-600);
  --primary-hover:  var(--mint-700);
  --primary-soft:   var(--mint-100);
  --on-primary:     var(--surface-0);

  --focus-ring: rgba(32, 207, 150, 0.35);

  --hero-dark-bg:    var(--teal-900);
  --hero-dark-text:  var(--surface-0);
  --hero-dark-muted: rgba(255, 255, 255, 0.72);

  /* Typography */
  --font: "Manrope", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-display: var(--font);
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
  --ls-tight: -0.02em;
  --ls-wide: 0.02em;
  --text-base: 16px;
  --text-xl: 18px;
  --text-2xl: 22px;
  --text-3xl: 28px;
  --text-4xl: 36px;
  --text-5xl: 44px;

  --leading-medium: 1.15em;
  --leading-normal: 1.55em;

  /* Radii */
  --radius: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 0 rgba(15, 27, 24, 0.04);
  --sh-sm: 0 8px 24px rgba(15, 27, 24, 0.08);
  --sh-md: 0 14px 40px rgba(15, 27, 24, 0.10);
  --sh-card-lift: 0 16px 44px rgba(15, 27, 24, 0.12);

  /* Motion */
  --dur-fast: 120ms;
  --dur-base: 180ms;
  --dur-slow: 260ms;
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-emph: cubic-bezier(0.2, 1, 0.2, 1);

  /* Layout */
  --container-max: 1120px;
  --gutter: 24px;
  --section-py: 96px;
  --section-py-tablet: 72px;
  --section-py-mobile: 56px;
  --max-text: 520px;

  /* Back-compat spacing (many sections still reference these) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-section: var(--section-py);
  --space-section-sm: var(--section-py-tablet);

  /* Component sizing */
  --btn-h-sm: 36px;
  --btn-h-md: 44px;
  --btn-h-lg: 52px;
  --btn-px-sm: 14px;
  --btn-px-md: 18px;
  --btn-px-lg: 22px;
  --btn-fs-sm: 14px;
  --btn-fs-md: 14px;
  --btn-fs-lg: 16px;

  /* Back-compat aliases — distinct tones so text ≠ background */
  --primary-color:   var(--text-primary);   /* #0F1B18 dark ink — text on LIGHT bg */
  --secondary-color: var(--surface-0);      /* #FFFFFF — text/surface on DARK bg */
  --text-color:      var(--text-secondary); /* #5C6763 — body text on LIGHT bg */
  --text-color-1:    var(--text-tertiary);  /* #77817D — captions on LIGHT bg only */
  --accent-color:    var(--on-primary);     /* #FFFFFF white */

  /* Green scale: visually separated so text always contrasts background */
  --green-accent: var(--mint-300);   /* #7FE5C3 — bright accent / text on dark green */
  --green-main:   var(--teal-700);   /* #0E6B62 — medium-dark background */
  --green-dark:   var(--teal-900);   /* #083B37 — deepest bg / shadow */

  --earth-light:  var(--text-secondary);
  --earth-dark:   var(--ink-700);
  --shock-red:    var(--danger-500);
  --cream:        var(--mint-50);
  --rating-color: #F2B84B;

  /* Hero above-the-fold: espacio del nav (72px) + 24px respiración = 96px */
  --hero-padding-top: 6rem;
  --hero-padding-bottom: clamp(1.5rem, 2.5vh, 2.5rem);
  --hero-gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: var(--w-regular);
  color: var(--text-secondary);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* --- TIPOGRAFÍA (STYLE_GUIDE.md) --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  color: var(--text-primary);
  letter-spacing: var(--ls-tight);
}
h1 { font-size: clamp(34px, 4.4vw, 44px); line-height: 1.05; }
h2 { font-size: clamp(24px, 3.2vw, 28px); line-height: 1.15; }
h3 { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.15; }
h4 { font-size: 16px; line-height: 1.2; }
p { font-size: 16px; }
strong { font-weight: var(--w-semibold); color: var(--text-primary); }
em { font-style: italic; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- BOTONES --- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: var(--btn-h-md);
  padding: 0 var(--btn-px-md);
  background-color: var(--primary);
  color: var(--on-primary);
  border: 1px solid transparent;
  font-size: var(--btn-fs-md);
  font-weight: var(--w-medium);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  transition: background-color var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
  box-shadow: var(--sh-xs);
}
.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}
.btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-color);
  transition: 0.3s;
}
.btn:hover svg { transform: translateX(4px); }
.btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.btn--primary { background: var(--primary); }
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
  box-shadow: none;
}
.btn--secondary:hover {
  background: var(--surface-muted);
  transform: translateY(-1px);
  box-shadow: none;
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: none;
}
.btn--ghost:hover { background: var(--surface-muted); transform: translateY(-1px); box-shadow: none; }
.btn--whatsapp {
  background: #25D366;
  border-color: #25D366;
}
.btn--whatsapp:hover { color: var(--accent-color); }
.btn--whatsapp svg { color: var(--accent-color); }
.btn--lg { height: var(--btn-h-lg); padding: 0 var(--btn-px-lg); font-size: var(--btn-fs-lg); }
.btn--sm { height: var(--btn-h-sm); padding: 0 var(--btn-px-sm); font-size: var(--btn-fs-sm); }

/* --- ANIMATIONS (SKILL: high-impact staggered reveals) --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* Snapshot mode for automated screenshots (does not affect normal visits) */
body[data-snap="1"] .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 12px;
  left: 24px;
  right: 24px;
  z-index: 1000;
  padding: 8px 0;
  background: transparent;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background-color 0.3s var(--ease-standard),
              border-color 0.3s var(--ease-standard),
              box-shadow 0.3s var(--ease-standard),
              top 0.3s var(--ease-standard);
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(223, 231, 227, 0.60);
  box-shadow: 0 4px 24px rgba(15, 27, 24, 0.08);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  font-size: 1.25rem;
  color: var(--text-primary);
}
.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav:not(.nav--scrolled) .nav__logo-img {
  /* tint to #0f1b18 when nav is transparent on hero */
  filter: brightness(0) saturate(100%) invert(7%) sepia(23%) saturate(632%) hue-rotate(117deg) brightness(92%) contrast(95%);
}
.nav.nav--scrolled .nav__logo-img {
  filter: none;
}
.nav__logo-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.nav__links { display: flex; gap: 2rem; }
.nav__link {
  font-size: 14px;
  font-weight: var(--w-medium);
  color: var(--text-secondary);
  transition: color var(--dur-base) var(--ease-standard);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link.active { color: var(--text-primary); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  height: var(--btn-h-sm);
  padding: 0 var(--btn-px-sm);
  background: var(--primary);
  color: var(--on-primary);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: var(--w-medium);
  font-size: var(--btn-fs-sm);
  transition: background-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
  box-shadow: var(--sh-xs);
}
.nav__cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}
.nav__cta:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.nav__hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* --- Hero staggered entrance --- */
.hero .reveal {
  transform: translateY(28px);
}
.hero__text > .reveal:nth-child(1) { transition-delay: 0.15s; }
.hero__text > .reveal:nth-child(2) { transition-delay: 0.3s; }
.hero__text > .reveal:nth-child(3) { transition-delay: 0.45s; }
.hero__text > .reveal:nth-child(4) { transition-delay: 0.6s; }
.hero__text > .reveal:nth-child(5) { transition-delay: 0.7s; }
.hero__visual.reveal { transition-delay: 0.4s; }

/* =========================================
   HERO WRAPPER (dark bg behind rounded hero)
   ========================================= */
.hero-wrap {
  background: var(--surface-0);
  padding: 12px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 24px);
  min-height: calc(100dvh - 24px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(12px + 52px + clamp(1.5rem, 3vw, 2.5rem)) var(--gutter) var(--hero-padding-bottom);
  overflow: visible;
  background: #DCED6B;
  box-sizing: border-box;
  border-radius: 28px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 70% 30%, rgba(180, 210, 40, 0.18), transparent 60%),
    radial-gradient(700px 460px at 30% 20%, rgba(180, 210, 40, 0.12), transparent 55%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, rgba(15, 27, 24, 0.10) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(15, 27, 24, 0.08);
  border: 1px solid rgba(15, 27, 24, 0.12);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: var(--w-semibold);
  color: var(--teal-800);
  margin-bottom: var(--hero-gap);
  letter-spacing: 0.02em;
}
.hero__title { color: var(--ink-900); margin-bottom: var(--hero-gap); }
.hero__title-accent { color: var(--teal-800); }
.hero__subtitle {
  color: var(--ink-700);
  font-size: 16px;
  margin-bottom: var(--hero-gap);
  line-height: 1.6;
  max-width: 420px;
}
.hero__subtitle strong { color: var(--teal-800); }
.hero__subtitle a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 2px; }
.hero__subtitle a:hover { color: var(--teal-900); }
.hero__date {
  display: block;
  font-size: 11px;
  color: var(--ink-500);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--hero-gap);
}
.hero__secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-700);
  font-size: 15px;
  font-weight: var(--w-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color var(--dur-base) var(--ease-standard);
}
.hero__secondary-cta svg {
  width: 18px;
  height: 18px;
  color: currentColor;
  transition: transform var(--dur-base) var(--ease-standard);
}
.hero__secondary-cta:hover {
  color: var(--teal-800);
}
.hero__secondary-cta:hover svg {
  transform: translateX(2px);
}
.hero__secondary-cta:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.video-modal[hidden] {
  display: none;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 13, 0.7);
  backdrop-filter: blur(2px);
}
.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  border-radius: 16px;
  background: var(--surface-0);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line-200);
  padding: 1rem 1rem 0.8rem;
  z-index: 1;
}
.video-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-modal__title {
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin: 0 0 0.6rem;
  color: var(--ink-900);
}
.video-modal__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.video-modal__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
body.video-modal-open {
  overflow: hidden;
}
.hero__trust {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 12px;
  color: var(--ink-500);
}
.hero__badges {
  display: flex;
  justify-content: flex-start;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: 0.25rem;
  padding-bottom: 0;
}
.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.4;
}
.hero__badge-item svg { color: var(--teal-800); flex-shrink: 0; }
.hero__scroll {
  position: absolute;
  bottom: clamp(1.25rem, 2vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--ink-700);
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================
   SCRATCH REVEAL
   ========================================= */
.scratch-reveal {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: none;
  box-shadow: var(--sh-md);
  border: 3px solid var(--border);
  touch-action: none;
}
.scratch-reveal__bottom {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scratch-reveal__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  touch-action: none;
}
.scratch-reveal__cursor {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-base) var(--ease-standard);
}
.scratch-reveal:hover .scratch-reveal__cursor { opacity: 1; }
.scratch-reveal__hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: var(--w-medium);
  letter-spacing: 0.01em;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-standard);
  animation: hint-pulse 2.5s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes hint-pulse {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(-3px); }
}
@media (hover: none) {
  .scratch-reveal { cursor: auto; }
  .scratch-reveal__cursor { display: none; }
}

/* =========================================
   PROBLEMA — tonos tierra/sequía (07-landing-page-copy)
   ========================================= */
/* =========================================
   COTIZADOR
   ========================================= */
.cotizador {
  padding-top: clamp(48px, 6vw, 72px);
}
.cotizador__title {
  text-align: center;
  margin-bottom: 0.75rem;
}
.cotizador__subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cotizador__box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--sh-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .cotizador__box { grid-template-columns: 1fr; }
}
.cotizador__field { margin-bottom: 1.5rem; }
.cotizador__field label {
  display: block;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.cotizador__hint {
  display: block;
  margin-top: -0.2rem;
  margin-bottom: 0.35rem;
  color: var(--ink-500);
  font-size: 0.78rem;
}
.cotizador__field input[type="range"] {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  background: var(--surface-muted);
  border-radius: 4px;
  margin: 0.5rem 0;
}
.cotizador__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 27, 24, 0.10);
  border: 2px solid var(--surface);
}
.cotizador__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
}
.cotizador__value-trigger {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px dashed rgba(15, 27, 24, 0.25);
}
.cotizador__value-trigger:hover {
  border-bottom-color: rgba(15, 27, 24, 0.5);
}
.cotizador__value-input {
  display: none;
  width: 96px;
  font: inherit;
  color: var(--text-primary);
  border: 1px solid var(--line-200);
  border-radius: 8px;
  padding: 0.2rem 0.45rem;
  background: #fff;
}
.cotizador__value.is-editing .cotizador__value-trigger {
  display: none;
}
.cotizador__value.is-editing .cotizador__value-input {
  display: inline-block;
}
.cotizador__plans {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cotizador__plan {
  height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-weight: var(--w-medium);
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.cotizador__plan:hover {
  background: var(--surface-muted);
  transform: translateY(-1px);
}
.cotizador__plan.active {
  background: var(--primary-soft);
  border-color: rgba(32, 207, 150, 0.35);
  color: var(--primary-hover);
}
.cotizador__result {
  background: var(--surface-muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
}
.cotizador__result-label { font-size: 12px; color: var(--text-tertiary); display: block; margin-bottom: 0.25rem; letter-spacing: var(--ls-wide); font-weight: var(--w-semibold); }
.cotizador__result-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  color: var(--primary-hover);
  font-weight: 700;
}
.cotizador__result-number small {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--w-semibold);
  color: var(--primary-hover);
  letter-spacing: var(--ls-wide);
  vertical-align: middle;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--primary-soft);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(32, 207, 150, 0.28);
}
.cotizador__result-sub {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.cotizador__includes {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.cotizador__includes li { margin: 0; }
.cotizador__result .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* =========================================
   PLANES
   ========================================= */
.planes {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.planes__title { text-align: center; margin-bottom: 0.5rem; }
.planes__subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 16px;
  max-width: var(--max-text);
  margin-left: auto;
  margin-right: auto;
}
.planes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 2rem;
}
@media (max-width: 768px) {
  .planes__grid { grid-template-columns: 1fr; }
}
.planes__card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 22px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
}
.planes__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card-lift);
}
.planes__card--featured {
  background: var(--hero-dark-bg);
  border-color: transparent;
  color: var(--hero-dark-text);
  box-shadow: var(--sh-md);
}
.planes__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 12px;
  font-weight: var(--w-semibold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--sh-sm);
  z-index: 1;
}
.planes__months-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 0 12px;
  height: 32px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  font-size: 12px;
  font-weight: var(--w-semibold);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(32, 207, 150, 0.28);
}
.planes__card--featured .planes__months-badge {
  background: rgba(255, 255, 255, 0.14);
  color: var(--hero-dark-text);
  border-color: rgba(255, 255, 255, 0.16);
}
.planes__card h3 { font-size: 18px; margin-bottom: 0.35rem; color: inherit; }
.planes__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: inherit;
}
.planes__price span { font-size: 14px; font-weight: var(--w-medium); color: var(--text-tertiary); }
.planes__card--featured .planes__price span { color: var(--hero-dark-muted); }
.planes__base { font-size: 12px; color: var(--text-tertiary); margin: 6px 0; }
.planes__card--featured .planes__base { color: var(--hero-dark-muted); }
.planes__daily { font-size: 14px; font-weight: var(--w-semibold); color: var(--primary-hover); margin-bottom: 0.75rem; }
.planes__card--featured .planes__daily { color: var(--mint-300); }
.planes__tag {
  display: inline-block;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--surface-muted);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}
.planes__card--featured .planes__tag {
  color: var(--hero-dark-muted);
  background: rgba(255, 255, 255, 0.10);
}


/* =========================================
   PROBLEMA
   ========================================= */
.problema {
  padding: clamp(72px, 9vh, 96px) 0;
  background: linear-gradient(180deg, var(--surface-0) 0%, var(--surface-50) 100%);
}

.problema__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: start;
}

.problema__copy { max-width: 580px; }

.problema__title {
  text-align: left;
  margin-bottom: 12px;
}
.problema__title-accent { color: var(--primary-hover); }

.problema__lead {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.65;
}
.problema__lead a,
.solucion__subtitle a,
.solucion__outcome a,
.casos__card-desc a,
.garantia__closing a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.problema__lead a:hover,
.solucion__subtitle a:hover,
.solucion__outcome a:hover,
.casos__card-desc a:hover,
.garantia__closing a:hover {
  color: var(--teal-900);
}

/* --- Mini cards (3 squares inside copy) --- */
.problema__mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.problema__mini-card {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  border: 1px solid transparent;
  box-shadow: var(--sh-sm);
  max-width: 110px;
}

.problema__mini-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.problema__mini-card-icon svg { width: 16px; height: 16px; }

.problema__mini-card-label {
  font-size: 12px;
  font-weight: var(--w-semibold);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.problema__mini-card-value {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 700;
  line-height: 1.1;
}

.problema__mini-card--dark {
  background: var(--hero-dark-bg);
  color: var(--hero-dark-text);
  border-color: rgba(255, 255, 255, 0.10);
}
.problema__mini-card--dark .problema__mini-card-icon {
  background: rgba(255, 255, 255, 0.10);
  color: var(--mint-300);
}
.problema__mini-card--dark .problema__mini-card-value { color: var(--mint-300); }

.problema__mini-card--soft {
  background: #EEEAFE;
  color: var(--text-primary);
  border-color: rgba(17, 148, 106, 0.14);
}
.problema__mini-card--soft .problema__mini-card-icon {
  background: rgba(17, 148, 106, 0.10);
  color: var(--primary-hover);
}
.problema__mini-card--soft .problema__mini-card-value { color: var(--primary-hover); }

/* --- Total card (right side) --- */
.problema__cards {
  display: flex;
  align-items: center;
  justify-content: center;
}

.problema__total-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--sh-md);
  padding: clamp(28px, 3vw, 40px);
  text-align: center;
  width: 100%;
  max-width: 380px;
}
.problema__total-kicker {
  font-size: 13px;
  letter-spacing: var(--ls-wide);
  font-weight: var(--w-semibold);
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.problema__total-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--danger-500);
  line-height: 1.1;
}
.problema__total-note {
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 15px;
}

.problema__closing {
  color: var(--text-tertiary);
  line-height: 1.6;
}
.problema__closing em { color: var(--primary-hover); font-style: italic; }

@media (min-width: 901px) and (max-height: 820px) {
  .problema { padding: 72px 0; }
  .problema__lead { margin-bottom: 16px; }
  .problema__total-value { font-size: clamp(32px, 4vw, 44px); }
}

@media (max-width: 900px) {
  .problema__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .problema__copy { max-width: 100%; }
  .problema__total-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .problema__mini-card {
    padding: 10px 6px;
    gap: 4px;
    max-width: none;
  }
  .problema__mini-card-value { font-size: 13px; }
  .problema__mini-card-label { font-size: 11px; }
  .problema__mini-card-icon { width: 26px; height: 26px; }
  .problema__mini-card-icon svg { width: 14px; height: 14px; }
}

/* =========================================
   SOLUCIÓN — fondo verde luminoso (07-landing-page-copy)
   ========================================= */
.solucion {
  padding: 120px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
/* SKILL: subtle grain for depth */
.solucion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}
.solucion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.solucion__title { color: var(--text-primary); margin-bottom: 1rem; }
.solucion__title-accent { color: var(--primary-hover); }
.solucion__subtitle {
  font-size: 1.1rem;
.solucion__features { margin-bottom: 1rem; }
  color: var(--text-color);
  margin-bottom: var(--space-lg);
}
.solucion__outcome {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--primary-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.solucion__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.solucion__card {
  display: flex;
  gap: var(--space-sm);
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--green-dark);
  color: var(--hero-dark-text);
  border: 1px solid rgba(127, 229, 195, 0.18);
  box-shadow: var(--sh-sm);
}
.solucion__card--light {
  background: rgba(32, 207, 150, 0.10);
  color: var(--text-primary);
  border-color: rgba(32, 207, 150, 0.22);
}
.solucion__card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--mint-300);
  margin-top: 2px;
}
.solucion__card-icon--light {
  background: rgba(32, 207, 150, 0.16);
  color: var(--primary-hover);
}
.solucion__card-body { display: grid; gap: 2px; }
.solucion__card-title {
  display: block;
  font-size: 0.95rem;
  font-weight: var(--w-semibold);
  letter-spacing: var(--ls-tight);
}
.solucion__card-text {
  display: block;
  font-size: 0.9rem;
  color: var(--hero-dark-muted);
  line-height: 1.5;
}
.solucion__card--light .solucion__card-text { color: var(--text-secondary); }
.solucion__feature {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.solucion__feature:last-child { border-bottom: none; }
.solucion__feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-main);
  border-radius: var(--radius-lg);
  color: var(--green-accent);
}
.solucion__feature-icon--highlight {
  background: var(--green-accent);
  color: var(--green-dark);
}
.solucion__feature strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}
.solucion__feature span {
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.5;
}
.solucion__visual { position: relative; }
.solucion__image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 10px 10px 0 0 var(--green-dark);
}
.solucion__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.solucion__image-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  background: var(--green-dark);
  color: var(--green-accent);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

/* =========================================
   PROCESO
   ========================================= */
.proceso {
  padding: var(--space-section) 0;
  background: var(--green-dark);
  border-radius: 28px;
}
.proceso__title {
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 3.5rem;
}
.proceso__title-accent { color: var(--green-accent); }
.proceso__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.proceso__timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-accent), var(--green-main));
}
.proceso__step {
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  position: relative;
}
.proceso__step:last-child { padding-bottom: 0; }
.proceso__step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-accent);
  color: var(--green-dark);
  border-radius: 50%;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.proceso__step-content { padding-top: 0.75rem; }
.proceso__step-content h3 { color: var(--secondary-color); margin-bottom: 0.5rem; }
.proceso__step-content p { color: var(--hero-dark-muted); font-size: 0.95rem; line-height: 1.6; }
.proceso__tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: var(--green-main);
  color: var(--green-accent);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 0.25rem;
}

/* =========================================
   CASOS DE USO
   ========================================= */
.casos {
  padding: var(--space-section) 0;
  background: var(--secondary-color);
}
.casos__title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-xl);
}
.casos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.casos__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
}
/* SKILL: subtle asymmetry - second card slightly offset */
.casos__card:nth-child(2) { transform: translateX(8px); }
.casos__card:nth-child(2):hover { transform: translateX(8px) translateY(-6px); }
.casos__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card-lift);
}
.casos__card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.casos__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.casos__card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  background: var(--green-accent);
  color: var(--green-dark);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
}
.casos__card-body { padding: 30px; }
.casos__card-title { color: var(--primary-color); margin-bottom: 0.75rem; }
.casos__card-quote {
  font-style: italic;
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
}
.casos__card-desc {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.casos__card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.casos__card-tags span {
  padding: 0.3rem 0.75rem;
  background: var(--green-main);
  color: var(--green-accent);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
}
.casos__cta { text-align: center; }

/* =========================================
   RESULTADOS
   ========================================= */
.resultados {
  padding: var(--space-section) 0;
  background: var(--green-dark);
  border-radius: 28px;
}
.resultados__title {
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: var(--space-xl);
}
.resultados__title-accent { color: var(--green-accent); }

/* Before / After Slider */
.ba-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 10px solid var(--secondary-color);
}
.ba-slider__before, .ba-slider__after { position: absolute; inset: 0; }
.ba-slider__before { z-index: 1; clip-path: inset(0 50% 0 0); }
.ba-slider__after { z-index: 0; }
.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.ba-slider__label {
  position: absolute;
  bottom: 16px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 3;
}
.ba-slider__label--before {
  left: 16px;
  background: var(--green-main);
  color: var(--green-accent);
}
.ba-slider__label--after {
  right: 16px;
  background: var(--green-accent);
  color: var(--green-dark);
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-slider__handle-line {
  flex: 1;
  width: 3px;
  background: var(--secondary-color);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.ba-slider__handle-circle {
  width: 44px;
  height: 44px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--green-accent);
  color: var(--green-dark);
  flex-shrink: 0;
}

/* Testimonios */
.testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonio {
  background: var(--green-main);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  transition: 0.3s;
}
.testimonio:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.testimonio__stars {
  color: var(--rating-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonio__quote {
  font-style: italic;
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonio__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonio__avatar {
  width: 60px;
  height: 60px;
  background: var(--green-accent);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 5px solid var(--green-accent);
}
.testimonio__author strong { display: block; font-size: 0.9rem; color: var(--secondary-color); }
.testimonio__author span { font-size: 0.8rem; color: var(--hero-dark-muted); }

/* =========================================
   COMPARATIVO
   ========================================= */
.comparativo {
  padding: 120px 0;
  background: var(--secondary-color);
}
.comparativo__title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}
.comparativo__title-accent { color: var(--primary-hover); }
.comparativo__table {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(34, 197, 94, 0.35);
}
.comparativo__col { display: contents; }
.comparativo__cell {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}
.comparativo__cell--empty {
  background: var(--green-main);
  font-family: var(--font-display);
}
.comparativo__cell--label {
  font-weight: 600;
  gap: 0.5rem;
  padding: 1.25rem;
  font-size: 0.95rem;
}
.comparativo__col--header .comparativo__cell {
  background: var(--green-main);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparativo__col--natural .comparativo__cell {
  background: #fef2f2;
  color: var(--primary-color);
}
.comparativo__col--natural .comparativo__cell--label {
  background: #fecaca;
  color: #991b1b;
}
.comparativo__col--natural .comparativo__cell--shock {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--shock-red);
}
.comparativo__col--sintetico .comparativo__cell {
  background: rgba(34, 197, 94, 0.06);
  color: var(--primary-color);
}
.comparativo__col--sintetico .comparativo__cell--label {
  background: var(--green-accent);
  color: var(--green-dark);
}
.comparativo__col--sintetico .comparativo__cell--win {
  color: var(--primary-hover);
  font-weight: 600;
}
.comparativo__conclusion { text-align: center; max-width: 600px; margin: 0 auto; }
.comparativo__conclusion p { font-size: 1.1rem; color: var(--primary-color); margin-bottom: 1.5rem; }
/* Simple 2-row comparativo (GaaS) */
.comparativo__table--simple {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.comparativo__table--simple .comparativo__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #fef2f2;
  border-radius: var(--radius);
  border: 1px solid #fecaca;
}
.comparativo__table--simple .comparativo__row--win {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
}
.comparativo__table--simple .comparativo__row--win .comparativo__cell--label { color: var(--primary-hover); }
.comparativo__table--simple .comparativo__cell { padding: 0; }
@media (max-width: 600px) {
  .comparativo__table--simple .comparativo__row { grid-template-columns: 1fr; }
}

/* =========================================
   GARANTÍA — fondo crema limpio (07-landing-page-copy)
   ========================================= */
.garantia {
  padding: 120px 0;
  background: var(--cream);
  border-radius: 28px;
}
.garantia__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.garantia__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--green-main);
  border-radius: 50%;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  border: 3px solid var(--green-dark);
}
.garantia__title { color: var(--primary-color); margin-bottom: 2rem; }
.garantia__items {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}
.garantia__item {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--sh-xs);
}
.garantia__item strong { color: var(--primary-color); font-size: 0.95rem; }
.garantia__item p { color: var(--text-color); font-size: 0.9rem; margin-top: 0.25rem; }
.garantia__closing { color: var(--text-color); font-size: 0.95rem; line-height: 1.7; }

/* =========================================
   FAQ
   ========================================= */
.faq {
  padding: var(--space-section) 0;
  background: var(--secondary-color);
}
.faq__title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: var(--space-xl);
}
.faq__title-accent { color: var(--primary); font-weight: 500; }
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item {
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  font-size: var(--text-2xl);
  font-weight: 500;
  background: var(--green-main);
  color: var(--secondary-color);
  text-align: left;
  gap: 1rem;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  border-radius: var(--radius-lg);
}
.faq__question:hover { color: var(--green-accent); }
.faq__question:focus-visible { outline-offset: 4px; }
.faq__item.active .faq__question {
  color: var(--green-accent);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}
.faq__item.active .faq__chevron { transform: rotate(180deg); color: var(--green-accent); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer p {
  padding: 20px 30px;
  color: var(--hero-dark-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  background: var(--green-main);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

/* =========================================
   CTA FINAL — bg Auron CTA
   ========================================= */
.cta-final {
  padding: var(--space-section) 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0.8;
}
.cta-final__content {
  position: relative;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta-final__title {
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.cta-final__subtitle {
  color: var(--hero-dark-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cta-final__urgency {
  font-size: 0.85rem;
  color: var(--green-accent);
  font-weight: 500;
  font-style: italic;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 48px 0 40px;
  background: #DCED6B;
  color: var(--ink-700);
}
.footer__top {
  margin-bottom: 28px;
}
.footer__brand .nav__logo {
  color: var(--ink-900);
  margin-bottom: 0;
}
.footer__brand .nav__logo-img { height: 36px; }
.footer__brand .nav__logo-img {
  filter: brightness(0) saturate(100%) invert(7%) sepia(23%) saturate(632%) hue-rotate(117deg) brightness(92%) contrast(95%);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__copy {
  font-size: 0.8rem;
  font-weight: var(--w-semibold);
  color: var(--ink-900);
  margin: 0;
}
.footer__address {
  font-size: 0.78rem;
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 380px;
  margin: 0;
}
.footer__contact-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: var(--w-medium);
  color: var(--ink-900);
  width: fit-content;
  margin-top: 4px;
  transition: background-color var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard);
}
.footer__contact-btn:hover {
  background: var(--ink-900);
  color: #DCED6B;
}
.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(15, 27, 24, 0.25);
  border-radius: 50%;
  color: var(--ink-900);
  transition: background-color var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard);
}
.footer__social a:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #DCED6B;
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col-title {
  font-size: 0.8rem;
  font-weight: var(--w-semibold);
  color: var(--ink-900);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.8rem;
  color: var(--ink-500);
  transition: color var(--dur-base) var(--ease-standard);
}
.footer__col a:hover {
  color: var(--ink-900);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
  animation: pulse-wa 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1199px) {
  h1 { font-size: clamp(36px, 7vw, 80px); }
  h2 { font-size: clamp(24px, 4vw, 40px); }
  .problema, .solucion, .proceso, .planes, .casos, .resultados,
  .comparativo, .garantia, .faq, .cta-final {
    padding-top: var(--space-section-sm);
    padding-bottom: var(--space-section-sm);
  }
}

@media (max-width: 900px) {
  .solucion__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .solucion__visual { margin-top: 0.5rem; }
  .casos__grid { grid-template-columns: 1fr; }
  .comparativo__table {
    grid-template-columns: 1fr;
    gap: 1rem;
    border: none;
  }
  .comparativo__col { display: block; }
  .comparativo__col--header { display: none; }
  .comparativo__col--natural,
  .comparativo__col--sintetico {
    background: var(--accent-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.35);
  }
  .comparativo__cell {
    justify-content: space-between;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
  }
  .comparativo__cell::before {
    font-size: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .comparativo__col--natural .comparativo__cell:nth-child(2)::before,
  .comparativo__col--sintetico .comparativo__cell:nth-child(2)::before { content: 'Costo año 1'; }
  .comparativo__col--natural .comparativo__cell:nth-child(3)::before,
  .comparativo__col--sintetico .comparativo__cell:nth-child(3)::before { content: 'Costo 5 años'; }
  .comparativo__col--natural .comparativo__cell:nth-child(4)::before,
  .comparativo__col--sintetico .comparativo__cell:nth-child(4)::before { content: 'Riego'; }
  .comparativo__col--natural .comparativo__cell:nth-child(5)::before,
  .comparativo__col--sintetico .comparativo__cell:nth-child(5)::before { content: 'Jardinero'; }
  .comparativo__col--natural .comparativo__cell:nth-child(6)::before,
  .comparativo__col--sintetico .comparativo__cell:nth-child(6)::before { content: 'Mar-Jun'; }
  .comparativo__col--natural .comparativo__cell:nth-child(7)::before,
  .comparativo__col--sintetico .comparativo__cell:nth-child(7)::before { content: 'Descalzos'; }
  .comparativo__col--natural .comparativo__cell:nth-child(8)::before,
  .comparativo__col--sintetico .comparativo__cell:nth-child(8)::before { content: 'Duración'; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__columns { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-height: 600px) {
  .hero-wrap { padding: 6px; }
  .hero { padding-top: calc(12px + 48px + 1rem); padding-bottom: 1rem; min-height: calc(100vh - 12px); min-height: calc(100dvh - 12px); }
  .hero__scroll { display: none; }
  .hero__subtitle { font-size: 14px; }
  .hero__badges { gap: 0.5rem; }
  .hero__badge-item { font-size: 0.7rem; }
  .hero__badge-item br { display: none; }
  .hero__content { gap: 1.5rem; }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(32px, 9vw, 56px); }
  h2 { font-size: clamp(22px, 5vw, 27px); }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    right: -12px;
    background: var(--green-dark);
    padding: 1.5rem;
    gap: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--sh-md);
  }
  .nav__links.open .nav__link {
    color: var(--secondary-color);
  }
  .nav__links.open .nav__link:hover {
    color: var(--green-accent);
  }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__hamburger.open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav { top: 8px; left: 12px; right: 12px; }
  .hero-wrap { padding: 6px; }
  .hero { padding: calc(8px + 48px + 1rem) clamp(1rem, 4vw, 1.5rem) clamp(0.5rem, 3vh, 1rem); min-height: calc(100vh - 12px); min-height: calc(100dvh - 12px); border-radius: 20px; }
  .hero__content { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__badges { gap: 0.75rem; }
  .hero__badge-item { font-size: 12px; }
  .hero__badge-item br { display: none; }
  .hero__scroll { display: none; }
  .scratch-reveal { aspect-ratio: 16 / 9; }
  .ba-slider { aspect-ratio: 4/3; }
  .testimonios { grid-template-columns: 1fr; }
  .proceso__timeline::before { left: 31px; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .faq__question { font-size: 18px; padding: 12px 20px; }
}
