/* ============================================================
   PSR · SISTEMA DE DISEÑO MARINE / CITRINE
   Webhexup · v1.0.0
   ------------------------------------------------------------
   Orden:
     01 Tokens
     02 Base
     03 Layout
     04 Botones
     05 Header
     06 Hero + formulario
     07 Stats
     08 Encabezados de sección
     09 Beneficios
     10 Servicios
     11 Proceso
     12 Credenciales
     13 Testimonios
     14 FAQ
     15 CTA final
     16 Disclosures
     17 Footer
     18 Cookies
     19 SMS
     20 Barra fija mobile
     21 Movimiento
     22 Responsive
     23 Accesibilidad
   ============================================================ */


/* ===== 01 · TOKENS ========================================== */
:root {
  --marine: #14274E;
  --marine-deep: #0E1B38;
  --marine-soft: #1F3666;
  --citrine: #FFC436;
  --citrine-bright: #FFCF52;
  --citrine-soft: #FFF7DA;
  --citrine-deep: #8A6B0F;
  --cream: #FAF6EC;
  --cream-deep: #F5EFE0;
  --cream-border: #E8DFC8;
  --mist: #F4F6F9;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --slate: #6B7785;
  --slate-light: #A7B3C5;
  --border: #E2E6EC;
  --success: #2DC653;
  --success-deep: #146B2A;
  --danger: #D93B3B;
  --danger-soft: #FFF1F1;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --max-w: 1200px;
  --gutter: 24px;
  --header-h: 76px;

  --shadow-sm: 0 1px 3px rgba(20, 39, 78, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 39, 78, 0.10);
  --shadow-lg: 0 16px 40px rgba(20, 39, 78, 0.12);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.30);
}


/* ===== 02 · BASE =========================================== */
/* Ojo: no usamos `*` global para no pisar el reset de Elementor.
   Solo tocamos lo que vive dentro de nuestros contenedores. */
.bza, .site-header, .bza-footer, .psr-overlay-ui {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bza *, .bza *::before, .bza *::after,
.site-header *, .site-header *::before, .site-header *::after,
.bza-footer *, .bza-footer *::before, .bza-footer *::after,
.psr-overlay-ui *, .psr-overlay-ui *::before, .psr-overlay-ui *::after {
  box-sizing: border-box;
}

.bza h1, .bza h2, .bza h3, .bza h4, .bza p, .bza ul, .bza ol, .bza figure,
.site-header ul, .bza-footer h4, .bza-footer p, .bza-footer ul {
  margin: 0;
  padding: 0;
}

.bza ul, .site-header ul, .bza-footer ul { list-style: none; }
.bza a, .site-header a, .bza-footer a { color: inherit; text-decoration: none; }
.bza img, .site-header img, .bza-footer img { max-width: 100%; display: block; }


/* ===== 03 · LAYOUT ========================================= */
.psr-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.bza-section { padding: 100px 0; }


/* ===== 04 · BOTONES ======================================== */
.psr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
}
.psr-btn:active { transform: translateY(1px); }

/* Los selectores llevan wrapper + etiqueta (0,2,1) para ganarle
   a `.elementor-kit-XX a` (0,2,0), que si no pisa el color del texto. */
.bza a.psr-btn--primary, .bza button.psr-btn--primary,
.site-header a.psr-btn--primary, .site-header button.psr-btn--primary,
.bza-footer a.psr-btn--primary, .bza-footer button.psr-btn--primary,
.psr-overlay-ui a.psr-btn--primary, .psr-overlay-ui button.psr-btn--primary,
.nav-cta-mobile a.psr-btn--primary {
  background: var(--citrine);
  color: var(--marine);
}
.bza a.psr-btn--primary:hover, .bza button.psr-btn--primary:hover,
.site-header a.psr-btn--primary:hover, .site-header button.psr-btn--primary:hover,
.bza-footer a.psr-btn--primary:hover, .bza-footer button.psr-btn--primary:hover,
.psr-overlay-ui a.psr-btn--primary:hover, .psr-overlay-ui button.psr-btn--primary:hover,
.nav-cta-mobile a.psr-btn--primary:hover {
  background: var(--citrine-bright);
  color: var(--marine);
  box-shadow: 0 4px 16px rgba(255, 196, 54, 0.4);
}

/* Azul con texto amarillo */
.bza a.psr-btn--marine, .bza button.psr-btn--marine,
.site-header a.psr-btn--marine, .site-header button.psr-btn--marine,
.bza-footer a.psr-btn--marine, .bza-footer button.psr-btn--marine,
.psr-overlay-ui a.psr-btn--marine, .psr-overlay-ui button.psr-btn--marine,
.nav-cta-mobile a.psr-btn--marine {
  background: var(--marine);
  color: var(--citrine);
}
.bza a.psr-btn--marine:hover, .bza button.psr-btn--marine:hover,
.site-header a.psr-btn--marine:hover, .site-header button.psr-btn--marine:hover,
.bza-footer a.psr-btn--marine:hover, .bza-footer button.psr-btn--marine:hover,
.psr-overlay-ui a.psr-btn--marine:hover, .psr-overlay-ui button.psr-btn--marine:hover,
.nav-cta-mobile a.psr-btn--marine:hover {
  background: var(--marine-soft);
  color: var(--citrine-bright);
  box-shadow: 0 4px 16px rgba(20, 39, 78, 0.25);
}

/* Contorno azul; al pasar el mouse queda azul con texto amarillo */
.bza a.psr-btn--ghost, .bza button.psr-btn--ghost,
.site-header a.psr-btn--ghost, .site-header button.psr-btn--ghost,
.bza-footer a.psr-btn--ghost, .bza-footer button.psr-btn--ghost,
.psr-overlay-ui a.psr-btn--ghost, .psr-overlay-ui button.psr-btn--ghost {
  background: transparent;
  color: var(--marine);
  border-color: var(--marine);
}
.bza a.psr-btn--ghost:hover, .bza button.psr-btn--ghost:hover,
.site-header a.psr-btn--ghost:hover, .site-header button.psr-btn--ghost:hover,
.bza-footer a.psr-btn--ghost:hover, .bza-footer button.psr-btn--ghost:hover,
.psr-overlay-ui a.psr-btn--ghost:hover, .psr-overlay-ui button.psr-btn--ghost:hover {
  background: var(--marine);
  color: var(--citrine);
}

/* Contorno amarillo sobre fondo oscuro */
.bza a.psr-btn--ghost-light, .bza button.psr-btn--ghost-light,
.site-header a.psr-btn--ghost-light, .bza-footer a.psr-btn--ghost-light,
.psr-overlay-ui a.psr-btn--ghost-light {
  background: transparent;
  color: var(--citrine);
  border-color: var(--citrine);
}
.bza a.psr-btn--ghost-light:hover, .bza button.psr-btn--ghost-light:hover,
.site-header a.psr-btn--ghost-light:hover, .bza-footer a.psr-btn--ghost-light:hover,
.psr-overlay-ui a.psr-btn--ghost-light:hover {
  background: var(--citrine);
  color: var(--marine);
}

.psr-btn--lg { font-size: 15px; padding: 14px 28px; }
.psr-btn--sm { font-size: 13px; padding: 9px 16px; }


/* ===== 05 · HEADER (compatible con wp_nav_menu) ===== */
.site-header {
  background: var(--marine);
  position: sticky;
  top: 0;
  z-index: 9990;
  transition: box-shadow 0.25s, background 0.25s;
}
.site-header.is-stuck { box-shadow: 0 4px 24px rgba(0,0,0,.28); background: var(--marine-deep); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.psr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  position: relative;
}

/* --- Marca --- */
.brand { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand-logo img, .brand-logo-img { height: 38px; width: auto; max-width: 240px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--citrine); color: var(--marine);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  letter-spacing: -0.5px;
}
.brand-text {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  color: var(--cream); letter-spacing: -0.6px;
}
.brand-text .dot, .brand-mark .dot { color: var(--citrine); }

