/* ==========================================================================
   Grupo Funerario México — Sistema de diseño
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marca */
  --navy-950: #060D19;
  --navy-900: #0A1526;
  --navy-850: #0C1A2E;
  --navy-800: #102340;
  --navy-700: #16294A;
  --navy-600: #1D3765;
  --navy-brand: #14265C;

  --gold-100: #F6EEDE;
  --gold-200: #ECDCBC;
  --gold-300: #E2C99B;
  --gold-400: #D4B27A;
  --gold-500: #C9A468;
  --gold-600: #B08C4E;
  --gold-700: #8C6E3C;

  /* Neutros cálidos */
  --white: #FFFFFF;
  --sand-50: #FAF9F6;
  --sand-100: #F5F3EE;
  --sand-200: #EDEAE2;
  --line: #E4E0D6;
  --line-soft: #EFECE4;

  --ink: #131922;
  --ink-2: #39424F;
  --ink-3: #5D6673;
  --muted: #7A828E;

  /* Tipografía */
  --font-display: 'Urbanist', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Métricas */
  --container: 1240px;
  --gutter: 24px;
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(12, 22, 38, .05), 0 2px 8px -2px rgba(12, 22, 38, .06);
  --shadow-md: 0 2px 4px rgba(12, 22, 38, .04), 0 18px 40px -18px rgba(12, 22, 38, .18);
  --shadow-lg: 0 4px 8px rgba(12, 22, 38, .05), 0 36px 70px -28px rgba(12, 22, 38, .26);

  --header-h: 88px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (max-width: 900px) {
  :root { --header-h: 72px; --gutter: 20px; }
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.14;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold-200); color: var(--navy-900); }

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

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

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 999;
  background: var(--gold-500); color: var(--navy-900);
  padding: 10px 18px; border-radius: var(--r-xs); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }
.container--wide { max-width: 1400px; }

.section { padding: 104px 0; position: relative; }
.section--sm { padding: 72px 0; }
.section--lg { padding: 128px 0; }
.section--soft { background: var(--sand-50); }
.section--sand { background: var(--sand-100); }
.section--dark { background: var(--navy-900); color: rgba(255,255,255,.72); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

@media (max-width: 900px) {
  .section { padding: 68px 0; }
  .section--sm { padding: 52px 0; }
  .section--lg { padding: 76px 0; }
}

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1040px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid { gap: 20px; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.08fr .92fr; }
.split--wide-right { grid-template-columns: .92fr 1.08fr; }
@media (max-width: 980px) {
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; gap: 44px; }
  .split--flip-first > *:first-child { order: 2; }
}

/* --------------------------------------------------------------------------
   4. Tipografía utilitaria
   -------------------------------------------------------------------------- */
.display-1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 300; line-height: 1.06; }
.display-2 { font-size: clamp(2.1rem, 4.1vw, 3.3rem); font-weight: 300; line-height: 1.12; }
.display-3 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); font-weight: 400; line-height: 1.2; }
.display-4 { font-size: clamp(1.25rem, 1.7vw, 1.45rem); font-weight: 500; line-height: 1.3; letter-spacing: -.01em; }

.lead {
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.72;
  color: var(--ink-3);
}
.section--dark .lead { color: rgba(255,255,255,.68); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: .765rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold-500);
  flex: none;
}
.eyebrow--plain::before { display: none; }
.section--dark .eyebrow { color: var(--gold-400); }

