/* =================================================================
   ACTA. — Gestoría Digital · Demo web moderna
   Sistema de diseño Soft Structuralism + Bento + Glass premium
   Awsystems · Pack Asesoría · Mayo 2026
   ================================================================= */

/* -------- 0. Tokens de diseño (paleta bloqueante del briefing) -------- */
:root {
  /* Primarios */
  --ink:            #0A0A0F;
  --ink-2:          #0F0F12;
  --ink-95:         #1A1A1F;
  --white:          #FFFFFF;
  --off-white:      #FAFAF7;
  --gray-block:     #F4F4F0;
  --gray-mid:       #6B7280;
  --gray-text:      #4B5563;

  /* Acentos */
  --lime:           #C6F432;
  --lime-2:         #A8D925;
  --lime-soft:      rgba(198, 244, 50, 0.12);
  --lime-glow:      rgba(198, 244, 50, 0.30);

  /* Verde bosque (sección oscura premium) */
  --forest:         #1B3D2E;
  --forest-2:       #133024;
  --forest-deep:    #0D2118;

  /* Bordes */
  --border:         #E5E5E0;
  --border-strong:  #D4D4CE;
  --hairline-dark:  rgba(255, 255, 255, 0.10);
  --hairline-darkest: rgba(255, 255, 255, 0.05);

  /* Estados */
  --success:        #16A34A;
  --error:          #DC2626;

  /* Texto sobre oscuro */
  --on-dark:        #F5F5F0;
  --on-dark-mute:   #A8B0A8;
  --on-dark-soft:   #C5CCC5;

  /* Tipografía */
  --font-sans:      'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:      'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Espaciado */
  --container:      1280px;
  --container-narrow: 920px;
  --gutter:         24px;
  --gutter-md:      48px;
  --gutter-lg:      80px;

  /* Radios (briefing bloqueante) */
  --r-btn:          8px;
  --r-card:         12px;
  --r-block:        16px;
  --r-pill:         999px;

  /* Sombras */
  --shadow-soft:    0 1px 3px rgba(10, 10, 15, 0.04);
  --shadow-card:    0 4px 16px rgba(10, 10, 15, 0.06);
  --shadow-glass:   0 10px 30px -8px rgba(10, 10, 15, 0.08);
  --shadow-lime:    0 20px 60px -16px var(--lime-glow);

  /* Easings — el "expo out" Linear/Vercel */
  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:      cubic-bezier(0.4, 0, 0.2, 1);

  /* Header altura */
  --header-h:       72px;
  --header-h-mob:   60px;
}

/* -------- 1. Reset -------- */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--ink); opacity: 0.7; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Foco accesible — outline verde lima */
:focus-visible {
  outline: 2px solid var(--lime-2);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--lime); color: var(--ink); }

/* Numerales tabulares en monoespaciado */
.mono, .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--r-btn);
  font-size: 14px;
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; color: var(--white); opacity: 1; }

/* -------- 2. Container y layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

@media (min-width: 640px)  { .container { padding-left: var(--gutter-md); padding-right: var(--gutter-md); } }
@media (min-width: 1024px) { .container { padding-left: var(--gutter-lg); padding-right: var(--gutter-lg); } }

.section {
  padding: 88px 0;
  position: relative;
}
@media (min-width: 1024px) {
  .section { padding: 140px 0; }
}
@media (min-width: 1440px) {
  .section { padding: 160px 0; }
}
.section--alt    { background: var(--off-white); }
.section--ink    { background: var(--ink); color: var(--on-dark); }
.section--forest { background: var(--forest); color: var(--on-dark); }

.section__head {
  margin: 0 0 56px;
  max-width: 800px;
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .section__head { margin-bottom: 72px; }
}

/* -------- 3. Tipografía moderna -------- */
.h1, .h2, .h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.04em;
}