/* --- Menú principal --- */
.nav-desktop { margin-left: auto; }
.psr-nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.psr-nav-links li { position: relative; }
.psr-nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: rgba(250,246,236,.82);
  padding: 10px 14px; border-radius: 8px;
  transition: color .18s, background .18s;
}
.psr-nav-links > li > a:hover,
.psr-nav-links > li.current-menu-item > a,
.psr-nav-links > li.current-menu-ancestor > a { color: var(--citrine); background: rgba(255,255,255,.07); }

.psr-nav-links > li.menu-item-has-children > a::after {
  content: ""; width: 7px; height: 7px; margin-left: 2px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
}
.psr-nav-links > li.menu-item-has-children:hover > a::after { transform: rotate(-135deg) translateY(-2px); }

.psr-nav-links .sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 260px; list-style: none; margin: 0;
  background: var(--white); border-radius: 12px; padding: 8px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.psr-nav-links li:hover > .sub-menu,
.psr-nav-links li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.psr-nav-links .sub-menu a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600;
  color: var(--marine); transition: background .15s;
}
.psr-nav-links .sub-menu a:hover { background: var(--cream); }

/* --- Zona de CTAs --- */
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-link-login {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .8px;
  color: rgba(250,246,236,.7); transition: color .18s; white-space: nowrap;
}
.nav-link-login:hover { color: var(--citrine); }

/* --- Hamburguesa --- */
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- Menú móvil --- */
.nav-mobile {
  display: none;
  position: absolute; left: calc(var(--gutter) * -1); right: calc(var(--gutter) * -1);
  top: 100%;
  background: var(--marine-deep);
  padding: 18px var(--gutter) 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  z-index: 20;
}
.nav-mobile.is-open { display: block; }
.nav-mobile .psr-nav-links { flex-direction: column; align-items: stretch; gap: 0; }
.nav-mobile .psr-nav-links > li > a {
  font-size: 17px; font-weight: 700; color: var(--cream);
  padding: 15px 0; border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  letter-spacing: -.3px;
}
.nav-mobile .psr-nav-links > li > a:hover { background: transparent; color: var(--citrine); }
.nav-mobile .psr-nav-links > li.menu-item-has-children > a::after { display: none; }
.nav-mobile .sub-menu {
  position: static; opacity: 1; visibility: visible; transform: none;
  background: transparent; border: none; box-shadow: none;
  padding: 0 0 0 16px; min-width: 0;
}
.nav-mobile .sub-menu a {
  color: rgba(250,246,236,.65); font-size: 14.5px; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-mobile .sub-menu a:hover { background: transparent; color: var(--citrine); }
.nav-cta-mobile { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.nav-cta-mobile .psr-btn { width: 100%; font-size: 15px; padding: 15px; }

/* ===== 06 · HERO + FORMULARIO ============================== */
.bza .hero {
  background: var(--marine);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.bza .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255, 196, 54, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 5% 85%, rgba(255, 196, 54, 0.05) 0%, transparent 45%);
  pointer-events: none;
}
.bza .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.bza .hero-content { max-width: 460px; }

.bza .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--citrine);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.bza .hero-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--citrine); }

.bza .hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: var(--cream);
  margin-bottom: 22px;
}
.bza .hero h1 .accent { color: var(--citrine); font-style: italic; font-weight: 800; }

.bza .hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250, 246, 236, 0.78);
  margin-bottom: 30px;
}

.bza .hero-trust-list { display: flex; flex-direction: column; gap: 10px; }
.bza .hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(250, 246, 236, 0.85);
  font-weight: 500;
}
.bza .hero-trust-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--citrine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--marine);
}

.bza .hero-ratings {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 246, 236, 0.15);
}
.bza .hero-rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  color: rgba(250, 246, 236, 0.7);
  text-transform: uppercase;
}
.bza .hero-rating-item strong { color: var(--citrine); font-weight: 700; }
.bza .hero-stars { color: var(--citrine); font-size: 13px; letter-spacing: 1px; }

.bza .hero-note {
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: rgba(250, 246, 236, 0.42);
  margin-top: 14px;
}

/* Card del formulario */
.bza .calc {
  background: var(--cream);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.bza .calc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 4px;
  background: var(--citrine);
  border-radius: 0 0 4px 4px;
}
.bza .calc-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--citrine);
  color: var(--marine);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 14px;
  letter-spacing: 1.5px;
}
.bza .calc-header { margin-bottom: 22px; }
.bza .calc-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--citrine-deep);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 500;
}
.bza .calc-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--marine);
  letter-spacing: -0.7px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.bza .calc-title .accent { color: var(--citrine-deep); font-style: italic; }
.bza .calc-sub { font-size: 13px; color: var(--slate); line-height: 1.5; }

.bza .form-warning {
  background: var(--danger-soft);
  border-left: 3px solid var(--danger);
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  color: #4A1313;
  line-height: 1.45;
  margin-bottom: 20px;
}
.bza .form-warning strong { color: var(--danger); font-weight: 700; }
.bza .form-warning em {
  color: var(--danger);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.bza .form-stepper { margin-bottom: 22px; }
.bza .form-stepper-bar {
  height: 4px;
  background: var(--cream-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 9px;
}
.bza .form-stepper-fill {
  height: 100%;
  background: var(--citrine);
  border-radius: 2px;
  width: 25%;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.bza .form-stepper-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--slate);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.bza .form-stepper-text .step-counter strong { color: var(--marine); font-weight: 700; font-size: 12px; }
.bza .form-stepper-text .step-title { color: var(--marine); font-weight: 700; }

.bza .form-step { display: none; animation: psrStepIn 0.35s ease; }
.bza .form-step.active { display: block; }

.bza .form-row { margin-bottom: 16px; }
.bza .form-row.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.bza .form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.bza .form-label .req { color: var(--citrine-deep); margin-left: 2px; }

.bza .form-input,
.bza .form-select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--cream-border);
  background: var(--white);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--marine);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bza .form-input:focus,
.bza .form-select:focus {
  outline: none;
  border-color: var(--marine);
  box-shadow: 0 0 0 3px rgba(20, 39, 78, 0.10);
}
.bza .form-input::placeholder { color: var(--slate-light); }
.bza .form-input.has-error,
.bza .form-select.has-error { border-color: var(--danger); }

.bza .form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2314274E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.bza .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 16px 0 4px;
  font-size: 11.5px;
  color: var(--slate);
  line-height: 1.45;
}
.bza .form-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--marine);
  cursor: pointer;
}
.bza .form-consent a { color: var(--marine); text-decoration: underline; font-weight: 600; }

.bza .form-nav { display: flex; gap: 10px; align-items: center; margin-top: 20px; }

.bza .form-back {
  flex-shrink: 0;
  background: var(--cream-deep);
  color: var(--marine);
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.bza .form-back:hover { background: var(--cream-border); }

.bza .form-next,
.bza .form-submit {
  flex: 1;
  background: var(--citrine);
  color: var(--marine);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bza .form-next:hover,
.bza .form-submit:hover {
  background: var(--citrine-bright);
  box-shadow: 0 4px 16px rgba(255, 196, 54, 0.4);
  transform: translateY(-1px);
}
.bza .form-back[hidden],
.bza .form-next[hidden],
.bza .form-submit[hidden] { display: none; }

.bza .form-next.is-loading,
.bza .form-submit.is-loading { pointer-events: none; opacity: 0.75; cursor: wait; }

.bza .form-spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(20, 39, 78, 0.25);
  border-top-color: var(--marine);
  border-radius: 50%;
  animation: psrSpin 0.7s linear infinite;
}

.bza .form-error {
  background: var(--danger-soft);
  border-left: 3px solid var(--danger);
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  color: #4A1313;
  line-height: 1.45;
  margin: 14px 0 0;
}

.bza .form-mc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--slate);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.bza .form-mc-item { display: inline-flex; align-items: center; gap: 5px; }
.bza .form-mc-item svg { width: 12px; height: 12px; color: var(--success-deep); }
.bza .form-mc .sep { color: var(--cream-border); }

.bza .form-disclosure {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-border);
  font-size: 10.5px;
  line-height: 1.55;
  color: var(--slate);
}