.rule {
  display: block;
  width: 58px; height: 2px;
  background: var(--gold-500);
  border: 0;
  margin: 26px 0;
}
.rule--center { margin-inline: auto; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p:last-child { margin-bottom: 0; }
@media (max-width: 720px) { .section-head { margin-bottom: 36px; } }

.text-gold { color: var(--gold-600); }
.text-muted { color: var(--muted); }
.balance { text-wrap: balance; }

/* --------------------------------------------------------------------------
   5. Botones
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 46%, var(--gold-500) 100%);
  color: #3A2B11;
  box-shadow: 0 10px 26px -12px rgba(160, 124, 58, .7);
}
.btn--gold:hover { box-shadow: 0 16px 34px -12px rgba(160, 124, 58, .85); filter: brightness(1.045); }

.btn--ghost {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn--outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}
.btn--outline:hover { border-color: var(--gold-500); color: var(--gold-700); }

.btn--navy {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 10px 26px -14px rgba(16, 35, 64, .8);
}
.btn--navy:hover { background: var(--navy-700); }

.btn--sm { padding: 11px 20px; font-size: .72rem; }
.btn--block { width: 100%; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.btn-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.btn-link:hover svg { transform: translateX(5px); }
.section--dark .btn-link { color: var(--gold-400); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 17, 31, .82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.header.is-stuck {
  background: rgba(7, 14, 26, .96);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.85);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Logo */
.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand__mark { width: 52px; height: 52px; flex: none; }
.brand__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: .13em;
}
.brand__text span:nth-child(1) { font-size: .64rem; color: rgba(255,255,255,.66); font-weight: 500; letter-spacing: .3em; }
.brand__text span:nth-child(2) { font-size: 1.22rem; color: var(--gold-400); font-weight: 500; letter-spacing: .085em; margin: 5px 0 4px; }
.brand__text span:nth-child(3) { font-size: .74rem; color: #fff; font-weight: 400; letter-spacing: .27em; }

@media (max-width: 900px) {
  .brand__mark { width: 42px; height: 42px; }
  .brand__text span:nth-child(1) { font-size: .55rem; }
  .brand__text span:nth-child(2) { font-size: 1rem; margin: 4px 0 3px; }
  .brand__text span:nth-child(3) { font-size: .62rem; }
}
@media (max-width: 520px) {
  .brand { gap: 9px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__text span:nth-child(1) { font-size: .48rem; letter-spacing: .24em; }
  .brand__text span:nth-child(2) { font-size: .88rem; margin: 3px 0 3px; }
  .brand__text span:nth-child(3) { font-size: .55rem; letter-spacing: .22em; }
}
@media (max-width: 330px) {
  .brand__text { display: none; }
}

/* Nav escritorio */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-family: var(--font-display);
  font-size: .795rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color .25s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 1px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__item.is-active > .nav__link { color: #fff; }
.nav__item.is-active > .nav__link::after { transform: scaleX(1); }

.nav__item { position: relative; }
.nav__link--has-sub { display: flex; align-items: center; gap: 7px; }
.nav__link--has-sub svg { width: 10px; height: 10px; opacity: .7; transition: transform .3s var(--ease); }
.nav__item:hover .nav__link--has-sub svg { transform: rotate(180deg); }

.subnav {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 268px;
  padding: 10px;
  list-style: none;
  margin: 0;
  background: rgba(11, 22, 38, .97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
}
.nav__item:hover .subnav,
.nav__item:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav::before {
  content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
}
.subnav li { margin: 0; }
.subnav a {
  display: block;
  padding: 11px 15px;
  border-radius: var(--r-xs);
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.subnav a:hover { background: rgba(255,255,255,.08); color: #fff; }

/* Teléfono */
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 13px 22px;
  border-radius: var(--r-xs);
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 48%, var(--gold-500) 100%);
  color: #3A2B11;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .035em;
  box-shadow: 0 10px 24px -14px rgba(160, 124, 58, .9);
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.header__phone svg { width: 16px; height: 16px; }
.header__phone:hover { transform: translateY(-2px); filter: brightness(1.05); }
@media (max-width: 1100px) { .header__phone { padding: 11px 16px; font-size: .92rem; } }
@media (max-width: 520px) {
  .header__phone { padding: 10px 13px; font-size: .84rem; gap: 7px; }
}

/* Botón menú */
.burger {
  display: none;
  flex: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  transition: background-color .2s var(--ease);
}
.burger:hover { background: rgba(255,255,255,.08); }
.burger span {
  display: block;
  position: relative;
  width: 26px; height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: background-color .2s var(--ease), transform .3s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 26px; height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.burger span::before { top: -8px; }
.burger span::after { top: 8px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translateY(8px) rotate(45deg); }
.burger.is-open span::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__inner { gap: 14px; }
  .header__phone { margin-left: auto; }
}

/* Menú móvil */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  padding: calc(var(--header-h) + 28px) var(--gutter) 44px;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-950) 100%);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .34s var(--ease), transform .34s var(--ease), visibility .34s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__list { list-style: none; margin: 0 0 34px; padding: 0; }
.mobile-menu__list > li { border-bottom: 1px solid rgba(255,255,255,.09); }
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 2px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  width: 100%;
  text-align: left;
}
.mobile-menu__link.is-active { color: var(--gold-400); }
.mobile-menu__link svg { width: 13px; height: 13px; opacity: .6; transition: transform .3s var(--ease); }
.mobile-menu__link[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 6px 14px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
}
.mobile-sub > div { overflow: hidden; min-height: 0; }
.mobile-sub.is-open { grid-template-rows: 1fr; }
.mobile-sub a {
  display: block;
  padding: 11px 0;
  font-size: .96rem;
  color: rgba(255,255,255,.62);
  border-left: 1px solid rgba(255,255,255,.13);
  padding-left: 16px;
}
.mobile-sub a:hover { color: var(--gold-300); }
.mobile-menu__cta { display: grid; gap: 12px; }
.mobile-menu__note {
  margin-top: 28px;
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   7. Hero principal
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: calc(var(--header-h) + 44px) 0 28px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(7,15,28,.95) 0%, rgba(7,15,28,.86) 26%, rgba(7,15,28,.55) 50%, rgba(7,15,28,.18) 72%, rgba(7,15,28,.32) 100%),
    linear-gradient(180deg, rgba(7,15,28,.55) 0%, rgba(7,15,28,0) 22%, rgba(7,15,28,0) 52%, rgba(6,13,25,.72) 92%);
}

.hero__inner { position: relative; max-width: 680px; }
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(.72rem, 1.15vw, .84rem);
  font-weight: 500;
  letter-spacing: .23em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 22px;
}
.hero__title {
  font-size: clamp(2.7rem, 5.7vw, 4.55rem);
  font-weight: 300;
  line-height: 1.045;
  letter-spacing: -.022em;
  color: #fff;
  margin: 0;
}
.hero__rule {
  display: block;
  width: 62px; height: 3px;
  background: var(--gold-400);
  border-radius: 2px;
  margin: 34px 0 30px;
}
.hero__lead {
  max-width: 480px;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.66;
  color: rgba(255,255,255,.84);
  margin: 0 0 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__trust {
  position: relative;
  margin-top: clamp(34px, 4.6vw, 58px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(9, 18, 33, .62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  overflow: hidden;
}
.trust {
  display: flex;
  gap: 18px;
  padding: 26px 26px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust:last-child { border-right: 0; }
.trust__icon { flex: none; color: var(--gold-400); }
.trust__icon svg { width: 34px; height: 34px; stroke-width: 1.3; }
.trust h3 {
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin: 3px 0 7px;
}
.trust p {
  font-size: .845rem;
  line-height: 1.52;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.hero__more {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: clamp(20px, 2.6vw, 30px) auto 0;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  transition: color .25s var(--ease);
}
.hero__more:hover { color: var(--gold-300); }
.hero__more svg { width: 17px; height: 17px; animation: nudge 2.4s var(--ease) infinite; }
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 1080px) {
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .trust:nth-child(2n) { border-right: 0; }
  .trust:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding: calc(var(--header-h) + 46px) 0 40px; }
  .hero__media img { object-position: center center; }
  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(7,15,28,.5) 0%, rgba(7,15,28,.2) 30%, rgba(7,15,28,.22) 58%, rgba(6,13,25,.86) 100%),
      linear-gradient(96deg, rgba(7,15,28,.5) 0%, rgba(7,15,28,.2) 55%, rgba(7,15,28,0) 100%);
  }
  .hero__inner { max-width: 100%; }
  .hero__actions { flex-direction: column; gap: 13px; }
  .hero__actions .btn { width: 100%; }
  .hero__rule { margin: 26px 0 24px; }
  .hero__lead { max-width: 100%; margin-bottom: 32px; }
  .trust { padding: 22px 20px; gap: 15px; }
  .trust__icon svg { width: 30px; height: 30px; }
  .trust p { font-size: .8rem; }
}
@media (max-width: 460px) {
  .hero__trust { grid-template-columns: 1fr; }
  .trust { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   8. Hero interior (páginas)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 96px) 0 96px;
  overflow: hidden;
  isolation: isolate;
  color: rgba(255,255,255,.78);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(7,15,28,.96) 0%, rgba(7,15,28,.86) 38%, rgba(7,15,28,.58) 72%, rgba(7,15,28,.42) 100%),
    linear-gradient(180deg, rgba(7,15,28,.5) 0%, rgba(7,15,28,0) 40%);
}
.page-hero__inner { max-width: 740px; }
.page-hero h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 22px;
}
.page-hero p {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: rgba(255,255,255,.76);
  max-width: 600px;
  margin: 0;
}
.page-hero .eyebrow { color: var(--gold-400); }
@media (max-width: 900px) { .page-hero { padding: calc(var(--header-h) + 62px) 0 62px; } }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  font-size: .8rem;
  color: rgba(255,255,255,.48);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 10px; }