.h1 {
  font-size: clamp(44px, 6vw + 16px, 84px);
  line-height: 1.0;
  letter-spacing: -0.05em;
}
.h2 {
  font-size: clamp(32px, 3.6vw + 12px, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.h3 {
  font-size: clamp(22px, 0.7vw + 18px, 28px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.section--ink .h1, .section--ink .h2, .section--ink .h3,
.section--forest .h1, .section--forest .h2, .section--forest .h3 {
  color: var(--on-dark);
}

/* Highlight bar verde lima detrás de palabras clave (firma visual) */
.hl {
  background-image: linear-gradient(120deg, var(--lime) 0%, var(--lime) 100%);
  background-repeat: no-repeat;
  background-size: 100% 42%;
  background-position: 0 88%;
  padding: 0 4px;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Lead paragraph */
.lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--gray-text);
  margin: 0 0 28px;
  max-width: 60ch;
}
@media (min-width: 1024px) { .lead { font-size: 19px; } }
.section--ink .lead, .section--forest .lead { color: var(--on-dark-soft); }

/* Eyebrow — mayúsculas con tracking ancho */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin: 0 0 20px;
}
@media (min-width: 1024px) { .eyebrow { font-size: 13px; } }
.section--ink .eyebrow, .section--forest .eyebrow { color: var(--on-dark-mute); }

/* El punto verde lima — firma del logo y del copy */
.dot {
  color: var(--lime);
  font-weight: 700;
}

/* -------- 4. Scroll progress bar -------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--lime);
  width: 0%;
  z-index: 100;
  transition: width .1s linear;
}

/* -------- 5. Barra superior "Demo" -------- */
.demo-bar {
  background: var(--off-white);
  color: var(--gray-text);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 51;
}
.demo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px var(--gutter);
  flex-wrap: wrap;
  text-align: center;
}
.demo-bar__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.demo-bar__link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.demo-bar__link:hover { opacity: 1; color: var(--ink); }

/* -------- 6. Header (sticky + glassmorphism) -------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 var(--border), 0 4px 12px rgba(10, 10, 15, 0.04);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h-mob);
}
@media (min-width: 1024px) {
  .header__inner { height: var(--header-h); }
}

/* Logotipo acta. */
.logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.logo__dot {
  color: var(--lime-2);
  font-size: 1.05em;
  margin-left: 1px;
}
.logo:hover { color: var(--ink); opacity: 1; }
@media (min-width: 1024px) { .logo { font-size: 26px; } }
.logo--inverse { color: var(--on-dark); }
.logo--inverse:hover { color: var(--on-dark); }

/* Nav central desktop */
.nav-main {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-main a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  letter-spacing: -0.01em;
  padding: 8px 14px;
  border-radius: var(--r-btn);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-main a:hover {
  color: var(--ink);
  background: var(--gray-block);
  opacity: 1;
}
@media (min-width: 1024px) { .nav-main { display: inline-flex; } }

/* Right side: login + CTA */
.header-right {
  display: none;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) { .header-right { display: inline-flex; } }
.header-right .login-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  padding: 8px 14px;
}
.header-right .login-link:hover { color: var(--ink); opacity: 1; }

/* Hamburguesa móvil */
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-left: auto;
  border-radius: var(--r-btn);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger__lines {
  position: relative;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background .2s var(--ease);
}
.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), top .35s var(--ease), bottom .35s var(--ease);
}
.hamburger__lines::before { top: -6px; }
.hamburger__lines::after  { bottom: -6px; }
.hamburger.is-open .hamburger__lines { background: transparent; }
.hamburger.is-open .hamburger__lines::before { top: 0; transform: rotate(45deg); }
.hamburger.is-open .hamburger__lines::after  { bottom: 0; transform: rotate(-45deg); }