.bza .form-success { text-align: center; padding: 28px 12px; animation: psrStepIn 0.4s ease; }
.bza .form-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--marine);
  border: 3px solid var(--citrine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.bza .form-success-icon svg { width: 32px; height: 32px; color: var(--citrine); }
.bza .form-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--marine);
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}
.bza .form-success p { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 12px; }
.bza .form-success .lead-ref {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--cream-border);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--marine);
  font-weight: 700;
  margin-top: 8px;
}


/* ===== 07 · STATS ========================================== */
.bza .stats-bar { background: var(--cream); padding: 50px 0; border-bottom: 1px solid var(--cream-border); }
.bza .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.bza .stat { text-align: center; }
.bza .stat-value {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--marine);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.bza .stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}


/* ===== 08 · ENCABEZADOS DE SECCIÓN ========================= */
.bza .section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--citrine-deep);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--citrine-soft);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  font-weight: 500;
}
.bza .section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.bza .section-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--marine);
  margin-bottom: 18px;
}
.bza .section-title .accent { font-style: italic; }
.bza .section-sub { font-size: 17px; line-height: 1.6; color: var(--slate); }
.bza .section-note {
  max-width: 780px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--slate);
  font-style: italic;
}
.bza .section-note strong { color: var(--marine); font-style: normal; font-weight: 600; }
.bza .section-note a { color: var(--citrine-deep); text-decoration: underline; font-style: normal; }


/* ===== 09 · BENEFICIOS ===================================== */
.bza .real-biz { background: var(--white); padding: 90px 0; }
.bza .real-biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bza .biz-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  transition: transform 0.3s;
  background: var(--marine);
}
.bza .biz-card:hover { transform: translateY(-4px); }
.bza .biz-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bza .biz-card:hover img { transform: scale(1.04); }
.bza .biz-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 27, 56, 0.9) 0%, rgba(14, 27, 56, 0.4) 40%, transparent 70%);
}
.bza .biz-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 22px 20px; color: var(--cream); }
.bza .biz-card-tag {
  display: inline-block;
  background: var(--citrine);
  color: var(--marine);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.bza .biz-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.bza .biz-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(250, 246, 236, 0.75);
  letter-spacing: 1px;
  line-height: 1.5;
}
.bza .biz-card-amount {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(20, 39, 78, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 196, 54, 0.3);
  text-align: right;
}
.bza .biz-card-amount span {
  font-size: 8px;
  color: var(--citrine);
  letter-spacing: 1.5px;
  display: block;
  margin-top: 2px;
}


/* ===== 10 · SERVICIOS ====================================== */
.bza .products { background: var(--cream); }
.bza .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bza .product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  border: 1px solid var(--cream-border);
  display: flex;
  flex-direction: column;
}
.bza .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--citrine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.bza .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bza .product-card:hover::before { transform: scaleX(1); }
.bza .product-card.featured { background: var(--marine); color: var(--cream); border-color: var(--marine); }
.bza .product-card.featured::before { transform: scaleX(1); }

.bza .product-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  color: var(--citrine-deep);
  background: var(--citrine-soft);
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.bza .product-card.featured .product-tag { color: var(--marine); background: var(--citrine); }

.bza .product-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.bza .product-card.featured .product-icon-wrap { background: var(--citrine); }
.bza .product-icon {
  width: 26px;
  height: 26px;
  stroke: var(--citrine);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bza .product-card.featured .product-icon { stroke: var(--marine); }

.bza .product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--marine);
  margin-bottom: 8px;
  line-height: 1.2;
}
.bza .product-card.featured .product-name { color: var(--cream); }

.bza .product-desc { font-size: 14px; line-height: 1.6; color: var(--slate); margin-bottom: 22px; }
.bza .product-card.featured .product-desc { color: rgba(250, 246, 236, 0.75); }

.bza .product-list { margin-bottom: 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.bza .product-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--marine);
  font-weight: 500;
}
.bza .product-card.featured .product-list li { color: rgba(250, 246, 236, 0.9); }
.bza .product-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--citrine-soft);
  border: 1px solid var(--citrine);
}
.bza .product-card.featured .product-list li::before {
  background: rgba(255, 196, 54, 0.18);
  border-color: var(--citrine);
}

.bza .product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-border);
  margin-bottom: 24px;
}
.bza .product-card.featured .product-meta { border-top-color: rgba(250, 246, 236, 0.15); }
.bza .product-meta-item .v {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--marine);
  letter-spacing: -0.3px;
}
.bza .product-card.featured .product-meta-item .v { color: var(--citrine); }
.bza .product-meta-item .k {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--slate);
  letter-spacing: 1.5px;
  margin-top: 2px;
  text-transform: uppercase;
}
.bza .product-card.featured .product-meta-item .k { color: rgba(250, 246, 236, 0.5); }

.bza .product-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--marine);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bza .product-link::after { content: "→"; transition: transform 0.2s; }
.bza .product-card:hover .product-link::after { transform: translateX(4px); }
.bza .product-card.featured .product-link { color: var(--citrine); }


/* ===== 11 · PROCESO ======================================== */
.bza .how { background: var(--white); }
.bza .how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bza .how-step { position: relative; }
.bza .how-step-num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  color: var(--marine);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.bza .how-step-num .dot { color: var(--citrine); }
.bza .how-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.bza .how-step-desc { font-size: 14px; line-height: 1.6; color: var(--slate); margin-bottom: 14px; }
.bza .how-step-meta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--citrine-deep);
  background: var(--citrine-soft);
  padding: 5px 10px;
  border-radius: 12px;
  font-weight: 700;
}
.bza .how-cta { text-align: center; margin-top: 60px; }
.bza .how-cta-trust { display: flex; justify-content: center; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.bza .how-cta-trust span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bza .how-cta-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--citrine); }


/* ===== 12 · CREDENCIALES =================================== */
.bza .industries { background: var(--cream); }
.bza .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bza .industry-pill {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 12px;
  padding: 28px 14px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: block;
}
.bza .industry-pill:hover { background: var(--marine); border-color: var(--marine); transform: translateY(-2px); }
.bza a.industry-pill { cursor: pointer; }

.bza .industry-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.2s;
}
.bza .industry-pill:hover .industry-icon-wrap { background: var(--citrine); }
.bza .industry-icon {
  width: 22px;
  height: 22px;
  stroke: var(--citrine);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
.bza .industry-pill:hover .industry-icon { stroke: var(--marine); }

.bza .industry-value {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  color: var(--marine);
  letter-spacing: -0.6px;
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.bza .industry-pill:hover .industry-value { color: var(--citrine); }

.bza .industry-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.45;
  transition: color 0.2s;
}
.bza .industry-pill:hover .industry-name { color: rgba(250, 246, 236, 0.75); }

.bza .industry-verify,
.bza .industry-source {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--cream-border);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.bza .industry-verify { color: var(--citrine-deep); }
.bza .industry-source { color: var(--slate-light); }
.bza .industry-pill:hover .industry-verify { color: var(--citrine); border-top-color: rgba(255, 196, 54, 0.35); }
.bza .industry-pill:hover .industry-source { color: rgba(250, 246, 236, 0.45); border-top-color: rgba(250, 246, 236, 0.15); }


/* ===== 13 · TESTIMONIOS ==================================== */
.bza .testimonials { background: var(--white); }
.bza .testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bza .testimonial {
  background: var(--cream);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  border: 1px solid var(--cream-border);
  display: flex;
  flex-direction: column;
}
.bza .testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  color: var(--citrine);
  position: absolute;
  top: 22px;
  right: 28px;
  font-weight: 700;
}
.bza .testimonial-stars { color: var(--citrine); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.bza .testimonial-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--marine);
  letter-spacing: -0.3px;
  margin-bottom: 28px;
  max-width: 90%;
  flex: 1;
}
.bza .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--cream-border);
}
.bza .testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--marine);
  border: 2px solid var(--citrine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--citrine);
  letter-spacing: -0.5px;
}
.bza .testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--marine);
  letter-spacing: -0.3px;
}
.bza .testimonial-role {
  font-size: 12px;
  color: var(--slate);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.bza .testimonial-amount { margin-left: auto; text-align: right; }
.bza .testimonial-amount .v { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--marine); }
.bza .testimonial-amount .k { font-family: var(--font-mono); font-size: 9px; color: var(--slate); letter-spacing: 1.5px; margin-top: 2px; }


