/* ============================================================================
   Factura lista — hoja de estilos única
   ----------------------------------------------------------------------------
   Todo el CSS vive acá (cero atributos style= en el HTML) para que la CSP
   pueda ser `style-src 'self'` sin 'unsafe-inline'. Misma razón para app.js.
   Referencia de valores: IMPLEMENTACION-Factura-lista-web.md (spec aprobada).
   Eje cromático de marca PIA: OKLCH H=12.
   ========================================================================= */

/* ── Fuente Fraunces, self-hosteada ─────────────────────────────────────────
   Se sirve desde el propio origen: la CSP no abre fonts.googleapis.com ni
   fonts.gstatic.com y no se filtra IP/user-agent del visitante a Google
   (mismo criterio con el que se cerró el hallazgo EF6 del panel).            */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('assets/fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('assets/fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Tokens ───────────────────────────────────────────────────────────────── */
:root {
  /* Marca PIA (H=12) */
  --bg: #160305;
  --bg-darker: #100204;
  --surface: #23060c;
  --bordeaux: #7b0f2e;
  --primary: #8f0d35;
  --primary-hover: #a8123f;
  --glow: #d54563;
  --rose: #f0c4c8;
  --fg: #faf4ef;
  --muted: #ab9a97;

  /* Secciones claras */
  --light-bg: #f7f2f1;
  --light-surface: #f0eeec;
  --light-line: #e3ddd9;
  --rose-tint: #f7e9ea;
  --rose-tint-2: #f7e2e3;
  --rose-tint-3: #f7ecec;
  --rose-line: #edccce;
  --text: #1a0505;
  --text-muted: #6b6765;
  --text-faint: #9e9a97;

  /* Funcionales */
  --whatsapp: #25d366;
  --whatsapp-btn: #16a34a;
  --whatsapp-btn-hover: #128a3e;
  --online: #3ddc84;
  --pdf: #c0392b;

  /* Alfas recurrentes sobre oscuro */
  --card-dark: rgba(250, 244, 239, .05);
  --line-dark: rgba(240, 196, 200, .16);
  --line-dark-soft: rgba(240, 196, 200, .12);
  --ghost-bg: rgba(250, 244, 239, .06);
  --ghost-border: rgba(240, 196, 200, .3);
  --chip-dark: rgba(213, 69, 99, .14);

  /* Ritmo */
  --pad-x: clamp(18px, 3.4cqi, 44px);
  --pad-y: clamp(50px, 7cqi, 100px);
  --max-w: 1180px;
  --grano: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
}

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

html { -webkit-text-size-adjust: 100%; }

body,
button,
input,
select,
textarea { font-family: Fraunces, Georgia, 'Times New Roman', serif; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p { text-wrap: pretty; }

a { color: var(--bordeaux); text-decoration: none; }
a:hover { color: var(--primary); }

img { max-width: 100%; }

/* `hidden` tiene que ganarle a los display: grid/flex de los componentes
   (las pestañas de planes ocultan su panel con esta propiedad). */
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
  border-radius: 4px;
}

.fl-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--fg);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
}
.fl-skip:focus { left: 0; color: var(--bg); }

.fl-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Animaciones ──────────────────────────────────────────────────────────── */
@keyframes flFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes flMsg { from { opacity: 0; transform: translateY(6px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes flPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.82); } }

/* ── Lienzo ───────────────────────────────────────────────────────────────── */
.fl-page {
  container-type: inline-size;
  width: 100%;
  margin: 0 auto;
  background: var(--light-surface);
  overflow-x: clip;
}