/* -------- 7. Menú móvil full-screen overlay -------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 24px;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h-mob);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: var(--r-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.mobile-menu__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 0;
}
.mobile-menu__links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 8px;
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .4s var(--ease), color .2s var(--ease);
}
.mobile-menu.is-open .mobile-menu__links a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.is-open .mobile-menu__links a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(3) { transition-delay: .20s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(5) { transition-delay: .32s; }
.mobile-menu__links a:hover { color: var(--gray-text); opacity: 1; }
.mobile-menu__index {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--lime-2);
  min-width: 30px;
}
.mobile-menu__foot {
  padding: 18px 0 calc(28px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
}
.mobile-menu__foot .btn { width: 100%; justify-content: center; }
body.scroll-locked { overflow: hidden; }

/* -------- 8. Botones (Button-in-Button pattern) -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
}
.btn:hover { opacity: 1; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--ink-95);
  color: var(--white);
  border-color: var(--ink-95);
}

.btn--lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.btn--lime:hover {
  background: var(--lime-2);
  color: var(--ink);
  border-color: var(--lime-2);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--gray-block);
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--lg  { padding: 14px 26px; font-size: 16px; min-height: 52px; }
.btn--full { width: 100%; }

.btn__arrow {
  display: inline-flex;
  transition: transform .3s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Magnetic micro-physics — botón hero */
.btn--magnetic {
  transform: translate(var(--mx, 0px), var(--my, 0px));
  will-change: transform;
}

/* Link sutil tipo "Ver cómo funciona" */
.link-quiet {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-text);
  padding: 10px 16px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color .2s var(--ease), color .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-quiet:hover {
  color: var(--ink);
  border-color: var(--ink);
  opacity: 1;
}

/* -------- 9. HERO (centrado SaaS) -------- */
.hero {
  padding: 64px 0 56px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding: 120px 0 100px; }
}
/* Glow muy sutil verde lima detrás del título */
.hero::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 80vw);
  height: 360px;
  background: radial-gradient(ellipse, var(--lime-glow), transparent 70%);
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin: 0 0 24px;
  display: inline-block;
  padding: 7px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}

.hero__title {
  margin: 0 auto 28px;
  max-width: 900px;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--gray-text);
  margin: 0 auto 32px;
  max-width: 600px;
}
@media (min-width: 1024px) { .hero__lead { font-size: 20px; } }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 0 0 24px;
}
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; justify-content: center; gap: 14px; }
}

.hero__trust {
  font-size: 13px;
  color: var(--gray-mid);
  margin: 0;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.hero__trust .dot { color: var(--lime-2); }

/* (Mockup del hero eliminado — el servicio es atención humana, no software) */

/* -------- 11. Marquee de confianza -------- */
.marquee {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--lime-2);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; }
}

/* -------- 12. Sección problema (3 cards) -------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.problem-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.problem-card__icon {
  width: 32px;
  height: 32px;
  color: var(--ink);
  margin-bottom: 22px;
}
.problem-card__title {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.problem-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-text);
}

/* -------- 13. BENTO GRID (sección solución, la pieza clave) -------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(0, auto);
    gap: 20px;
  }
}

.bento__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-block);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
@media (min-width: 1024px) {
  .bento__card { padding: 36px 32px; min-height: 320px; }
}

.bento__card--gray { background: var(--gray-block); border-color: transparent; }
.bento__card--lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.bento__card--ink  {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-dark);
}

/* Tamaños asimétricos en desktop */
@media (min-width: 768px) {
  .bento__card--span-2 { grid-column: span 2; }
  .bento__card--span-1 { grid-column: span 1; }
}

.bento__eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin: 0 0 16px;
}
.bento__card--lime .bento__eyebrow { color: var(--ink); opacity: 0.7; }
.bento__card--ink .bento__eyebrow  { color: var(--on-dark-mute); }

.bento__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 12px;
}
.bento__card--lime .bento__title { color: var(--ink); }
.bento__card--ink .bento__title  { color: var(--on-dark); }
@media (min-width: 1024px) {
  .bento__card--span-2 .bento__title { font-size: 30px; }
}

.bento__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-text);
  margin: 0;
  max-width: 44ch;
}
.bento__card--lime .bento__text { color: var(--ink); opacity: 0.85; }
.bento__card--ink .bento__text  { color: var(--on-dark-soft); }