/* ===== 14 · FAQ ============================================ */
.bza .faq { background: var(--cream); }
.bza .faq-list { max-width: 820px; margin: 0 auto; }
.bza .faq-item { border-bottom: 1px solid var(--cream-border); padding: 24px 0; }
.bza .faq-item:first-child { border-top: 1px solid var(--cream-border); }
.bza .faq-q {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--marine);
  letter-spacing: -0.4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.bza .faq-q::-webkit-details-marker { display: none; }
.bza .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--citrine-soft);
  color: var(--citrine-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s, transform 0.25s;
}
.bza .faq-item[open] .faq-icon { background: var(--marine); color: var(--citrine); transform: rotate(45deg); }
.bza .faq-a { font-size: 15px; line-height: 1.7; color: var(--slate); padding-top: 14px; max-width: 90%; }


/* ===== 15 · CTA FINAL ====================================== */
.bza .cta-final { background: var(--marine); position: relative; overflow: hidden; }
.bza .cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255, 196, 54, 0.12) 0%, transparent 50%);
}
.bza .cta-final-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.bza .cta-final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--citrine);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.bza .cta-final-eyebrow::before,
.bza .cta-final-eyebrow::after { content: ""; width: 24px; height: 1px; background: var(--citrine); }
.bza .cta-final h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 22px;
}
.bza .cta-final h2 .accent { color: var(--citrine); font-style: italic; }
.bza .cta-final-sub { font-size: 18px; color: rgba(250, 246, 236, 0.78); margin-bottom: 22px; line-height: 1.6; }
.bza .cta-final-ratings {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 22px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 196, 54, 0.3);
  border-radius: 100px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.75);
}
.bza .cta-final-ratings strong { color: var(--citrine); font-weight: 700; }
.bza .cta-final-ratings .sep { color: rgba(250, 246, 236, 0.2); }
.bza .cta-final-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.5px;
  color: rgba(250, 246, 236, 0.4);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto 30px;
}
.bza .cta-final-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.bza .cta-final-trust { display: flex; justify-content: center; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.bza .cta-final-trust span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(250, 246, 236, 0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bza .cta-final-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--citrine); }


/* ===== 16 · DISCLOSURES ==================================== */
.bza .legal { background: var(--marine-deep); color: rgba(250, 246, 236, 0.55); padding: 56px 0; }
.bza .legal-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--citrine);
  margin-bottom: 20px;
  font-weight: 500;
}
.bza .legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; margin-bottom: 26px; }
.bza .legal-item { font-size: 12.5px; line-height: 1.65; }
.bza .legal-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--cream);
  margin-bottom: 3px;
}
.bza .legal-item a, .bza .legal-fine a { color: var(--citrine); text-decoration: underline; }
.bza .legal-fine {
  border-top: 1px solid rgba(250, 246, 236, 0.1);
  padding-top: 22px;
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(250, 246, 236, 0.42);
}


/* ===== 17 · FOOTER ========================================= */
.bza-footer { background: var(--marine-deep); color: rgba(250, 246, 236, 0.7); padding: 80px 0 28px; }
.psr-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.1);
}
.psr-footer-brand .psr-footer-logo { height: 38px; width: auto; }
.psr-footer-tag { font-size: 13px; line-height: 1.7; margin: 18px 0; max-width: 340px; }

.psr-footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 13px; }
.psr-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.psr-footer-contact-item svg { width: 15px; height: 15px; color: var(--citrine); flex-shrink: 0; margin-top: 4px; }
.psr-footer-contact-item a { transition: color 0.18s; }
.psr-footer-contact-item a:hover { color: var(--citrine); }

.psr-footer-social { display: flex; gap: 9px; margin-top: 20px; }
.psr-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(250, 246, 236, 0.06);
  border: 1px solid rgba(250, 246, 236, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s;
}
.psr-footer-social a:hover {
  background: var(--citrine);
  color: var(--marine);
  border-color: var(--citrine);
  transform: translateY(-2px);
}
.psr-footer-social svg { width: 15px; height: 15px; }

.psr-footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--citrine);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.psr-footer-col li { margin-bottom: 10px; }
.psr-footer-col a {
  font-size: 13px;
  transition: color 0.18s;
  line-height: 1.45;
  display: inline-block;
}
.bza-footer .psr-footer-col a:hover { color: var(--citrine); }

.psr-footer-col .col-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--citrine);
  padding: 9px 14px;
  background: rgba(255, 196, 54, 0.1);
  border: 1px solid rgba(255, 196, 54, 0.3);
  border-radius: 8px;
  margin-top: 6px;
}
.psr-footer-col .col-cta:hover { background: var(--citrine); color: var(--marine); }

.psr-footer-hours { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; }
.psr-footer-hours-row { display: flex; justify-content: space-between; gap: 14px; }
.psr-footer-hours-row .day { font-weight: 600; color: var(--cream); }
.psr-footer-hours-row span:last-child { font-family: var(--font-mono); font-size: 11.5px; }

.psr-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(250, 246, 236, 0.1);
}
.psr-footer-legal a,
.psr-footer-legal button {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(250, 246, 236, 0.7);
  font-weight: 500;
  padding: 6px 22px;
  border: none;
  border-right: 1px solid rgba(250, 246, 236, 0.14);
  background: none;
  cursor: pointer;
  transition: color 0.18s;
  line-height: 1.4;
}
.psr-footer-legal .psr-legal-links,
.psr-footer-legal .psr-legal-links li { display: contents; }
.psr-footer-legal > *:last-child > li:last-child a,
.psr-footer-legal > button:last-child { border-right: none; }
.psr-footer-legal a:last-child,
.psr-footer-legal button:last-child { border-right: none; }
.psr-footer-legal a:hover,
.psr-footer-legal button:hover { color: var(--citrine); }

.psr-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  color: rgba(250, 246, 236, 0.45);
}
.psr-footer-bottom a { color: var(--cream); text-decoration: underline; text-decoration-color: var(--citrine); text-underline-offset: 3px; }

.psr-footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(250, 246, 236, 0.42);
  padding-top: 18px;
  border-top: 1px solid rgba(250, 246, 236, 0.06);
}
.psr-footer-disclaimer a { color: var(--citrine); text-decoration: underline; }


/* ===== 18 · COOKIES ======================================== */
.psr-cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(14, 27, 56, 0.25), 0 0 0 1px var(--border);
  padding: 22px 26px;
  border-left: 4px solid var(--citrine);
  animation: psrSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.psr-cookie-banner[hidden] { display: none; }
.psr-cookie-content { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.psr-cookie-text { flex: 1; min-width: 300px; }
.psr-cookie-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--citrine-soft);
  color: var(--citrine-deep);
  margin-right: 12px;
  flex-shrink: 0;
  float: left;
}
.psr-cookie-icon svg { width: 20px; height: 20px; }
.psr-cookie-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--marine);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.psr-cookie-text p { font-size: 13px; color: var(--slate); line-height: 1.55; margin: 0; }
.psr-cookie-text p a { color: var(--marine); font-weight: 600; text-decoration: underline; }
.psr-cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.psr-cookie-actions .psr-btn { font-size: 13px; padding: 11px 18px; }

.psr-cookie-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.psr-cookie-modal[hidden] { display: none; }
.psr-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 27, 56, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: psrFadeIn 0.25s ease;
}
.psr-cookie-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: psrSlideUp 0.3s ease;
}
.psr-cookie-head { padding: 26px 28px 18px; border-bottom: 1px solid var(--border); position: relative; }
.psr-cookie-head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--marine);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.psr-cookie-head p { font-size: 13.5px; color: var(--slate); line-height: 1.55; margin: 0; }
.psr-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--marine);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s;
}
.psr-modal-close:hover { background: var(--citrine-soft); }

.psr-cookie-body { padding: 8px 28px 0; }
.psr-cookie-cat { padding: 18px 0; border-bottom: 1px solid var(--border); }
.psr-cookie-cat:last-child { border-bottom: none; }
.psr-cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--marine);
  gap: 14px;
}
.psr-cookie-cat-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--slate);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--cream);
}
.psr-cookie-cat p { font-size: 12.5px; color: var(--slate); line-height: 1.55; margin: 0; }