.fl-wrap {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.fl-grano {
  position: absolute;
  inset: 0;
  background-image: var(--grano);
  background-size: 3px 3px;
  pointer-events: none;
}

/* Tela compartida header + hero + banda "20 segundos" (§5.1 de la spec).
   Lienzo de 1800px con los radiales apagados antes del final: si el contenido
   crece, abajo queda el color final del degradé y no aparece ningún corte. */
.fl-tela {
  background-color: var(--bg-darker);
  background-image:
    radial-gradient(ellipse 70% 65% at 72% 25%, rgba(213, 69, 99, .26), transparent 72%),
    radial-gradient(ellipse 78% 52% at 60% -6%, rgba(143, 13, 53, .5), transparent 74%),
    linear-gradient(180deg, #160305 0%, #130205 24%, #100204 44%, #100204 100%);
  background-size: 100% 1800px;
  background-repeat: no-repeat;
  /* -67px = alto real del header (66.8px): el degradé del menú y el del hero
     son continuos. Si cambia el alto del header, actualizar este valor. */
  background-position: center -67px;
}

/* Bloque oscuro intermedio (§5.2) */
.fl-bloque {
  background-color: #130205;
  background-image:
    var(--grano),
    radial-gradient(ellipse 66% 38% at 68% 0%, rgba(143, 13, 53, .55), transparent 72%),
    radial-gradient(ellipse 58% 42% at 92% 100%, rgba(213, 69, 99, .24), transparent 70%),
    linear-gradient(180deg, #160305, #100204);
  background-size: 3px 3px, 100% 100%, 100% 100%, 100% 100%;
}

/* Bloque oscuro final (testimonios → footer) */
.fl-bloque--final {
  background-image:
    var(--grano),
    radial-gradient(ellipse 70% 34% at 14% 0%, rgba(143, 13, 53, .5), transparent 66%),
    radial-gradient(ellipse 62% 40% at 92% 100%, rgba(213, 69, 99, .2), transparent 70%),
    linear-gradient(180deg, #160305, #100204);
}

/* ── Secciones ────────────────────────────────────────────────────────────── */
.fl-sec { padding: var(--pad-y) var(--pad-x); }
.fl-sec--claro { background: var(--light-bg); }
.fl-sec--linea { border-top: 1px solid var(--line-dark); }
.fl-sec--linea-clara { border-top: 1px solid var(--light-line); }
.fl-sec--linea-clara-b { border-bottom: 1px solid var(--light-line); }

.fl-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(30px, 4cqi, 60px);
  align-items: center;
}
.fl-grid-2--chat {
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(30px, 4cqi, 60px);
  justify-items: center;
}

.fl-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 16px;
}
.fl-eyebrow--oscuro { color: var(--glow); }

.fl-h2 {
  font-weight: 300;
  font-size: clamp(27px, 4.4cqi, 42px);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.fl-h2--oscuro { color: var(--fg); }
.fl-h2--chico { font-size: clamp(25px, 3.8cqi, 38px); }

.fl-parr {
  font-size: clamp(15px, 1.7cqi, 17.5px);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 26px;
}
.fl-parr--oscuro { color: var(--rose); }

.fl-encab {
  max-width: 640px;
  margin: 0 auto clamp(30px, 3.6cqi, 52px);
  text-align: center;
}
.fl-encab--ancho { max-width: 660px; margin-bottom: clamp(28px, 3.4cqi, 48px); }
.fl-encab .fl-parr { margin-bottom: 0; line-height: 1.6; }
.fl-encab .fl-h2 { margin-bottom: 16px; }

/* ── Botones ──────────────────────────────────────────────────────────────── */
.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.fl-btn--claro {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}
.fl-btn--claro:hover { background: var(--rose); color: var(--bg); }

.fl-btn--fantasma {
  background: var(--ghost-bg);
  border: 1px solid var(--ghost-border);
  color: var(--fg);
  padding: 14px 22px;
}
.fl-btn--fantasma:hover { border-color: var(--rose); color: var(--rose); }

.fl-btn--wa { background: var(--whatsapp-btn); color: var(--fg); }
.fl-btn--wa:hover { background: var(--whatsapp-btn-hover); color: var(--fg); }

.fl-btn--hero {
  font-size: 15.5px;
  padding: 15px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}
.fl-btn--hero.fl-btn--claro:hover { transform: translateY(-1px); }
.fl-btn--hero.fl-btn--fantasma { padding: 15px 24px; box-shadow: none; }

.fl-btn--grande {
  font-size: 16px;
  padding: 16px 30px;
  min-height: 50px;
}
.fl-btn--grande.fl-btn--wa { padding: 16px 26px; }

.fl-btn-fila {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fl-btn-fila--centro { justify-content: center; margin-top: 6px; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.fl-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(19, 2, 5, .66);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, backdrop-filter .25s ease;
}
.fl-header__tela {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity .25s ease;
  background-image:
    radial-gradient(ellipse 70% 65% at 72% 25%, rgba(213, 69, 99, .26), transparent 72%),
    radial-gradient(ellipse 78% 52% at 60% -6%, rgba(143, 13, 53, .5), transparent 74%),
    linear-gradient(180deg, #160305 0%, #130205 24%, #100204 44%, #100204 100%);
  background-size: 100% 1800px;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}
/* Al scrollear el menú se difumina un 10% y aparece su línea inferior. */
.fl-header.is-scrolled { border-bottom-color: var(--line-dark); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.fl-header.is-scrolled .fl-header__tela { opacity: .9; }

.fl-header__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px clamp(16px, 3.4cqi, 44px);
  display: flex;
  align-items: center;
  gap: 18px;
}

.fl-marca { display: flex; align-items: center; gap: 9px; flex: none; }
.fl-marca__logo {
  width: 46px;
  height: 46px;
  display: block;
  flex: none;
  /* El PNG viene con fondo opaco bordeaux: `screen` lo disuelve en la tela
     oscura. Nunca recortar el logo ni ponerle caja, borde o sombra. */
  mix-blend-mode: screen;
}
.fl-marca__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fl-marca__txt { display: flex; flex-direction: column; line-height: 1; }
.fl-marca__nombre {
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -.02em;
  color: var(--fg);
  white-space: nowrap;
}
.fl-marca__nombre:hover { color: var(--rose); }
.fl-marca__by {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  white-space: nowrap;
}
.fl-marca__by a { font-size: 9.5px; font-weight: 500; letter-spacing: .14em; color: var(--rose); }
.fl-marca__by a:hover { color: var(--fg); }

.fl-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 14.5px;
}
.fl-nav a { color: var(--muted); white-space: nowrap; }
.fl-nav a:hover { color: var(--fg); }

.fl-header__cta { display: flex; align-items: center; gap: 10px; }
.fl-btn--header {
  background: var(--primary);
  color: var(--fg);
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(213, 69, 99, .28);
}
.fl-btn--header:hover { background: var(--primary-hover); color: var(--fg); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.fl-hero {
  position: relative;
  padding: clamp(44px, 6.6cqi, 88px) var(--pad-x) clamp(50px, 6.6cqi, 92px);
  overflow: hidden;
}
.fl-hero__col { animation: flFade .6s ease both; }
.fl-hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  animation: flFade .8s ease both;
}
.fl-hero__halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 69, 99, .30), transparent 66%);
  filter: blur(26px);
  pointer-events: none;
}
.fl-hero__chat {
  position: relative;
  width: 100%;
  max-width: 375px;
  height: auto;
  display: block;
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, .55)) drop-shadow(0 6px 14px rgba(0, 0, 0, .35));
}
.fl-hero__chat:hover { transform: scale(1.04); }