.bento__icon {
  width: 32px;
  height: 32px;
  color: var(--ink);
  margin: 0 0 22px;
}
.bento__card--lime .bento__icon { color: var(--ink); }
.bento__card--ink .bento__icon  { color: var(--lime); }

.bento__visual {
  margin-top: auto;
  padding-top: 24px;
}

/* Visual: tag de modelo presentado */
.bento-tag-model {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.bento-tag-model__check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Visual: chat mockup en bento lime */
.bento-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-chat__bubble {
  background: var(--ink);
  color: var(--on-dark);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 13px;
  max-width: 80%;
  line-height: 1.45;
}
.bento-chat__bubble--self {
  align-self: flex-end;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px 14px 4px 14px;
  border: 1px solid var(--ink);
}

/* Visual: mini calendario */
.bento-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.bento-cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--gray-text);
}
.bento-cal__day--marked {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  font-weight: 600;
}

/* Visual: integraciones (tags) */
.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bento-tags__chip {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--on-dark-soft);
  border-radius: var(--r-pill);
}

/* -------- 14. Pasos cómo funciona -------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
.step {
  position: relative;
}
.step__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 56px;
  color: var(--lime-2);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}
@media (min-width: 1024px) { .step__num { font-size: 72px; } }
.step__title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.step__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-text);
  margin: 0;
  max-width: 40ch;
}

/* -------- 15. Pricing -------- */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: var(--gray-block);
  border-radius: var(--r-pill);
  margin: 0 auto 48px;
}
.pricing-toggle__btn {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  color: var(--gray-text);
  background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-toggle__btn.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.pricing-toggle__save {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--success);
  background: rgba(22, 163, 74, 0.12);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-block);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.plan:hover { border-color: var(--ink); transform: translateY(-2px); }
.plan--featured {
  border: 2px solid var(--lime);
  padding-top: 48px;
  box-shadow: 0 24px 60px -20px var(--lime-glow);
}
@media (min-width: 1024px) {
  .plan--featured { transform: translateY(-8px); }
  .plan--featured:hover { transform: translateY(-12px); }
}
.plan__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.plan__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin: 0 0 8px;
}
.plan__desc {
  font-size: 14px;
  color: var(--gray-text);
  margin: 0 0 22px;
  line-height: 1.5;
  min-height: 42px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
  margin: 0 0 4px;
}
.plan__price-num {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
@media (min-width: 1024px) { .plan__price-num { font-size: 56px; } }
.plan__price-unit {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--gray-text);
  font-weight: 500;
}
.plan__price-iva {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gray-mid);
  margin-left: 4px;
}
.plan__terms {
  font-size: 12.5px;
  color: var(--gray-mid);
  font-family: var(--font-mono);
  margin: 6px 0 0;
}
.plan__divider {
  height: 1px;
  background: var(--border);
  margin: 26px 0 22px;
}
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--gray-text);
  line-height: 1.5;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lime-soft);
  border: 1px solid var(--lime-2);
}
.plan__list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}
.pricing__note {
  text-align: center;
  margin: 36px auto 0;
  max-width: 640px;
  font-size: 13.5px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* -------- 16. Sección PANEL (verde bosque oscuro premium) -------- */
.section--forest {
  position: relative;
  overflow: hidden;
}
.section--forest::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(198, 244, 50, 0.15), transparent 60%);
  filter: blur(80px);
  opacity: 0.7;
  pointer-events: none;
}
.section--forest > * { position: relative; z-index: 1; }

.section--forest .section__head { text-align: center; margin-left: auto; margin-right: auto; }
.section--forest .lead { text-align: center; margin-left: auto; margin-right: auto; }

/* -------- Sección 7 — Stats + Quote del fundador -------- */