.psr-toggle { position: relative; display: inline-block; width: 38px; height: 22px; flex-shrink: 0; }
.psr-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.psr-toggle .slider { position: absolute; cursor: pointer; inset: 0; background: #CFD5DC; border-radius: 100px; transition: background 0.25s; }
.psr-toggle .slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.psr-toggle input:checked + .slider { background: var(--citrine); }
.psr-toggle input:checked + .slider::before { transform: translateX(16px); }
.psr-toggle input:disabled + .slider { background: var(--citrine-soft); cursor: not-allowed; opacity: 0.7; }

.psr-cookie-actions-modal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 28px 22px;
  border-top: 1px solid var(--border);
  background: var(--cream);
  border-radius: 0 0 18px 18px;
}
.psr-cookie-actions-modal .psr-btn { flex: 1; min-width: 100px; font-size: 13.5px; padding: 12px 16px; }

.psr-gpc-notice {
  display: none;
  background: var(--citrine-soft);
  border-left: 3px solid var(--citrine);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--citrine-deep);
  line-height: 1.45;
  margin: 0 0 12px;
}
.psr-gpc-notice.active { display: block; }
.psr-gpc-notice strong { font-weight: 700; }


/* ===== 20 · BARRA FIJA MOBILE ============================== */
.psr-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9995;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}
.psr-mobile-bar a,
.psr-mobile-bar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  border: none;
}
.psr-overlay-ui .psr-mobile-bar a.bar-call { background: var(--marine); color: var(--citrine) !important; }
.psr-mobile-bar .bar-call svg { fill: var(--citrine); flex-shrink: 0; }


/* ===== 21 · MOVIMIENTO ===================================== */
@keyframes psrFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes psrStepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes psrSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes psrFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes psrSpin { to { transform: rotate(360deg); } }

.bza .hero-eyebrow,
.bza .hero h1,
.bza .hero-sub,
.bza .hero-trust-list,
.bza .calc { animation: psrFadeUp 0.7s ease forwards; opacity: 0; }
.bza .hero-eyebrow { animation-delay: 0.05s; }
.bza .hero h1 { animation-delay: 0.15s; }
.bza .hero-sub { animation-delay: 0.3s; }
.bza .hero-trust-list { animation-delay: 0.45s; }
.bza .calc { animation-duration: 0.8s; animation-delay: 0.4s; }


/* ===== 22 · RESPONSIVE ===================================== */
@media (max-width: 1100px) {
  .psr-footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .psr-footer-col--hours { grid-column: 1 / -1; }
  .psr-footer-hours { flex-direction: row; flex-wrap: wrap; gap: 26px; }
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-link-login { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta > .psr-btn { display: none; }
}
@media (max-width: 480px) {
  .brand-text { display: none; }
}

@media (max-width: 980px) {
  .bza .hero { padding: 50px 0 70px; }
  .bza .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .bza .hero h1 { font-size: 40px; letter-spacing: -1.2px; }
  .bza .hero-content { max-width: none; }
  .bza .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bza .real-biz-grid { grid-template-columns: repeat(2, 1fr); }
  .bza .products-grid { grid-template-columns: 1fr; }
  .bza .how-grid { grid-template-columns: repeat(2, 1fr); }
  .bza .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .bza .testimonial-grid { grid-template-columns: 1fr; }
  .bza .legal-grid { grid-template-columns: 1fr; }
  .bza .section-title { font-size: 34px; letter-spacing: -1px; }
  .bza .cta-final h2 { font-size: 38px; letter-spacing: -1.2px; }
  .bza .bza-section { padding: 70px 0; }
  .bza .real-biz { padding: 70px 0; }
  .psr-footer-grid { grid-template-columns: 1fr 1fr; }
  .psr-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .psr-mobile-bar { display: flex; }
  body { padding-bottom: 58px; }
  .psr-cookie-banner { bottom: 70px; left: 12px; right: 12px; padding: 18px 20px; }
  .psr-cookie-icon { display: none; }
  .psr-cookie-actions { width: 100%; }
  .psr-cookie-actions .psr-btn { flex: 1; font-size: 12px; padding: 11px 8px; }
}

@media (max-width: 560px) {
  .bza .hero h1 { font-size: 34px; }
  .bza .calc { padding: 24px 22px; }
  .bza .real-biz-grid { grid-template-columns: 1fr; }
  .bza .how-grid { grid-template-columns: 1fr; }
  .bza .form-row.row-2 { grid-template-columns: 1fr; }
  .bza .testimonial-quote { font-size: 16px; }
  .psr-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .psr-footer-bottom { justify-content: center; text-align: center; }
  .psr-footer-legal a, .psr-footer-legal button { border-right: none; padding: 5px 14px; }
  .psr-cookie-actions-modal { flex-direction: column; }
  .psr-cookie-actions-modal .psr-btn { width: 100%; }
}


/* ===== 23 · ACCESIBILIDAD ================================== */
.bza a:focus-visible,
.bza button:focus-visible,
.bza input:focus-visible,
.bza select:focus-visible,
.bza summary:focus-visible,
.site-header a:focus-visible,
.site-header button:focus-visible,
.bza-footer a:focus-visible,
.bza-footer button:focus-visible,
.psr-overlay-ui a:focus-visible,
.psr-overlay-ui button:focus-visible {
  outline: 3px solid var(--citrine);
  outline-offset: 2px;
  border-radius: 4px;
}

.psr-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  background: var(--citrine);
  color: var(--marine);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.psr-skip-link:focus { left: 0; }

.psr-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;
}

@media (prefers-reduced-motion: reduce) {
  .bza *, .site-header *, .bza-footer *, .psr-overlay-ui * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bza .hero-eyebrow, .bza .hero h1, .bza .hero-sub,
  .bza .hero-trust-list, .bza .calc { opacity: 1; }
}


/* ===== 24 · BLOG, PÁGINAS Y COMENTARIOS ==================== */
.psr-page { background: var(--white); }
.content-wrap { max-width: 780px; }
.page-title, .entry-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--marine);
  margin-bottom: 24px;
}
.entry-thumb { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.entry-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
}
.entry-content { font-size: 17px; line-height: 1.75; color: var(--ink); }
.entry-content > * + * { margin-top: 1.3em; }
.entry-content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.9px;
  color: var(--marine);
  margin-top: 1.8em;
}
.entry-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--marine);
  margin-top: 1.6em;
}
.entry-content a { color: var(--marine); text-decoration: underline; text-underline-offset: 2px; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li + li { margin-top: 0.5em; }
.entry-content blockquote {
  border-left: 3px solid var(--citrine);
  padding-left: 22px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--marine);
  font-style: italic;
}
.entry-content img { border-radius: 12px; }
.entry-content code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 5px;
}

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--cream); display: block; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card-cat {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--citrine-deep);
  background: var(--citrine-soft);
  padding: 4px 10px;
  border-radius: 12px;
  align-self: flex-start;
  margin-bottom: 14px;
  font-weight: 700;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: var(--marine);
  margin-bottom: 10px;
}
.post-card-excerpt { font-size: 14px; line-height: 1.6; color: var(--slate); flex: 1; margin-bottom: 16px; }
.post-card-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--slate-light);
}

.psr-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.psr-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--cream-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--marine);
  padding: 0 12px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.psr-pagination .page-numbers:hover { background: var(--cream); }
.psr-pagination .page-numbers.current { background: var(--marine); color: var(--citrine); border-color: var(--marine); }

.psr-search-form { display: flex; gap: 8px; max-width: 420px; }
.psr-search-form input[type="search"] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--marine);
}
.psr-search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--marine);
  box-shadow: 0 0 0 3px rgba(20, 39, 78, 0.10);
}

.psr-widget { margin-bottom: 34px; }
.psr-widget-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--citrine-deep);
  margin-bottom: 16px;
  font-weight: 700;
}
.psr-widget ul { list-style: none; }
.psr-widget li { margin-bottom: 9px; font-size: 14px; }
.psr-widget a { color: var(--marine); }
.psr-widget a:hover { color: var(--citrine-deep); }