.breadcrumb li + li::before { content: "/"; color: rgba(255,255,255,.28); }
.breadcrumb a { color: rgba(255,255,255,.72); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--gold-300); }

/* --------------------------------------------------------------------------
   9. Tarjetas
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 34px 32px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.card h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: .55em; }
.card p { font-size: .95rem; color: var(--ink-3); margin-bottom: 0; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-100), var(--sand-100));
  color: var(--gold-700);
  border: 1px solid var(--gold-200);
}
.card__icon svg { width: 25px; height: 25px; stroke-width: 1.45; }
.card--static:hover { transform: none; box-shadow: none; border-color: var(--line-soft); }

/* Tarjeta de servicio con imagen */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-100); }
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { display: flex; flex-direction: column; flex: 1; padding: 30px 30px 32px; }
.service-card__body h3 { font-size: 1.26rem; font-weight: 500; margin-bottom: .5em; }
.service-card__body p { font-size: .95rem; color: var(--ink-3); }
.service-card__body .btn-link { margin-top: auto; padding-top: 22px; }
.service-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(9, 18, 33, .74);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* Tarjeta valor (numerada) */
.value-card {
  padding: 30px 28px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line-soft);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.value-card:hover { border-color: var(--gold-300); transform: translateY(-4px); }
.value-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-brand);
  margin-bottom: .6em;
}
.value-card p { font-size: .92rem; color: var(--ink-3); margin: 0; }
.value-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold-500);
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   10. Media / imágenes
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand-100);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 16 / 10; }
.media--square { aspect-ratio: 1 / 1; }