/* Tres stats grandes editoriales */
.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .stat-row { grid-template-columns: repeat(3, 1fr); gap: 48px; text-align: left; }
}
.stat {
  padding: 28px 24px;
  background: rgba(198, 244, 50, 0.04);
  border: 1px solid rgba(198, 244, 50, 0.18);
  border-radius: var(--r-block);
  position: relative;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 244, 50, 0.4), transparent);
  border-radius: var(--r-block) var(--r-block) 0 0;
}
.stat__num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(48px, 5vw + 20px, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime);
  margin: 0 0 14px;
}
.stat__num .dot { color: var(--lime); }
.stat__label {
  font-size: 14.5px;
  color: var(--on-dark-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 28ch;
}
@media (min-width: 768px) {
  .stat__label { margin: 0; }
}

/* Quote editorial del fundador */
.quote {
  max-width: 920px;
  margin: 72px auto 0;
  text-align: center;
  padding: 0 24px;
}
@media (min-width: 1024px) { .quote { margin-top: 96px; } }
.quote__text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw + 12px, 34px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  margin: 0 0 28px;
  position: relative;
}
.quote__author {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--on-dark);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.quote__role {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--on-dark-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* 4 checks del servicio (debajo del quote) */
.service-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 72px auto 0;
}
@media (min-width: 768px) {
  .service-checks { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}
.service-checks__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--on-dark-soft);
  font-weight: 500;
  line-height: 1.4;
}
.service-checks__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* -------- 17. Equipo -------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.member__photo {
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-block);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 22px;
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.02);
  transition: transform .8s var(--ease);
}
.member:hover .member__photo img { transform: scale(1.03); }
.member__name {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.member__role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-2);
  margin: 0 0 14px;
}
.member__bio {
  font-size: 14.5px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0 0 18px;
}
.member__social {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.member__social:hover { color: var(--ink); opacity: 0.6; }

/* -------- 18. Testimonios -------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.testimonial:hover { border-color: var(--ink); transform: translateY(-2px); }
.testimonial__quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.testimonial__divider {
  height: 1px;
  background: var(--border);
}
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial__name {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.testimonial__role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--gray-mid);
  margin: 2px 0 0;
  letter-spacing: 0.04em;
}

/* -------- 19. Blog magazine -------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.article {
  display: flex;
  flex-direction: column;
}
.article__cover {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  position: relative;
}
.article__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.article:hover .article__cover img { transform: scale(1.03); }
.article__cover--gradient-1 { background: linear-gradient(135deg, var(--gray-block), var(--off-white)); }
.article__cover--gradient-2 { background: linear-gradient(135deg, var(--lime-soft), var(--off-white)); }
.article__cover--gradient-3 { background: linear-gradient(135deg, var(--ink), var(--forest)); }

.article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}
.article__badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 4px;
}
.article__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}
.article__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 12px;
}
.article__excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-text);
  margin: 0 0 14px;
  flex: 1;
}
.article__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--lime);
  padding-bottom: 1px;
  align-self: flex-start;
}
.article__link:hover { opacity: 0.6; }

/* -------- 20. FAQ -------- */
.faq {
  border-top: 1px solid var(--border);
}
.faq__item {
  border-bottom: 1px solid var(--border);
  transition: background-color .3s var(--ease);
}
.faq__item[open] { background: var(--off-white); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  min-height: 64px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after,
.faq__q::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), background-color .3s var(--ease);
}
.faq__q::before { transform: translateY(-50%) rotate(90deg); }
.faq__q::after  { transform: translateY(-50%); }
.faq__item[open] .faq__q::before {
  transform: translateY(-50%) rotate(0);
  background: var(--lime-2);
}
.faq__item[open] .faq__q::after { background: var(--lime-2); }
.faq__a {
  padding: 0 56px 26px 0;
  color: var(--gray-text);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 70ch;
}
.faq__a p { margin: 0; }

/* -------- 21. CTA final (sección ink) -------- */
.section--ink {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.section--ink::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, var(--lime-glow), transparent 60%);
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.section--ink > * { position: relative; z-index: 1; }