.fl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--chip-dark);
  border: 1px solid rgba(240, 196, 200, .26);
  color: var(--rose);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.fl-punto {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--online);
  flex: none;
  animation: flPulse 2s ease-in-out infinite;
}

.fl-h1 {
  font-weight: 300;
  font-size: clamp(34px, 6.4cqi, 62px);
  line-height: 1.03;
  letter-spacing: -.03em;
  margin: 0 0 20px;
  text-wrap: balance;
  color: var(--fg);
}
.fl-h1 .fl-wa { color: var(--whatsapp); }

.fl-hero__parr {
  font-size: clamp(15.5px, 1.75cqi, 18.5px);
  line-height: 1.62;
  color: var(--rose);
  margin: 0 0 30px;
  max-width: 33em;
}
.fl-hero__botones { margin-bottom: 22px; }
.fl-hero__pie { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ── Banda "20 segundos" ──────────────────────────────────────────────────── */
.fl-banda {
  border-top: 1px solid var(--line-dark);
  padding: clamp(32px, 4cqi, 52px) var(--pad-x);
}
.fl-banda__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 2.4cqi, 36px);
}
.fl-banda__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
}
.fl-banda__cifra {
  font-weight: 400;
  font-size: clamp(28px, 3.6cqi, 40px);
  letter-spacing: -.02em;
  color: var(--rose);
  line-height: 1;
}
.fl-banda__txt { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ── Chat interactivo ─────────────────────────────────────────────────────── */
.fl-chat {
  width: 100%;
  max-width: 375px;
  height: 666px;
  display: flex;
  flex-direction: column;
  background: var(--light-surface);
  border: 1px solid var(--light-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(22, 3, 5, .16);
}
.fl-chat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #23060c, #1a0407);
  flex: none;
}
.fl-chat__logo { width: 36px; height: 36px; display: block; flex: none; mix-blend-mode: screen; }
.fl-chat__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fl-chat__ident { display: flex; flex-direction: column; line-height: 1.25; }
.fl-chat__nombre { font-size: 14.5px; font-weight: 600; color: var(--fg); }
.fl-chat__estado { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: #8fd9a8; }
.fl-chat__estado .fl-punto { background: var(--whatsapp-btn); }

/* No usar justify-content:flex-end acá: rompe el scroll de la lista. */
.fl-chat__lista {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 12px;
  background: #efe7e1;
}
.fl-msg { display: flex; flex: none; }
.fl-msg--yo { justify-content: flex-end; }
.fl-msg--bot { justify-content: flex-start; }
.fl-msg__burbuja {
  max-width: 84%;
  padding: 9px 12px;
  font-size: 13px;
  line-height: 1.48;
  white-space: pre-line;
  overflow-wrap: break-word;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(22, 3, 5, .08);
  animation: flMsg .3s ease both;
}
.fl-msg--yo .fl-msg__burbuja {
  background: #f6e2e3;
  border: 1px solid #eccdcf;
  border-radius: 14px 14px 4px 14px;
}
.fl-msg--bot .fl-msg__burbuja {
  background: var(--light-bg);
  border: 1px solid var(--light-line);
  border-radius: 14px 14px 14px 4px;
}
.fl-adj { display: flex; align-items: center; gap: 10px; }
.fl-adj--con-texto { margin-bottom: 8px; }
.fl-adj__chip {
  width: 30px;
  height: 36px;
  border-radius: 5px;
  color: var(--fg);
  font-size: 8.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fl-adj__chip--pdf { background: var(--pdf); }
.fl-adj__chip--xlsx { background: var(--whatsapp-btn); }
.fl-adj__chip--zip { background: var(--bordeaux); }
.fl-adj__datos { display: grid; grid-auto-flow: row; min-width: 0; gap: 2px; }
.fl-adj__nombre { display: block; font-weight: 600; font-size: 12.5px; line-height: 1.3; overflow-wrap: break-word; }
.fl-adj__meta { display: block; font-size: 11px; line-height: 1.3; color: var(--text-faint); }

.fl-typing { display: flex; justify-content: flex-start; flex: none; }
.fl-typing__caja {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px 14px 14px 4px;
  background: var(--light-bg);
  border: 1px solid var(--light-line);
}
.fl-typing__caja span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: flPulse 1.1s ease-in-out infinite;
}
.fl-typing__caja span:nth-child(2) { animation-delay: .18s; }
.fl-typing__caja span:nth-child(3) { animation-delay: .36s; }

/* Los chips solo sirven con JS: sin JS no se muestran y el chat queda como
   una captura fija de la conversación. */
.fl-chat__pie { display: none; }
.js .fl-chat__pie {
  display: block;
  flex: none;
  padding: 10px 12px 12px;
  background: var(--light-surface);
  border-top: 1px solid var(--light-line);
}
.fl-chat__rotulo {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.fl-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.fl-chip {
  background: var(--rose-tint);
  border: 1px solid var(--rose-line);
  color: var(--bordeaux);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  min-height: 38px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.fl-chip:hover { border-color: var(--primary); }
.fl-chip.is-activo { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--fg); }

/* ── Lista de ticks ───────────────────────────────────────────────────────── */
.fl-ticks { display: flex; flex-direction: column; gap: 14px; }
.fl-tick { display: flex; gap: 12px; align-items: flex-start; }
.fl-tick__ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--bordeaux);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}
.fl-tick__txt { font-size: 15px; line-height: 1.55; color: var(--text); }

/* ── Cómo funciona ────────────────────────────────────────────────────────── */
.fl-pasos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2cqi, 26px);
}
.fl-paso {
  background: var(--light-surface);
  border: 1px solid var(--light-line);
  border-radius: 18px;
  padding: clamp(22px, 2.6cqi, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.fl-paso__n { font-size: 34px; font-weight: 300; color: var(--glow); line-height: 1; }
.fl-paso h3 { font-size: 18px; font-weight: 600; margin: 0; letter-spacing: -.01em; }
.fl-paso p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.fl-paso strong { color: var(--text); }

/* ── Tarjeta sobre oscuro ─────────────────────────────────────────────────── */
.fl-card {
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
}

/* ── Números en vivo ──────────────────────────────────────────────────────── */
.fl-num-sec { padding: clamp(50px, 7cqi, 96px) var(--pad-x); }
.fl-num__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(26px, 3cqi, 42px);
}
.fl-num__head .fl-h2 { margin: 0; text-align: center; }
.fl-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--rose);
  background: var(--chip-dark);
  border: 1px solid rgba(240, 196, 200, .22);
  white-space: nowrap;
  padding: 6px 11px;
  border-radius: 999px;
}
.fl-nums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(14px, 1.8cqi, 22px);
}
.fl-num {
  padding: clamp(24px, 2.8cqi, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.fl-num__cifra {
  font-weight: 400;
  font-size: clamp(38px, 5.4cqi, 58px);
  letter-spacing: -.03em;
  color: var(--rose);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fl-num__label { font-size: 15px; font-weight: 600; color: var(--fg); }
.fl-num__desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ── Carga masiva ─────────────────────────────────────────────────────────── */
.fl-bullets { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.fl-bullet { font-size: 15px; color: var(--fg); display: flex; gap: 10px; }
.fl-bullet::before { content: '·'; color: var(--glow); font-weight: 700; }

.fl-xls {
  background: var(--fg);
  border: 1px solid var(--rose-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .45);
}
.fl-xls__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  background: var(--rose-tint-2);
  border-bottom: 1px solid var(--rose-line);
}
.fl-xls__ico {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--whatsapp-btn);
  color: var(--fg);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fl-xls__nombre { font-size: 13.5px; font-weight: 600; }
.fl-xls__filas { margin-left: auto; font-size: 11.5px; color: var(--text-muted); }
.fl-xls__fila {
  display: grid;
  grid-template-columns: 1.6fr 1fr .9fr;
  padding: 13px 18px;
  font-size: 13.5px;
  border-bottom: 1px solid #f0eae7;
  align-items: center;
}
.fl-xls__fila--head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 11px 18px;
  border-bottom: 1px solid var(--light-line);
}
.fl-xls__concepto { color: var(--text-muted); }
.fl-xls__importe { text-align: right; font-variant-numeric: tabular-nums; }
.fl-xls__pie {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--rose-tint-3);
}
.fl-xls__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--whatsapp-btn);
  color: var(--fg);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fl-xls__pie span:last-child { font-size: 13px; color: var(--text-muted); }

