/* ===========================================================
   Nodriza Cuentas Claras — estudio contable, La Florida
   Editorial papel-hueso · azul tinta · serif Spectral
   =========================================================== */

:root {
  --bg: #F4F1E9;
  --surface: #FBFAF5;
  --fg: #1A2740;
  --accent: #1F4FA3;
  --muted: #5A6378;
  --line: #E3DECF;

  /* derivados (solo relleno/bordes/decoración, nunca texto chico) */
  --accent-soft: #E6EDF7;
  --line-ink: #C7CEDA;      /* trazos de ilustración sobre superficies */
  --shadow: 28px 28px 60px -32px rgba(26, 39, 64, 0.28);
  --shadow-sm: 0 18px 40px -28px rgba(26, 39, 64, 0.35);

  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --db-bar-h: 34px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--db-bar-h) + 78px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--surface); }

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

/* ===== Reveals (solo bajo js-on) ===== */
.js-on .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.js-on .reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-on .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ===== Barra DEMO Digital Bee ===== */
.db-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--db-bar-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--fg);
  color: var(--surface);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  padding: 0 16px;
  transition: background 0.3s var(--ease);
}
.db-bar:hover { background: #12203a; }
.db-bar__txt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-bar__txt strong { color: #DCE6F6; font-weight: 600; }
.db-bar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #54E6A0; flex: none;
  box-shadow: 0 0 0 3px rgba(84, 230, 160, 0.22);
}

/* ===== Header ===== */
.nav {
  position: sticky;
  top: var(--db-bar-h);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(244, 241, 233, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name-top {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.005em;
  color: var(--fg);
}
.brand__name-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 13px;
  border-radius: 9px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__links a:hover { color: var(--fg); background: var(--accent-soft); }
.nav__cta {
  color: var(--surface) !important;
  background: var(--accent);
  font-weight: 600 !important;
}
.nav__cta:hover { background: #173f85; color: var(--surface) !important; }

/* ===== Layout helpers ===== */
.section__wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow--center { justify-content: center; text-align: center; }
.eyebrow__line {
  height: 1px; width: 34px; flex: none;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.eyebrow--center .eyebrow__line:last-child { background: linear-gradient(90deg, transparent, var(--accent)); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 22px;
  color: var(--fg);
}
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
  color: var(--fg);
}
.h2--light { color: var(--surface); }
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--muted);
  max-width: 33ch;
  margin: 0 0 32px;
}
.prose { color: var(--muted); margin: 0 0 18px; max-width: 56ch; }

.section__head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__sub { color: var(--muted); font-size: 1.05rem; margin: 6px auto 0; max-width: 52ch; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn--solid {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 14px 30px -14px rgba(31, 79, 163, 0.7);
}
.btn--solid:hover { background: #173f85; transform: translateY(-2px); box-shadow: 0 20px 38px -16px rgba(31, 79, 163, 0.75); }
.btn--solid:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--line-ink);
}
.btn--ghost:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 9vw, 120px) var(--gutter) 72px;
  overflow: hidden;
}
.hero__paper { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__rules {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 37px,
    var(--line) 37px,
    var(--line) 38px
  );
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}
.hero__margin {
  position: absolute;
  top: 0; bottom: 0;
  left: clamp(20px, 5vw, 64px);
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(216, 90, 60, 0.4), transparent);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.eyebrow { /* override for hero spacing handled inline */ }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  list-style: none;
  margin: 0; padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.hero__stats li { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--accent);
}
.stat__lbl { font-size: 13.5px; color: var(--muted); margin-top: 6px; max-width: 16ch; }

/* Hero ledger card */
.hero__card { position: relative; }
.ledger {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: var(--shadow);
}
.ledger::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  pointer-events: none;
}
.ledger__head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  position: relative;
}
.ledger__title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--fg); }
.ledger__period { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.ledger__rows { position: relative; }
.ledger__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 2px;
  border-bottom: 1px dashed var(--line-ink);
}
.ledger__concept { font-size: 15px; color: var(--muted); }
.ledger__amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.ledger__row--total .ledger__concept { color: var(--fg); font-weight: 600; }
.ledger__amount--strong { color: var(--accent); font-weight: 600; font-size: 18px; }
.ledger__stamp {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid #C7D7EE;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
}