.psr-404 { text-align: center; max-width: 560px; margin: 0 auto; }
.psr-404-code {
  font-family: var(--font-mono);
  font-size: 92px;
  font-weight: 700;
  color: var(--citrine);
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 18px;
}

.comment-list { list-style: none; }
.comment-list li { padding: 20px 0; border-bottom: 1px solid var(--cream-border); }
.comment-form input, .comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 12px;
}
.comment-form input[type="submit"] {
  width: auto;
  background: var(--marine);
  color: var(--citrine);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  padding: 13px 26px;
}

@media (max-width: 980px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .page-title, .entry-title { font-size: 32px; letter-spacing: -1px; }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .entry-content { font-size: 16px; }
}


/* ===== 25 · CONTRASTE FORZADO ==============================
   El kit de Elementor pinta párrafos y enlaces con su color global.
   Sus reglas empatan en especificidad con las nuestras y cargan
   después, así que ganaban ellas. Aquí forzamos el color: es de los
   pocos casos donde !important es la respuesta correcta, porque
   estamos sobrescribiendo CSS de terceros que no controlamos.
   ============================================================ */

/* --- HEADER --- */
.site-header .brand-text { color: var(--cream) !important; }
.site-header .brand-text .dot,
.site-header .brand-mark .dot { color: var(--citrine) !important; }
.site-header .brand-mark { color: var(--marine) !important; background: var(--citrine); }

.site-header a.nav-link-login {
  color: var(--cream) !important;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: .9;
}
.site-header a.nav-link-login:hover { color: var(--citrine) !important; opacity: 1; }

.site-header .psr-nav-links > li > a { color: rgba(250,246,236,.85) !important; }
.site-header .psr-nav-links > li > a:hover,
.site-header .psr-nav-links > li.current-menu-item > a,
.site-header .psr-nav-links > li.current-menu-ancestor > a { color: var(--citrine) !important; }
.site-header .psr-nav-links .sub-menu a { color: var(--marine) !important; }
.site-header .psr-nav-links .sub-menu a small { color: var(--slate) !important; }

/* --- FOOTER: texto corrido --- */
.bza-footer,
.bza-footer p,
.bza-footer span,
.bza-footer li,
.bza-footer div { color: rgba(250,246,236,.72); }

.bza-footer p.psr-footer-tag { color: rgba(250,246,236,.72) !important; }

.bza-footer .psr-footer-contact,
.bza-footer .psr-footer-contact-item,
.bza-footer .psr-footer-contact-item span,
.bza-footer .psr-footer-contact-item a { color: rgba(250,246,236,.72) !important; }
.bza-footer .psr-footer-contact-item a:hover { color: var(--citrine) !important; }
.bza-footer .psr-footer-contact-item svg { color: var(--citrine) !important; }

/* --- FOOTER: redes --- */
.bza-footer .psr-footer-social a {
  color: rgba(250,246,236,.8) !important;
  background: rgba(250,246,236,.08);
  border-color: rgba(250,246,236,.18);
}
.bza-footer .psr-footer-social a:hover {
  color: var(--marine) !important;
  background: var(--citrine);
  border-color: var(--citrine);
}
.bza-footer .psr-footer-social svg { color: currentColor; }

/* --- FOOTER: columnas --- */
.bza-footer .psr-footer-col h4 { color: var(--citrine) !important; }
.bza-footer .psr-footer-col li a { color: rgba(250,246,236,.72) !important; }
.bza-footer .psr-footer-col li a:hover { color: var(--citrine) !important; }
.bza-footer a.col-cta { color: var(--citrine) !important; }
.bza-footer a.col-cta:hover { color: var(--marine) !important; }

/* --- FOOTER: horarios --- */
.bza-footer .psr-footer-hours,
.bza-footer .psr-footer-hours-row,
.bza-footer .psr-footer-hours-row span { color: rgba(250,246,236,.72) !important; }
.bza-footer .psr-footer-hours-row .day { color: var(--cream) !important; font-weight: 600; }

/* --- FOOTER: legales y pie --- */
.bza-footer .psr-footer-legal a,
.bza-footer .psr-footer-legal button { color: rgba(250,246,236,.72) !important; }
.bza-footer .psr-footer-legal a:hover,
.bza-footer .psr-footer-legal button:hover { color: var(--citrine) !important; }

.bza-footer .psr-footer-bottom,
.bza-footer .psr-footer-bottom span { color: rgba(250,246,236,.55) !important; }
.bza-footer .psr-footer-bottom a { color: var(--cream) !important; }
.bza-footer .psr-footer-bottom a:hover { color: var(--citrine) !important; }

.bza-footer p.psr-footer-disclaimer { color: rgba(250,246,236,.55) !important; }
.bza-footer p.psr-footer-disclaimer a { color: var(--citrine) !important; }

/* La marca del pie usa las mismas clases que la del header */
.bza-footer .brand-text { color: var(--cream) !important; }
.bza-footer .brand-mark { color: var(--marine) !important; }


/* ===== 26 · CABECERA CLARA (opción del Personalizador) =====
   Se activa con PSR › Cabecera › Fondo = Blanco.
   ============================================================ */
.site-header--light { background: var(--white); border-bottom: 1px solid var(--border); }
.site-header--light.is-stuck { background: var(--white); box-shadow: 0 4px 20px rgba(20, 39, 78, 0.10); }

.site-header--light .brand-text { color: var(--marine) !important; }
.site-header--light .brand-text .dot { color: var(--citrine) !important; }

.site-header--light .psr-nav-links > li > a { color: rgba(20, 39, 78, 0.82) !important; }
.site-header--light .psr-nav-links > li > a:hover,
.site-header--light .psr-nav-links > li.current-menu-item > a,
.site-header--light .psr-nav-links > li.current-menu-ancestor > a {
  color: var(--marine) !important;
  background: var(--cream);
}

.site-header--light a.nav-link-login { color: var(--slate) !important; opacity: 1; }
.site-header--light a.nav-link-login:hover { color: var(--marine) !important; }

/* El botón de contorno amarillo pierde contraste sobre blanco: pasa a marino */
.site-header--light a.psr-btn--ghost-light {
  color: var(--marine) !important;
  border-color: var(--marine);
  background: transparent;
}
.site-header--light a.psr-btn--ghost-light:hover {
  background: var(--marine);
  color: var(--citrine) !important;
}

.site-header--light .nav-toggle { background: var(--cream); border-color: var(--cream-border); }
.site-header--light .nav-toggle span { background: var(--marine); }

.site-header--light .nav-mobile { background: var(--white); border-top-color: var(--border); }
.site-header--light .nav-mobile .psr-nav-links > li > a {
  color: var(--marine) !important;
  border-bottom-color: var(--border);
}
.site-header--light .nav-mobile .sub-menu a { color: var(--slate) !important; border-bottom-color: var(--border); }

/* Cabecera no fija */
.site-header--static { position: static; }


/* ===== 27 · BLINDAJE GENERAL ===============================
   Elementor pinta `p`, `a`, `li` y `span` con el color global de
   su kit. Cualquier elemento nuestro que no declare color propio
   quedaría con ese color. Esta regla solo toca elementos SIN clase
   (los que en nuestro diseño siempre heredan del contenedor),
   así que no pisa ningún color intencional.
   ============================================================ */
.bza p:not([class]),
.bza a:not([class]),
.bza li:not([class]),
.bza span:not([class]),
.bza strong:not([class]),
.bza em:not([class]),
.bza-footer p:not([class]),
.bza-footer a:not([class]),
.bza-footer li:not([class]),
.bza-footer span:not([class]),
.site-header a:not([class]),
.site-header span:not([class]),
.psr-overlay-ui p:not([class]),
.psr-overlay-ui a:not([class]),
.psr-overlay-ui span:not([class]),
.psr-overlay-ui strong:not([class]) { color: inherit !important; }