/* ── Qué ganás ────────────────────────────────────────────────────────────── */
.fl-ganas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2cqi, 24px);
}
.fl-gana { padding: clamp(22px, 2.6cqi, 30px); text-align: center; }
.fl-gana__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(213, 69, 99, .16);
  margin: 0 auto 16px;
}
.fl-gana h3 { font-size: 17px; font-weight: 600; margin: 0 0 9px; color: var(--fg); }
.fl-gana p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ── Para contadores ──────────────────────────────────────────────────────── */
.fl-contadores { padding: clamp(52px, 7cqi, 104px) var(--pad-x); }
.fl-contadores .fl-h2 { font-size: clamp(27px, 4.6cqi, 44px); line-height: 1.08; }
.fl-contadores__parr-1 {
  font-size: clamp(15px, 1.75cqi, 18px);
  line-height: 1.65;
  color: var(--rose);
  margin: 0 0 20px;
  max-width: 34em;
}
.fl-contadores__parr-2 {
  font-size: clamp(14.5px, 1.6cqi, 16.5px);
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 34em;
}
.fl-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 8px;
}
.fl-panel__fila { display: flex; gap: 14px; padding: 15px 16px; align-items: flex-start; }
.fl-panel__n { font-size: 15px; color: var(--glow); flex: none; width: 22px; }
.fl-panel__txt { font-size: 14.5px; line-height: 1.55; color: var(--fg); }
.fl-panel__txt strong { font-weight: 600; }
.fl-panel__txt span { color: var(--muted); }
.fl-panel__linea { height: 1px; background: var(--line-dark-soft); margin: 0 16px; }