.hero__scroll {
  position: relative; z-index: 1;
  align-self: center;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: clamp(40px, 6vw, 64px);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__scroll svg { animation: nudge 2.2s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (prefers-reduced-motion: reduce) { .hero__scroll svg { animation: none; } }

/* ===========================================================
   SOBRE NOSOTROS
   =========================================================== */
.about { padding: clamp(72px, 10vw, 130px) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.about__media { position: relative; }
.about__plate {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 0% 0%, var(--accent-soft), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about__chip {
  position: absolute;
  bottom: -16px; right: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--surface);
  font-size: 13.5px; font-weight: 600;
  padding: 11px 17px;
  border-radius: 999px;
  box-shadow: 0 16px 30px -14px rgba(31, 79, 163, 0.7);
}
.about__chip svg { color: var(--surface); }

.values { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.values li { display: flex; gap: 16px; align-items: flex-start; }
.values__ic {
  flex: none;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid #D3E0F2;
}
.values li div { display: flex; flex-direction: column; }
.values li strong { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--fg); }
.values li span { font-size: 14.5px; color: var(--muted); margin-top: 2px; }

/* ===========================================================
   SERVICIOS
   =========================================================== */
.services {
  padding: clamp(72px, 10vw, 130px) 0;
  background:
    radial-gradient(140% 100% at 50% 0%, var(--surface), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #D3DCEC;
}
.card:hover::after { transform: scaleY(1); }
.card__ic {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid #D3E0F2;
  margin-bottom: 20px;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--fg);
}
.card__desc { font-size: 15px; color: var(--muted); margin: 0 0 20px; }
.card__price {
  display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--accent);
  margin: 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line-ink);
}
.card__price span { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.card__price small { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--muted); }

/* ===========================================================
   CONFIANZA (bloque oscuro tinta)
   =========================================================== */
.trust {
  padding: clamp(78px, 11vw, 140px) 0;
  background: var(--fg);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 39px, rgba(255,255,255,0.045) 39px, rgba(255,255,255,0.045) 40px);
  pointer-events: none;
}
.trust .section__head { position: relative; }
.trust .eyebrow { color: #8FB2E6; }
.trust .eyebrow__line { background: linear-gradient(90deg, #8FB2E6, transparent); }
.trust .eyebrow--center .eyebrow__line:last-child { background: linear-gradient(90deg, transparent, #8FB2E6); }

.trust__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.quote {
  position: relative;
  background: rgba(251, 250, 245, 0.05);
  border: 1px solid rgba(251, 250, 245, 0.14);
  border-radius: 16px;
  padding: 30px 28px 26px;
  margin: 0;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: #8FB2E6;
  height: 28px;
  margin-bottom: 8px;
}
.quote p { font-size: 16px; line-height: 1.55; color: #EDEFF4; margin: 0 0 22px; }
.quote footer { display: flex; align-items: center; gap: 13px; }
.quote__av {
  flex: none;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.quote__who { display: flex; flex-direction: column; }
.quote__who strong { font-weight: 600; font-size: 15px; color: var(--surface); }
.quote__who span { font-size: 13px; color: #AAB6CC; margin-top: 1px; }

.badges {
  position: relative;
  list-style: none;
  margin: 0; padding: 30px 0 0;
  border-top: 1px solid rgba(251, 250, 245, 0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.badges li { display: flex; align-items: center; gap: 13px; font-size: 14.5px; font-weight: 500; color: #EDEFF4; }
.badges__ic {
  flex: none;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(143, 178, 230, 0.16);
  color: #A7C4ED;
}

/* ===========================================================
   UBICACIÓN
   =========================================================== */
.location { padding: clamp(72px, 10vw, 130px) 0; }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.info { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 20px; }
.info li { display: flex; gap: 16px; align-items: flex-start; }
.info__ic {
  flex: none;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid #D3E0F2;
}
.info li div { font-size: 15px; color: var(--muted); line-height: 1.5; }
.info li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--fg);
  margin-bottom: 3px;
}
.location__map { position: relative; }
.map {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map__pill {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  color: var(--accent);
  font-size: 13.5px; font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* ===========================================================
   CONTACTO / COTIZACIÓN
   =========================================================== */
.contact {
  padding: clamp(72px, 10vw, 130px) 0;
  background:
    radial-gradient(120% 90% at 100% 0%, var(--accent-soft), transparent 55%),
    var(--surface);
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.contact__points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.contact__points li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; font-weight: 500; color: var(--fg); }
.contact__points svg { color: var(--accent); flex: none; }

.quote {
  background: var(--surface);
}
form.quote {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.quote__legend {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--fg);
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #626B7F; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(31, 79, 163, 0.14);
}
.field select { cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231F4FA3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field input.is-error, .field textarea.is-error { border-color: #B23A2A; box-shadow: 0 0 0 4px rgba(178, 58, 42, 0.12); }
form.quote .btn { margin-top: 6px; }
.quote__note { font-size: 13px; color: var(--muted); text-align: center; margin: 14px 0 0; }
.quote__note.is-ok { color: var(--accent); font-weight: 600; }

/* ===========================================================
   CTA DIGITAL BEE
   =========================================================== */
.db-cta {
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  background: var(--fg);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.db-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 130% at 50% 0%, rgba(31, 79, 163, 0.42), transparent 60%);
  pointer-events: none;
}
.db-cta__inner { position: relative; max-width: 660px; margin: 0 auto; text-align: center; }
.db-cta__kicker {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: #8FB2E6; margin: 0 0 16px;
}
.db-cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--surface);
}
.db-cta__sub { font-size: 1.1rem; color: #C3CCDD; margin: 0 auto 32px; max-width: 46ch; }
.db-cta__btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: #25D366;
  color: #0B3D24;
  font-weight: 700;
  font-size: 16.5px;
  padding: 16px 30px;
  border-radius: 14px;
  box-shadow: 0 18px 40px -16px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.db-cta__btn svg { color: #0B3D24; }
.db-cta__btn:hover { background: #1FBE5A; transform: translateY(-3px); box-shadow: 0 24px 48px -18px rgba(37, 211, 102, 0.7); }
.db-cta__btn:active { transform: translateY(-1px); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: #131F35; color: #C3CCDD; padding: clamp(56px, 7vw, 80px) 0 26px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .brand__name-top { color: var(--surface); }
.footer__brand .brand__name-sub { color: #8FB2E6; }
.footer__brand p { font-size: 14.5px; color: #9DA8BE; margin: 16px 0 0; max-width: 40ch; }
.footer h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--surface);
  margin: 0 0 16px;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 14.5px; color: #9DA8BE; width: fit-content; transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: var(--surface); }
.footer__contact p { font-size: 14.5px; color: #9DA8BE; margin: 0 0 12px; line-height: 1.6; }
.footer__base {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 22px;
  font-size: 13px;
  color: #7E8AA1;
}

/* ===========================================================
   WHATSAPP FLOTANTE
   =========================================================== */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 180;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2.4s var(--ease) infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 16px 38px -8px rgba(37, 211, 102, 0.65), 0 4px 12px rgba(0,0,0,0.2); }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust__grid { grid-template-columns: 1fr; }
  .badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .hero { min-height: auto; padding-top: clamp(48px, 14vw, 96px); }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { order: 2; }
  .lede { max-width: none; }
  .hero__scroll { display: none; }
  .about__grid,
  .location__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .about__media { order: 2; margin-bottom: 22px; max-width: 440px; }
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .display { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero__stats { gap: 18px; }
  .ledger { padding: 22px 20px 18px; }
  .db-bar__txt { font-size: 11.5px; }
}