/* Elementos con clase que sí heredaban y podían quedar sin color */
.bza .legal-item { color: rgba(250, 246, 236, 0.55) !important; }
.bza .legal-item strong { color: var(--cream) !important; }
.bza .biz-card-content,
.bza .biz-card-name { color: var(--cream) !important; }
.bza .biz-card-meta { color: rgba(250, 246, 236, 0.75) !important; }
.bza .biz-card-tag { color: var(--marine) !important; }
.bza .form-consent { color: var(--slate) !important; }
.bza .form-consent a { color: var(--marine) !important; }
.bza .hero-trust-list li { color: rgba(250, 246, 236, 0.85) !important; }
.bza .hero-rating-item { color: rgba(250, 246, 236, 0.7) !important; }
.bza .hero-rating-item strong { color: var(--citrine) !important; }
.bza .cta-final-ratings { color: rgba(250, 246, 236, 0.75) !important; }
.bza .cta-final-ratings strong { color: var(--citrine) !important; }
.bza .cta-final-trust span { color: rgba(250, 246, 236, 0.55) !important; }
.bza .how-cta-trust span { color: var(--slate) !important; }
.bza .product-list li { color: var(--marine) !important; }
.bza .product-card.featured .product-list li { color: rgba(250, 246, 236, 0.9) !important; }
.bza .industry-name { color: var(--slate) !important; }
.bza .industry-pill:hover .industry-name { color: rgba(250, 246, 236, 0.75) !important; }
.bza .industry-value { color: var(--marine) !important; }
.bza .industry-pill:hover .industry-value { color: var(--citrine) !important; }
.bza .testimonial-quote { color: var(--marine) !important; }
.bza .faq-q { color: var(--marine) !important; }
.bza .section-title,
.bza .product-name,
.bza .how-step-title { color: var(--marine) !important; }
.bza .cta-final h2,
.bza .cta-final h2 .accent { color: var(--cream) !important; }
.bza .cta-final h2 .accent { color: var(--citrine) !important; }
.bza .hero h1 { color: var(--cream) !important; }
.bza .hero h1 .accent { color: var(--citrine) !important; }

/* Superposiciones: cookies y SMS sobre fondo claro */
.psr-overlay-ui .psr-cookie-text strong { color: var(--marine) !important; }
.psr-overlay-ui .psr-cookie-text p { color: var(--slate) !important; }
.psr-overlay-ui .psr-cookie-text p a { color: var(--marine) !important; }
.psr-overlay-ui .psr-cookie-head h3 { color: var(--marine) !important; }
.psr-overlay-ui .psr-cookie-head p,
.psr-overlay-ui .psr-cookie-cat p { color: var(--slate) !important; }
.psr-overlay-ui .psr-cookie-cat-head { color: var(--marine) !important; }
.psr-overlay-ui .psr-mobile-bar a.bar-call { color: var(--citrine) !important; }


/* ===== 28 · BARRIDO FINAL ==================================
   Cualquier elemento SIN clase dentro de nuestros contenedores
   debe heredar el color de su padre, nunca el gris global de
   Elementor (#54595F). Es seguro: todo lo que estilizamos tiene
   clase, así que esta regla no pisa ningún color intencional.
   ============================================================ */
.bza *:not([class]),
.bza-footer *:not([class]),
.site-header *:not([class]),
.psr-overlay-ui *:not([class]) { color: inherit !important; }

/* Contenedores raíz: el color base del que heredan los hijos */
.bza-footer { color: rgba(250, 246, 236, 0.72) !important; }
.site-header { color: var(--cream) !important; }
.site-header--light { color: var(--marine) !important; }


/* ===== 29 · AJUSTES DEL PIE ================================
   Títulos de columna más legibles y horarios que no se parten.
   ============================================================ */

/* La columna de horarios necesita más aire que las de enlaces */
.psr-footer-grid { grid-template-columns: 1.7fr 0.95fr 1.15fr 1fr 1.2fr; gap: 44px 36px; }

/* Títulos: 10px en mono con letter-spacing quedaban demasiado tenues */
.bza-footer .psr-footer-col h4 {
  font-size: 12px;
  letter-spacing: 1.9px;
  margin-bottom: 22px;
}

/* Horarios: día y valor en una sola línea cada uno, separados */
.psr-footer-hours { gap: 12px; }
.psr-footer-hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  white-space: nowrap;
}
.psr-footer-hours-row .day {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.psr-footer-hours-row span:last-child {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-align: right;
  flex-shrink: 0;
}

/* Separación entre enlaces de columna */
.psr-footer-col li { margin-bottom: 13px; }
.psr-footer-col li:last-child { margin-bottom: 0; }

@media (max-width: 1200px) {
  .psr-footer-grid { gap: 40px 28px; }
  .psr-footer-hours-row { gap: 14px; }
}
@media (max-width: 1100px) {
  .psr-footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .psr-footer-col--hours { grid-column: 1 / -1; }
  .psr-footer-hours { flex-direction: row; flex-wrap: wrap; gap: 14px 40px; }
  .psr-footer-hours-row { justify-content: flex-start; gap: 12px; }
}
@media (max-width: 980px) {
  .psr-footer-grid { grid-template-columns: 1fr 1fr; }
  .psr-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .psr-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .psr-footer-hours { flex-direction: column; gap: 10px; }
  .psr-footer-hours-row { justify-content: space-between; }
}


/* ===== 30 · CONTENEDOR DE ELEMENTOR ========================
   El widget HTML del home vive dentro de contenedores de Elementor
   con padding y ancho máximo propios. Eso deja franjas claras
   alrededor del hero.

   Dos capas de defensa:
   1. Full-bleed: cada sección se expande al ancho de la ventana
      sin importar qué la envuelva. Si el contenedor ya es full
      width, calc(50% - 50vw) da 0 y no cambia nada.
   2. Un script en theme.js limpia el padding de los ancestros,
      que es lo único que el CSS no puede alcanzar hacia arriba.
   ============================================================ */
.bza > section,
.bza > .legal {
  width: 100vw;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* El full-bleed necesita recortar el desborde horizontal.
   Ojo: `overflow-x: hidden` en html/body rompe position:sticky y
   dejaría el header sin fijar. `clip` recorta igual pero no crea
   contexto de scroll, así que el sticky sigue funcionando. */
html { overflow-x: clip; }
body { overflow-x: clip; }

/* Respaldo para navegadores sin overflow:clip */
@supports not (overflow: clip) {
  body { overflow-x: hidden; }
}

.bza { max-width: 100%; }

/* Respaldo por clase: si preferís no depender del script, poné
   psr-full al contenedor en Avanzado › Clases CSS. */
.psr-full,
.psr-full > .e-con-inner,
.psr-full > .elementor-container,
.psr-full .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}


/* ===== 31 · PÁGINA HOW IT WORKS ============================ */

/* --- Hero con imagen en vez de formulario --- */
.bza .hero--visual .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
.bza .hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--citrine);
  background: rgba(255, 196, 54, .12);
  border: 1px solid rgba(255, 196, 54, .3);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.bza .hero-figures { display: flex; flex-wrap: wrap; gap: 34px; margin: 26px 0 28px; }
.bza .hero-figure { display: flex; flex-direction: column; gap: 5px; }
.bza .hero-figure-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--citrine);
  line-height: 1;
  letter-spacing: -1px;
}
.bza .hero-figure-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(250, 246, 236, .6);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.bza .hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.bza .hero-visual { position: relative; }
.bza .hero-visual-img {
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid rgba(250, 246, 236, .08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}
.bza .hero-visual-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.bza .hero-visual-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
  display: flex;
  align-items: center;
  gap: 13px;
}
.bza .hero-visual-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--citrine);
  color: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bza .hero-visual-badge-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--marine) !important;
  line-height: 1;
}
.bza .hero-visual-badge-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--slate) !important;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* --- Caja de respuesta rápida (AEO) --- */
.bza .aeo { background: var(--cream); padding: 64px 0; }
.bza .aeo-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-left: 5px solid var(--citrine);
  border-radius: 14px;
  padding: 34px 38px;
  box-shadow: var(--shadow-md);
}
.bza .aeo-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--citrine-deep);
  text-transform: uppercase;
  background: var(--citrine-soft);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.bza .aeo-box h2 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  color: var(--marine) !important;
  letter-spacing: -.6px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.bza .aeo-box p { font-size: 15.5px; line-height: 1.75; color: var(--slate) !important; }