.cta-final__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}
@media (min-width: 640px) {
  .cta-final__ctas { flex-direction: row; gap: 14px; }
}
.cta-final__microcopy {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--on-dark-mute);
  margin: 0;
  letter-spacing: 0.04em;
}

/* -------- 22. Formulario -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
}
.contact-info__block { margin-bottom: 24px; }
.contact-info__block h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin: 0 0 8px;
}
.contact-info__block p, .contact-info__block address {
  margin: 0;
  font-style: normal;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
}
.contact-info__block a {
  color: var(--ink);
  border-bottom: 1.5px solid var(--lime);
}
.contact-info__block a:hover { opacity: 0.7; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-block);
  padding: 32px 24px;
}
@media (min-width: 768px) { .form-card { padding: 40px; } }

.form { display: grid; gap: 20px; }
.form__group { display: grid; gap: 8px; }
.form__group label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.form__group label .req { color: var(--lime-2); }

.form__group input[type="text"],
.form__group input[type="email"],
.form__group input[type="tel"],
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-btn);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 48px;
}
.form__group textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A0A0F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 10, 15, 0.06);
}
.form__group input.is-invalid,
.form__group select.is-invalid,
.form__group textarea.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}
.form__microcopy {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-mid);
  margin: 4px 0 0;
  letter-spacing: 0.04em;
}

.btn.is-loading { opacity: .9; cursor: progress; pointer-events: none; }
.btn.is-loading .btn__label::after {
  content: "...";
  animation: dots 1.4s steps(4) infinite;
  display: inline-block;
  width: 14px;
  text-align: left;
}
@keyframes dots {
  0%, 20% { content: ""; }
  40% { content: "."; }
  60% { content: ".."; }
  80%, 100% { content: "..."; }
}

/* Form success */
.form-success {
  background: var(--off-white);
  border: 1px solid var(--lime);
  border-radius: var(--r-block);
  padding: 40px 28px;
  text-align: center;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.form-success__text {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

/* -------- 23. Footer -------- */
.footer {
  background: var(--ink);
  color: var(--on-dark-mute);
  padding: 64px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-dark);
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; } }

.footer__brand .logo { font-size: 26px; margin-bottom: 16px; }
.footer__tagline {
  font-size: 14.5px;
  color: var(--on-dark-soft);
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 30ch;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
  border: 1px solid var(--hairline-dark);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.footer__social a:hover { background: var(--lime); color: var(--ink); opacity: 1; }

.footer h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin: 0 0 16px;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__list a { color: var(--on-dark-soft); font-size: 14px; }
.footer__list a:hover { color: var(--lime); opacity: 1; }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--on-dark-mute);
  letter-spacing: 0.02em;
}
.footer__bottom a {
  color: var(--on-dark-soft);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 3px;
}
.footer__bottom a:hover { color: var(--lime); opacity: 1; }

/* -------- 24. FAB WhatsApp (solo móvil) -------- */
.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: 0 8px 24px rgba(10, 10, 15, 0.3);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s var(--ease);
  pointer-events: none;
}
.fab-whatsapp.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-whatsapp:hover { color: var(--white); opacity: 1; background: var(--ink-95); }
@media (max-width: 1023px) { .fab-whatsapp { display: inline-flex; } }

/* -------- 25. Cookies banner -------- */
.cookies {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 60;
  transform: translateY(calc(100% + 30px));
  transition: transform .5s var(--ease);
  box-shadow: var(--shadow-card);
  max-width: calc(100% - 32px);
}
@media (min-width: 768px) {
  .cookies {
    flex-direction: row;
    align-items: center;
    bottom: 24px;
    left: 24px;
    max-width: 640px;
  }
}
.cookies.is-visible { transform: translateY(0); }
.cookies__text { margin: 0; font-size: 13px; color: var(--gray-text); line-height: 1.5; flex: 1; }
.cookies__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookies .btn { padding: 8px 14px; font-size: 13px; min-height: 36px; }

/* -------- 26. Reveal animations -------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