.media-stack { position: relative; }
.media-stack__badge {
  position: absolute;
  right: -14px; bottom: -18px;
  padding: 24px 28px;
  border-radius: var(--r-md);
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-lg);
  min-width: 176px;
}
.media-stack__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-400);
  margin-bottom: 7px;
}
.media-stack__badge span {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}
@media (max-width: 980px) {
  .media-stack__badge { right: 16px; bottom: -16px; padding: 20px 22px; min-width: 150px; }
  .media-stack__badge strong { font-size: 1.9rem; }
}

/* --------------------------------------------------------------------------
   11. Listas
   -------------------------------------------------------------------------- */
.list-check, .list-dash {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.list-check li, .list-dash li {
  position: relative;
  padding-left: 34px;
  margin: 0;
  font-size: .96rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0; top: .16em;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--gold-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B08C4E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  border: 1px solid var(--gold-200);
}
.list-dash li::before {
  content: "";
  position: absolute;
  left: 2px; top: .72em;
  width: 14px; height: 1px;
  background: var(--muted);
}
.list-dash li { color: var(--ink-3); }
.list-cols { columns: 2; column-gap: 48px; }
.list-cols li { break-inside: avoid; }
@media (max-width: 760px) { .list-cols { columns: 1; } }

.section--dark .list-check li { color: rgba(255,255,255,.78); }
.section--dark .list-check li::before { background-color: rgba(212,178,122,.16); border-color: rgba(212,178,122,.4); }

/* Lista de estados */
.states {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  overflow: hidden;
}
.states li {
  margin: 0;
  padding: 15px 18px;
  background: var(--navy-900);
  font-size: .86rem;
  color: rgba(255,255,255,.66);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.states li:hover { background: var(--navy-800); color: var(--gold-300); }
@media (max-width: 900px) { .states { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .states { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   12. Estadísticas
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.stat { padding: 38px 30px; background: var(--navy-900); text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.4vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold-400);
  letter-spacing: -.02em;
}
.stat span {
  display: block;
  margin-top: 12px;
  font-size: .78rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
/* 2x2, para cuando las estadísticas van dentro de una columna estrecha */
.stats--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) {
  .stat { padding: 30px 14px; }
  .stat span { font-size: .7rem; letter-spacing: .11em; }
}

.stats--light { background: var(--line); border-color: var(--line); }
.stats--light .stat { background: var(--white); }
.stats--light .stat strong { color: var(--navy-brand); }
.stats--light .stat span { color: var(--muted); }

/* --------------------------------------------------------------------------
   13. Proceso / pasos
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 27px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300) 12%, var(--gold-300) 88%, transparent);
}
.step { position: relative; padding: 0 22px; text-align: center; }
.step__num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gold-700);
  z-index: 1;
}
.step h3 { font-size: 1.06rem; font-weight: 500; margin-bottom: .5em; }
.step p { font-size: .92rem; color: var(--ink-3); margin: 0; }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .steps--5 { grid-template-columns: repeat(3, 1fr); gap: 44px 0; } .steps--5::before { display: none; } }
@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 44px 0; }
  .steps::before { display: none; }
}
@media (max-width: 620px) {
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .step { padding: 0; }
}
.section--soft .step__num { background: var(--white); }

/* --------------------------------------------------------------------------
   14. Acordeón
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.accordion__btn:hover { color: var(--gold-700); }
.accordion__icon {
  flex: none;
  position: relative;
  width: 20px; height: 20px;
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  background: var(--gold-600);
  transition: transform .34s var(--ease), opacity .3s var(--ease);
}
.accordion__icon::before { width: 15px; height: 1.6px; }
.accordion__icon::after { width: 1.6px; height: 15px; }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: rotate(90deg); opacity: 0; }
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease);
}
.accordion__panel > div { overflow: hidden; min-height: 0; }
.accordion__panel.is-open { grid-template-rows: 1fr; }
.accordion__panel p, .accordion__panel ul { padding-bottom: 26px; font-size: .96rem; color: var(--ink-3); }
.accordion__panel > div > :first-child { margin-top: 0; }

/* --------------------------------------------------------------------------
   15. Pestañas
   -------------------------------------------------------------------------- */
.tabs__nav {
  display: inline-flex;
  gap: 5px;
  padding: 5px;
  margin-bottom: 46px;
  background: var(--sand-100);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-pill);
}
.tabs__btn {
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.tabs__btn[aria-selected="true"] {
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.tabs__panel[hidden] { display: none; }
@media (max-width: 620px) {
  .tabs__nav { display: grid; grid-template-columns: 1fr; width: 100%; border-radius: var(--r-md); }
  .tabs__btn { border-radius: var(--r-sm); }
}

/* --------------------------------------------------------------------------
   16. Banda CTA
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: 116px 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: rgba(255,255,255,.8);
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,15,28,.9) 0%, rgba(7,15,28,.8) 50%, rgba(7,15,28,.92) 100%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 300; margin-bottom: 20px; }
.cta-band p { max-width: 620px; margin: 0 auto 38px; color: rgba(255,255,255,.74); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-band .eyebrow { color: var(--gold-400); }
.cta-band .eyebrow::before { background: var(--gold-400); }
@media (max-width: 900px) {
  .cta-band { padding: 76px 0; }
  .cta-band__actions .btn { width: 100%; }
}

/* Banda de urgencia */
.urgency {
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 44px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.urgency__text { max-width: 520px; }
.urgency h3 { color: #fff; font-size: 1.6rem; font-weight: 400; margin-bottom: .4em; }
.urgency p { color: rgba(255,255,255,.7); font-size: .96rem; margin: 0; }
.urgency__phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.urgency__phone span {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.urgency__phone a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: .01em;
  transition: color .25s var(--ease);
}
.urgency__phone a:hover { color: var(--gold-300); }
@media (max-width: 720px) { .urgency { padding: 32px 26px; gap: 24px; } }

/* --------------------------------------------------------------------------
   17. Distintivos / respaldo
   -------------------------------------------------------------------------- */
.badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.badge-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 108px;
  padding: 22px 30px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.badge-card:hover { border-color: var(--gold-200); transform: translateY(-3px); }
.badge-card img { max-height: 56px; width: auto; object-fit: contain; }
.badge-card--text {
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.badge-card--text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy-brand);
  letter-spacing: .06em;
}
.badge-card--text span { font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }

/* Empresas del grupo */
.brands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.brand-card img { max-height: 132px; width: auto; object-fit: contain; }
@media (max-width: 980px) { .brands { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
@media (max-width: 480px) {
  .brands { grid-template-columns: 1fr; }
  .brand-card { min-height: 0; padding: 26px 22px; }
  .brand-card img { max-height: 116px; }
}

.pay-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.pay-logos span {
  display: inline-flex;
  align-items: center;
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--white);
}

/* --------------------------------------------------------------------------
   18. GFM Card
   -------------------------------------------------------------------------- */
.gfm-card-figure {
  position: relative;
  perspective: 1400px;
}
.gfm-card-figure img {
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transition: transform .6s var(--ease);
}
.gfm-card-figure--front img { transform: rotate(-2.2deg); }
.gfm-card-figure--front:hover img { transform: rotate(0) translateY(-6px); }
.gfm-card-figure--back img { transform: rotate(1.6deg); }
.gfm-card-figure--back:hover img { transform: rotate(0) translateY(-6px); }
.gfm-card-figure figcaption {
  margin-top: 16px;
  font-size: .76rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Tarjetas de plan */
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.plan__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 1;
  color: var(--gold-300);
  margin-bottom: 20px;
}
.plan h3 { font-size: 1.1rem; font-weight: 500; line-height: 1.36; margin-bottom: .7em; }
.plan p { font-size: .92rem; color: var(--ink-3); margin: 0; }
.plan__note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: .85rem;
  color: var(--gold-700);
}
.plan__note svg { width: 16px; height: 16px; flex: none; }

/* Pilares */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 26px;
  background: var(--navy-900);
}
.pillar svg { width: 30px; height: 30px; flex: none; color: var(--gold-400); stroke-width: 1.3; }
.pillar strong {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.pillar span { font-size: .82rem; color: rgba(255,255,255,.6); }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   19. Formulario
   -------------------------------------------------------------------------- */
.form {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form { padding: 28px 22px; } .form__grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  font-size: .97rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
.field textarea { min-height: 132px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A828E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(201, 164, 104, .16);
}
.field input::placeholder, .field textarea::placeholder { color: #A8AEB8; }
.form__note { margin-top: 20px; font-size: .82rem; color: var(--muted); }

/* Tarjeta de canal de contacto */
.channel {
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.channel:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.channel h3 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.channel__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 1.95rem);
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color .25s var(--ease);
}
.channel__number:hover { color: var(--gold-700); }
.channel p { font-size: .93rem; color: var(--ink-3); margin: 0 0 26px; }
.channel .btn { margin-top: auto; }
.channel--wa .card__icon { background: linear-gradient(140deg, #E4F5EA, #F2F8F3); border-color: #C7E6D2; color: #17864A; }

.urgency__phone .btn { margin-top: 16px; }

/* Bloque de datos de contacto */
.contact-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-100);
  border: 1px solid var(--gold-200);
  color: var(--gold-700);
}
.contact-item__icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.contact-item h3 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45em;
}
.contact-item a, .contact-item p {
  font-family: var(--font-display);
  font-size: 1.24rem;
  color: var(--ink);
  margin: 0;
  transition: color .25s var(--ease);
}
.contact-item a:hover { color: var(--gold-700); }
.contact-item small { display: block; font-family: var(--font-body); font-size: .84rem; color: var(--muted); margin-top: 5px; }

/* --------------------------------------------------------------------------
   20. Cita
   -------------------------------------------------------------------------- */
.quote {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.9vw, 2.1rem);
  font-weight: 300;
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -.01em;
}
.section--dark .quote { color: #fff; }
.quote__mark {
  display: block;
  width: 44px; height: 44px;
  margin: 0 auto 26px;
  color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.6);
  padding: 84px 0 0;
  font-size: .93rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer__brand { max-width: 330px; }
.footer__brand p { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.56); margin: 22px 0 0; }
.footer h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 12px; }
.footer a { color: rgba(255,255,255,.62); transition: color .22s var(--ease); }
.footer a:hover { color: var(--gold-300); }
.footer__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.44rem;
  color: #fff !important;
  margin-bottom: 5px;
}
.footer__phone-label { display: block; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 22px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .82rem;
  color: rgba(255,255,255,.42);
}
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) {
  .footer { padding-top: 58px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Botón flotante WhatsApp */
.float-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 19px;
  border-radius: var(--r-pill);
  background: #1FA855;
  color: #fff;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px -12px rgba(20, 120, 60, .8);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.float-wa svg { width: 21px; height: 21px; flex: none; }
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(20, 120, 60, .9); }
@media (max-width: 620px) {
  .float-wa { right: 16px; bottom: 16px; padding: 14px; }
  .float-wa span { display: none; }
}

/* --------------------------------------------------------------------------
   22. Animaciones de entrada
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   23. Utilidades
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mt-4 { margin-top: 52px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 36px; }
.text-center { text-align: center; }
.flex-actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 560px) { .flex-actions .btn { width: 100%; } }

.divider { height: 1px; background: var(--line-soft); border: 0; margin: 0; }

.note-box {
  padding: 26px 28px;
  background: var(--sand-100);
  border-left: 3px solid var(--gold-400);
  border-radius: var(--r-xs);
  font-size: .94rem;
  color: var(--ink-2);
}
.note-box strong { color: var(--ink); }