.bza .aeo-box strong { color: var(--marine) !important; font-weight: 700; }

/* --- Proceso en 3 pasos --- */
.bza .process { background: var(--white); }
.bza .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.bza .process-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--citrine) 0 6px, transparent 6px 13px);
}
.bza .process-card { text-align: center; padding: 0 12px; position: relative; }
.bza .process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--citrine);
  color: var(--marine) !important;
  font-family: var(--font-mono);
  font-size: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  letter-spacing: -1px;
  box-shadow: 0 8px 20px rgba(255, 196, 54, .22);
}
.bza .process-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--marine) !important;
  margin-bottom: 12px;
  letter-spacing: -.4px;
}
.bza .process-card p { font-size: 14.5px; line-height: 1.7; color: var(--slate) !important; margin-bottom: 14px; }
.bza .process-when {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--citrine-deep) !important;
  background: var(--citrine-soft);
  padding: 5px 12px;
  border-radius: 100px;
}

/* --- Línea de tiempo --- */
.bza .timeline-sec { background: var(--mist); }
.bza .timeline { max-width: 900px; margin: 0 auto; position: relative; }
.bza .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--citrine), var(--marine));
}
.bza .tl-item { position: relative; padding-left: 86px; margin-bottom: 30px; }
.bza .tl-item:last-child { margin-bottom: 0; }
.bza .tl-dot {
  position: absolute;
  left: 16px;
  top: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--citrine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--marine) !important;
  box-shadow: 0 4px 12px rgba(255, 196, 54, .28);
}
.bza .tl-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}
.bza .tl-when {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--citrine-deep) !important;
  margin-bottom: 7px;
}
.bza .tl-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--marine) !important;
  margin-bottom: 9px;
  letter-spacing: -.3px;
}
.bza .tl-card p { font-size: 14.5px; line-height: 1.7; color: var(--slate) !important; }
.bza .tl-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.bza .tl-card li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--slate) !important;
  padding-left: 24px;
  position: relative;
}
.bza .tl-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--citrine-soft);
  border: 1px solid var(--citrine);
}

/* --- Tabla comparativa --- */
.bza .compare { background: var(--cream); }
.bza .compare-wrap {
  max-width: 1060px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.bza .compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 700px; }
.bza .compare-table thead th {
  background: var(--marine);
  color: var(--cream) !important;
  padding: 17px 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  text-align: left;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.bza .compare-table thead th.is-own { background: var(--citrine); color: var(--marine) !important; }
.bza .compare-table tbody td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--cream-border);
  color: var(--slate) !important;
  vertical-align: middle;
}
.bza .compare-table tbody tr:last-child td { border-bottom: none; }
.bza .compare-table tbody td:first-child { font-weight: 600; color: var(--marine) !important; }
.bza .compare-table tbody td.is-own { background: var(--citrine-soft); font-weight: 600; color: var(--marine) !important; }

/* --- Qué necesitas --- */
.bza .prep { background: var(--white); }
.bza .prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.bza .prep-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.bza .prep-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 18px;
  background: var(--cream);
  border-left: 3px solid var(--citrine);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate) !important;
}
.bza .prep-list li strong { color: var(--marine) !important; font-weight: 700; }
.bza .prep-list li svg { flex-shrink: 0; width: 19px; height: 19px; color: var(--citrine-deep); margin-top: 2px; }
.bza .prep-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.bza .prep-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* --- Prestamistas --- */
.bza .lenders { background: var(--mist); }
.bza .lenders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
}
.bza .lender-chip {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  padding: 17px 14px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--marine) !important;
  transition: transform .2s, border-color .2s;
}
.bza .lender-chip:hover { transform: translateY(-2px); border-color: var(--citrine); }

/* --- Tarifas --- */
.bza .fees { background: var(--white); }
.bza .fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1060px; margin: 0 auto; }
.bza .fee-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 30px 28px;
  border: 1px solid var(--cream-border);
  text-align: center;
}
.bza .fee-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--marine);
  color: var(--citrine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.bza .fee-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--marine) !important;
  margin-bottom: 10px;
}
.bza .fee-card p { font-size: 14px; line-height: 1.7; color: var(--slate) !important; }
.bza .fees-note {
  max-width: 880px;
  margin: 34px auto 0;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 3px solid var(--citrine);
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--slate) !important;
}
.bza .fees-note strong { color: var(--marine) !important; }

/* --- Cobertura --- */
.bza .coverage { background: var(--white); }
.bza .coverage-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.bza .coverage-states { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 30px 0 22px; }
.bza .coverage-states span {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--marine) !important;
  font-weight: 500;
}
.bza .coverage-note { font-size: 14px; color: var(--slate) !important; }
.bza .coverage-note strong { color: var(--marine) !important; }

/* --- Autor --- */
.bza .author-sec { background: var(--cream); padding: 56px 0; }
.bza .author-card {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 28px;
  background: var(--white);
  border-radius: 16px;
  border-left: 5px solid var(--citrine);
  border-top: 1px solid var(--cream-border);
  border-right: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}
.bza .author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--marine);
  border: 2px solid var(--citrine);
  color: var(--citrine) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  flex-shrink: 0;
}
.bza .author-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--marine) !important;
  margin-bottom: 3px;
}
.bza .author-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--citrine-deep) !important;
  margin-bottom: 10px;
}
.bza .author-bio { font-size: 13.5px; line-height: 1.7; color: var(--slate) !important; }
.bza .author-bio a { color: var(--marine) !important; font-weight: 600; text-decoration: underline; }
.bza .author-updated {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--slate-light) !important;
  margin-top: 12px;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .bza .process-grid::before { display: none; }
}
@media (max-width: 980px) {
  .bza .hero--visual .hero-grid { grid-template-columns: 1fr; }
  .bza .process-grid { grid-template-columns: 1fr; gap: 38px; }
  .bza .fees-grid { grid-template-columns: 1fr; }
  .bza .prep-grid { grid-template-columns: 1fr; gap: 38px; }
  .bza .timeline::before { left: 22px; }
  .bza .tl-item { padding-left: 70px; }
  .bza .tl-dot { left: 6px; width: 32px; height: 32px; }
}
@media (max-width: 640px) {
  .bza .aeo-box { padding: 26px 24px; }
  .bza .aeo-box h2 { font-size: 21px; }
  .bza .hero-visual-badge { position: static; margin-top: 16px; display: inline-flex; }
  .bza .author-card { flex-direction: column; align-items: center; text-align: center; }
  .bza .hero-figures { gap: 22px; }
}


/* ===== 32 · PIE ADAPTABLE ==================================
   La grilla estaba fija en 5 columnas. Al quitar los respaldos
   de "Loan topics" y "Servicers", quedaban huecos. Con flex el
   pie se acomoda solo a cuantas columnas existan, según los
   menús que tengas asignados en Apariencia › Menús.
   ============================================================ */
.bza-footer .psr-footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px 40px;
}
.bza-footer .psr-footer-brand {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 420px;
}
.bza-footer .psr-footer-col {
  flex: 1 1 150px;
  min-width: 140px;
}
.bza-footer .psr-footer-col--hours {
  flex: 1 1 210px;
  min-width: 200px;
}

@media (max-width: 1100px) {
  .bza-footer .psr-footer-grid { gap: 38px 32px; }
  .bza-footer .psr-footer-col--hours { flex: 1 1 100%; }
  .bza-footer .psr-footer-hours { flex-direction: row; flex-wrap: wrap; gap: 14px 40px; }
  .bza-footer .psr-footer-hours-row { justify-content: flex-start; gap: 12px; }
}
@media (max-width: 980px) {
  .bza-footer .psr-footer-brand { flex: 1 1 100%; max-width: none; }
  .bza-footer .psr-footer-col { flex: 1 1 200px; }
}
@media (max-width: 560px) {
  .bza-footer .psr-footer-grid { gap: 30px; }
  .bza-footer .psr-footer-col,
  .bza-footer .psr-footer-col--hours { flex: 1 1 100%; }
  .bza-footer .psr-footer-hours { flex-direction: column; gap: 10px; }
  .bza-footer .psr-footer-hours-row { justify-content: space-between; }
}