/* ── Planes ───────────────────────────────────────────────────────────────── */
.fl-planes__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: clamp(26px, 3cqi, 42px);
}
.fl-planes__head .fl-h2 { margin: 0; }
.fl-planes__head .fl-parr { margin: 0; max-width: 34em; }
.fl-planes__head .fl-eyebrow { margin-bottom: 0; }

.fl-tabs {
  display: inline-flex;
  background: var(--light-surface);
  border: 1px solid var(--light-line);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
  margin-top: 6px;
}
.fl-tab {
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 11px 20px;
  border-radius: 999px;
  min-height: 44px;
  background: transparent;
  color: var(--text-muted);
  transition: background-color .2s ease, color .2s ease;
}
.fl-tab[aria-selected='true'] { background: var(--bordeaux); color: var(--fg); }

.fl-planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(16px, 2cqi, 24px);
}
.fl-planes-grid--negocio {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  max-width: 820px;
  margin: 0 auto;
}
.fl-plan {
  background: var(--light-surface);
  border: 1px solid var(--light-line);
  border-radius: 20px;
  padding: clamp(24px, 2.8cqi, 34px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.fl-planes-grid--negocio .fl-plan { padding: clamp(26px, 3cqi, 36px); }
.fl-plan--destacado {
  border: 1.5px solid var(--bordeaux);
  box-shadow: 0 20px 48px rgba(123, 15, 46, .14);
}
.fl-plan__cinta {
  position: absolute;
  top: -11px;
  left: clamp(24px, 2.8cqi, 34px);
  background: var(--bordeaux);
  color: var(--fg);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.fl-planes-grid--negocio .fl-plan__cinta { left: clamp(26px, 3cqi, 36px); }
.fl-plan__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 12px;
}
.fl-plan__precio {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin-bottom: 8px;
}
.fl-plan__importe {
  font-weight: 400;
  font-size: clamp(30px, 4cqi, 42px);
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--text);
}
.fl-planes-grid--negocio .fl-plan__importe { font-size: clamp(32px, 4.2cqi, 44px); }
.fl-plan__mes { font-size: 14px; color: var(--text-muted); }
.fl-plan__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
  margin: 0 0 22px;
}
.fl-plan__items { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.fl-plan__item { font-size: 14.5px; display: flex; gap: 10px; line-height: 1.5; }
.fl-plan__item::before { content: '✓'; color: var(--bordeaux); font-weight: 700; }
.fl-plan__cta {
  margin-top: auto;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 12px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.fl-plan__cta--sec {
  background: var(--light-bg);
  border: 1px solid var(--light-line);
  color: var(--text);
}
.fl-plan__cta--sec:hover { border-color: var(--bordeaux); color: var(--bordeaux); }
.fl-plan__cta--pri { background: var(--bordeaux); color: var(--fg); }
.fl-plan__cta--pri:hover { background: var(--primary); color: var(--fg); }
.fl-plan__cta--claro { background: var(--fg); color: var(--bg); }
.fl-plan__cta--claro:hover { background: var(--rose); color: var(--bg); }

.fl-plan--oscuro {
  background: linear-gradient(180deg, #23060c, #160305);
  border: 1px solid var(--line-dark);
}
.fl-plan--oscuro .fl-plan__label { color: var(--glow); }
.fl-plan--oscuro .fl-plan__importe { color: var(--fg); }
.fl-plan--oscuro .fl-plan__desc { color: var(--rose); }
.fl-plan--oscuro .fl-plan__item { color: var(--fg); }
.fl-plan--oscuro .fl-plan__item::before { color: var(--glow); }

.fl-planes__nota { text-align: center; font-size: 13px; color: var(--text-faint); margin: 26px 0 0; }

/* ── Testimonios ──────────────────────────────────────────────────────────── */
.fl-testi-sec { padding: clamp(50px, 7cqi, 96px) var(--pad-x); }
.fl-testi-sec .fl-h2 { text-align: center; margin: 0 0 clamp(26px, 3cqi, 42px); }
.fl-testis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(16px, 2cqi, 24px);
}
.fl-testi {
  padding: clamp(24px, 2.8cqi, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.fl-testi__cita {
  font-weight: 300;
  font-size: clamp(17px, 2cqi, 20px);
  line-height: 1.45;
  color: var(--fg);
  margin: 0;
}
.fl-testi__autor { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.fl-testi__av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(213, 69, 99, .2);
  color: var(--rose);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fl-testi__quien { display: flex; flex-direction: column; text-align: left; }
.fl-testi__nombre { font-size: 14px; font-weight: 600; color: var(--fg); }
.fl-testi__rol { font-size: 12.5px; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.fl-faq { max-width: 820px; margin: 0 auto; }
.fl-faq .fl-h2 { text-align: center; margin: 0 0 clamp(24px, 2.8cqi, 36px); }
.fl-faq__lista { display: flex; flex-direction: column; gap: 10px; }
.fl-faq__item {
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
}
.fl-faq__item summary {
  width: 100%;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  min-height: 56px;
  transition: background-color .2s ease;
}
.fl-faq__item summary::-webkit-details-marker { display: none; }
.fl-faq__item summary:hover { background: rgba(213, 69, 99, .12); }
.fl-faq__q { flex: 1; font-size: 15.5px; font-weight: 600; color: var(--fg); line-height: 1.4; }
.fl-faq__mas {
  flex: none;
  font-size: 20px;
  color: var(--glow);
  line-height: 1;
  transition: transform .2s ease;
}
.fl-faq__item[open] .fl-faq__mas { transform: rotate(45deg); }
.fl-faq__a {
  padding: 0 20px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--rose);
  margin: 0;
}

/* ── CTA final ────────────────────────────────────────────────────────────── */
.fl-cta { padding: clamp(54px, 7cqi, 104px) var(--pad-x); }
.fl-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.fl-cta__logo { width: 64px; height: 64px; display: block; mix-blend-mode: screen; }
.fl-cta__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fl-cta h2 {
  font-weight: 300;
  font-size: clamp(28px, 4.6cqi, 46px);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
.fl-cta__parr {
  font-size: clamp(15px, 1.75cqi, 18px);
  line-height: 1.6;
  color: var(--rose);
  margin: 0;
  max-width: 32em;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.fl-footer {
  border-top: 1px solid var(--line-dark);
  padding: clamp(34px, 4.4cqi, 56px) var(--pad-x) 0;
}
.fl-footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(24px, 3cqi, 44px);
  padding-bottom: clamp(28px, 3.4cqi, 44px);
}
.fl-footer__marca { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.fl-footer__logo { width: 40px; height: 40px; display: block; flex: none; mix-blend-mode: screen; }
.fl-footer__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fl-footer__nombre { font-weight: 400; font-size: 17px; color: var(--fg); letter-spacing: -.02em; }
.fl-footer__desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 26em; }
.fl-footer__col { display: flex; flex-direction: column; gap: 11px; }
.fl-footer__rotulo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: 2px;
}
.fl-footer__col a { font-size: 14px; color: var(--rose); }
.fl-footer__col a:hover { color: var(--fg); }
.fl-footer__horario { font-size: 13px; color: var(--muted); }
.fl-footer__legal {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--line-dark-soft);
  padding: 20px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
}

/* ── Barra fija móvil ─────────────────────────────────────────────────────── */
/* Vive fuera de .fl-page: un `container-type` haría de containing block del
   position:fixed y la barra dejaría de anclarse al viewport. */
.fl-barra {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, #23060c, #160305);
  border-top: 1px solid var(--line-dark);
}
.fl-barra__cta {
  flex: 1;
  text-align: center;
  background: var(--primary);
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 12px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fl-barra__cta:hover { color: var(--fg); }
.fl-barra__wa {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  background: var(--whatsapp-btn);
  border-radius: 12px;
  min-height: 48px;
}

/* ── Móvil (contenedor < 900px) ───────────────────────────────────────────── */
@media (max-width: 899px) {
  .fl-nav { display: none; }
  .fl-header__cta { margin-left: auto; }
  .fl-barra { display: flex; }
  .fl-hero__botones { flex-direction: column; }
  .fl-hero__botones .fl-btn { flex: 1 1 auto; }
  .fl-footer__legal { padding-bottom: 98px; }
  .fl-testi__quien { text-align: center; }
  .fl-testi__autor { flex-direction: column; gap: 8px; }

  /* ── Centrado en una sola columna ────────────────────────────────────────
     En móvil las secciones de dos columnas se apilan y el texto alineado a la
     izquierda queda descolgado del contenido que tiene arriba o abajo (la
     captura del chat, el mock de Excel, el panel numerado). Se centra el
     bloque de texto y su CTA.

     Excepción a propósito: las LISTAS siguen alineadas a la izquierda
     (`.fl-ticks`, `.fl-bullets`, `.fl-panel`). Centrar renglones de largo
     desparejo con viñeta arranca cada línea en un punto distinto y se lee
     peor; en una lista el ojo necesita un margen izquierdo fijo. */
  .fl-hero__col,
  .fl-centrar-movil { text-align: center; }

  .fl-hero__parr,
  .fl-centrar-movil .fl-parr,
  .fl-contadores__parr-1,
  .fl-contadores__parr-2 { margin-left: auto; margin-right: auto; }

  .fl-centrar-movil .fl-btn-fila { justify-content: center; }

  .fl-ticks,
  .fl-bullets { text-align: left; }

  /* Footer: las 4 columnas y la barra inferior */
  .fl-footer__grid { text-align: center; }
  .fl-footer__marca { justify-content: center; }
  .fl-footer__desc { margin-left: auto; margin-right: auto; }
  .fl-footer__col { align-items: center; }
  .fl-footer__legal { justify-content: center; text-align: center; }
}

/* ── Preferencias de movimiento ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .fl-hero__chat:hover { transform: none; }
}

/* ── Páginas legales ──────────────────────────────────────────────────────── */
.fl-legal { padding: clamp(40px, 5cqi, 72px) var(--pad-x) clamp(50px, 7cqi, 96px); }
.fl-legal__inner { max-width: 780px; margin: 0 auto; }
.fl-legal h1 {
  font-weight: 300;
  font-size: clamp(30px, 4.6cqi, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--fg);
  margin: 0 0 14px;
  text-wrap: balance;
}
.fl-legal__meta { font-size: 13.5px; color: var(--muted); margin: 0 0 10px; }
.fl-legal__intro {
  font-size: clamp(15px, 1.7cqi, 17.5px);
  line-height: 1.65;
  color: var(--rose);
  margin: 0 0 34px;
}
.fl-legal__toc {
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 0 36px;
}
/* El doble `.fl-legal` es a propósito: sin él, `.fl-legal h2` y `.fl-legal a`
   (declaradas más abajo) empatan en especificidad y ganan por orden. */
.fl-legal .fl-legal__toc h2 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--glow);
  margin: 0 0 12px;
}
.fl-legal__toc ol { margin: 0; padding-left: 20px; display: grid; gap: 7px; }
.fl-legal__toc li { font-size: 14.5px; color: var(--muted); }
.fl-legal .fl-legal__toc a { color: var(--rose); text-decoration: none; }
.fl-legal .fl-legal__toc a:hover { color: var(--fg); text-decoration: underline; }
.fl-legal h2 {
  font-weight: 400;
  font-size: clamp(20px, 2.4cqi, 25px);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--fg);
  margin: 40px 0 14px;
  scroll-margin-top: 90px;
}
.fl-legal h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin: 26px 0 10px;
}
.fl-legal p,
.fl-legal li { font-size: 15px; line-height: 1.7; color: var(--rose); }
.fl-legal p { margin: 0 0 14px; }
.fl-legal ul,
.fl-legal ol { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; }
.fl-legal strong { color: var(--fg); font-weight: 600; }
.fl-legal a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.fl-legal a:hover { color: var(--rose); }
.fl-legal__tabla-wrap { overflow-x: auto; margin: 0 0 20px; }
.fl-legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}
.fl-legal th,
.fl-legal td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-dark-soft);
  color: var(--rose);
  vertical-align: top;
  line-height: 1.5;
}
.fl-legal th {
  color: var(--fg);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-dark);
}
.fl-legal__nota {
  background: var(--card-dark);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--glow);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 0 0 22px;
}
.fl-legal__nota p:last-child { margin-bottom: 0; }
.fl-legal__volver {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--rose);
  margin-bottom: 26px;
  text-decoration: none;
}
.fl-legal__volver:hover { color: var(--fg); }

/* ── 404 ──────────────────────────────────────────────────────────────────── */
.fl-404 {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: clamp(60px, 8cqi, 120px) var(--pad-x);
}
.fl-404__logo { width: 64px; height: 64px; display: block; mix-blend-mode: screen; }
.fl-404__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fl-404 h1 {
  font-weight: 300;
  font-size: clamp(28px, 4.6cqi, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.fl-404 p { font-size: clamp(15px, 1.7cqi, 17.5px); color: var(--rose); margin: 0; max-width: 34em; }
