/* Primera página — calidad premium, mezcla visual sin nombres de terceros */

.home-premium .legal-banner { display: none !important; }

/* Ancho amplio: menos “columna centrada”, más a los lados */
.home-premium .container {
  max-width: var(--container);
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}
.home-premium .sec-somos .section-head,
.home-premium .sec-que-hacemos .section-head,
.home-premium .sec-cream .section-head {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.home-premium .sec-somos .somos-subtitle {
  text-align: left !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 700px) {
  .home-premium .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== Chrome: top-bar + header (v3 más armónico) ===== */
.site-chrome {
  --hdr-ink: #292524;
  --hdr-muted: #78716C;
  --hdr-cream: var(--surface);
  --hdr-coral: #D9785A;
  --hdr-coral-deep: var(--accent-deep);
  --hdr-gold: #D4A84B;
  --hdr-brown: #2C2118;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* una sola unidad visual */
  box-shadow: 0 8px 28px rgba(28, 25, 23, .06);
}

/* Top bar: clara y legible */
.top-bar {
  background: #ffffff;
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-ui);
  border-bottom: 1px solid rgba(226, 208, 188, .7);
  position: relative;
}
/* Franja bandera sutil (más suave, no grita) */
.top-bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #fcd116 0%,
    #fcd116 48%,
    #003893 48%,
    #003893 74%,
    #ce1126 74%,
    #ce1126 100%
  );
  opacity: 1;
  pointer-events: none;
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 12px;
}
.top-bar-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.top-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c84a, #c46a72);
  box-shadow: 0 0 0 2.5px rgba(232, 200, 74, .22);
  flex-shrink: 0;
}
.top-bar-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.top-bar-sep {
  width: 1px;
  height: 11px;
  background: rgba(92, 61, 46, .14);
  margin: 0 2px;
}
.top-bar a,
.top-bar-link {
  color: var(--text);
  font-weight: 600;
  margin-left: 0;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background .15s, color .15s;
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: .01em;
}
.top-bar a svg,
.top-bar-link svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  opacity: .85;
}
.top-bar a:hover,
.top-bar-link:hover {
  color: #3d5a8a;
  background: rgba(106, 136, 184, .12);
}
.top-bar-wa:hover {
  color: var(--wa) !important;
  background: rgba(42, 157, 143, .12) !important;
}
.top-bar-web-local {
  opacity: .5;
  cursor: default;
  pointer-events: none;
  font-size: 10.5px;
  letter-spacing: .02em;
  font-weight: 500;
}

/* Header principal */
.home-premium .site-header {
  position: relative;
  top: auto;
  background: rgba(255, 252, 248, .97);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  border-bottom: 1px solid rgba(226, 208, 188, .65);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8);
  transition: box-shadow .25s ease, background .25s ease;
}
.home-premium .site-header.scrolled,
.site-chrome.is-scrolled .site-header {
  background: rgba(255, 252, 248, .99);
  box-shadow: 0 8px 24px rgba(40, 35, 30, .07);
}
.home-premium .header-inner {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  min-height: 68px;
  padding: 8px 28px;
  gap: 12px 20px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.home-premium .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  position: relative;
  justify-self: start;
}
.home-premium .logo:hover .logo-text span {
  color: #c45a28;
}
.home-premium .logo img,
.home-premium .logo-mark {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 0;
  background: #fff8f1;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3.5px rgba(232, 200, 74, .45),
    0 0 0 5px rgba(106, 136, 184, .12),
    0 4px 14px rgba(28, 25, 23, .08);
}
.home-premium .logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.home-premium .logo-text small {
  font-size: 9px;
  letter-spacing: .15em;
  color: #8a7a62;
  opacity: 1;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  font-family: var(--font-ui);
}
.home-premium .logo-text span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #3a2a20;
  letter-spacing: -.015em;
  line-height: 1.15;
  white-space: nowrap;
  transition: color .15s;
}
.home-premium .nav-wrap {
  display: flex;
  justify-content: center;
  justify-self: center;
  min-width: 0;
}
.home-premium .nav-main {
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: center;
  background: rgba(255, 255, 255, .92);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(226, 208, 188, .9);
  box-shadow:
    0 1px 2px rgba(28, 25, 23, .03),
    0 4px 14px rgba(40, 50, 80, .04);
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
}
.home-premium .nav-main a {
  position: relative;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #4a443c;
  border-bottom: none;
  border-radius: 999px;
  transition: color .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
  text-decoration: none;
  display: block;
  line-height: 1.2;
}
.home-premium .nav-main a::after {
  content: none;
}
.home-premium .nav-main a:hover {
  color: #ff7700;
  background: #fff;
  border-bottom-color: transparent;
}
.home-premium .nav-main a.active,
.home-premium .nav-main a[aria-current="page"] {
  color: #fff !important;
  background: linear-gradient(135deg, #ff9a3c 0%, #ff7700 100%) !important;
  border-bottom-color: transparent;
  box-shadow: 0 3px 12px rgba(255, 119, 0, .35);
}
.home-premium .nav-main a.active::after {
  background: none;
}
.home-premium .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 8px;
}
/*
  CTA Donar — salmón / coral (como antes), tamaño generoso
*/
.home-premium .header-actions .btn-header-cta,
.home-premium .header-actions .btn-donar-main,
.btn-cta,
.btn-header-cta,
.home-premium .btn-donar-main {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 48px !important;
  height: auto !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  font-family: var(--font-ui) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(120, 40, 20, .22);
  background: linear-gradient(145deg, #ff9a3c 0%, #ff7700 55%, #e85d04 100%) !important;
  border: 0 !important;
  box-shadow: 0 8px 22px rgba(255, 119, 0, .4) !important;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
  position: relative;
}
.home-premium .header-actions .btn-header-cta span,
.home-premium .header-actions .btn-donar-main span,
.btn-header-cta span,
.home-premium .btn-donar-main span {
  color: #ffffff !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline !important;
}
.btn-cta:hover,
.btn-header-cta:hover,
.home-premium .btn-donar-main:hover,
.home-premium .header-actions .btn-header-cta:hover {
  filter: brightness(1.05);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(224, 106, 72, .4) !important;
}
.btn-cta:active,
.btn-header-cta:active,
.home-premium .btn-donar-main:active {
  transform: translateY(0);
  filter: brightness(.98);
}
.home-premium .nav-main {
  min-height: 46px;
}

@media (max-width: 1024px) {
  .home-premium .header-inner {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    min-height: 58px;
    padding: 8px 16px;
  }
  .home-premium .nav-wrap {
    order: 4;
    width: 100%;
    display: none;
    justify-self: stretch;
  }
  .home-premium .nav-wrap.is-open,
  .home-premium .nav-main.open {
    display: flex;
  }
  .home-premium .nav-wrap.is-open .nav-main,
  .home-premium .nav-main.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    padding: 8px;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    min-height: 0;
  }
  .home-premium .nav-main a {
    width: 100%;
    text-align: center;
  }
  .home-premium .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .home-premium .header-actions {
    order: 3;
    justify-self: end;
  }
}
@media (max-width: 900px) {
  .top-bar-tag { display: none; }
  .top-bar-inner { justify-content: center; padding: 5px 12px; }
  .top-bar-web-local { display: none; }
}
@media (max-width: 600px) {
  .top-bar-sep { display: none; }
  .home-premium .logo-text span { font-size: 15px; white-space: normal; }
  .home-premium .logo-mark { width: 40px; height: 40px; }
  .btn-header-cta,
  .home-premium .btn-donar-main,
  .home-premium .header-actions .btn-header-cta {
    padding: 0 18px !important;
    font-size: 12.5px !important;
    min-height: 44px !important;
  }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold-light);
  color: #fff !important;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wa) !important;
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(37,211,102,.3);
}
.btn-wa:hover { background: var(--wa) !important; color: #fff !important; }

/* HERO + carrusel de fotos */
.hero-p {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
/* Una sola pieza a pantalla: logo fijo + solo el fondo cambia */
.hero-p-full {
  min-height: 0;
  align-items: flex-start;
}
/* Solo las fotos rotan; el logo no se mueve */
.hero-p-full .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-p-full .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04); /* leve cover “foto” sin zoom activo */
  transition: opacity 1.35s ease-in-out;
  filter: contrast(1.08) saturate(1.22) brightness(1.06);
  will-change: opacity;
}
.hero-p-full .hero-slide.is-on {
  opacity: 1;
  z-index: 1;
}
/* Capa fija: posiciones calcadas de la referencia 2000×876 */
.hero-p-full .hero-p-inner {
  position: absolute;
  inset: 0;
  z-index: 5;
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
  display: block;
  pointer-events: none;
}
.hero-p-full .hero-p-inner a,
.hero-p-full .hero-p-inner button {
  pointer-events: auto;
}
.hero-p-full .hero-campaign-free,
.hero-p-full .hero-p-copy {
  margin: 0;
  transform: none;
  max-width: none;
  text-align: left;
}
.hero-p-full .hero-p-actions {
  justify-content: flex-start;
}
/* Logo SOLO en la 1.ª imagen; en el resto se oculta */
.hero-p-full .hero-campaign-logo,
.hero-p-full .hero-btns {
  position: relative;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}
.hero-p-full.hero-show-logo .hero-campaign-logo,
.hero-p-full.hero-show-logo .hero-btns {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-p-full.hero-show-logo .hero-btns a {
  pointer-events: auto;
}
.hero-p-full .hero-btns {
  justify-content: flex-start;
}
.hero-p-full .hero-campaign-logo {
  margin: 0 0 14px;
  width: min(100%, 42vw);
}
/* Referencia 2000×876: tarjeta L=60.650% T=6.164% W=29.000% margen der=10.350% */
.hero-p-full {
  aspect-ratio: 2000 / 876;
  min-height: 0;
  height: auto;
  width: min(100%, calc(82vh * 2000 / 876));
  margin-inline: auto;
}
.hero-p-full .hero-donate-ref {
  display: block;
  padding: 0;
}
.hero-donate-left {
  position: absolute;
  left: 2.7%;
  top: 14.95%;
  width: 44.5%;
  max-width: none;
}
.hero-donate-lead {
  margin: 0 0 16px;
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: #8a3014;
  text-shadow: none;
}
.hero-donate-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dona;
}
.hero-donate-steps li {
  counter-increment: dona;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 12px;
  padding-left: 1.7em;
  position: relative;
  color: #8a3014;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.hero-donate-steps li::before {
  content: counter(dona) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #ff7700;
}
.hero-donate-steps span {
  font-weight: 700;
}
.hero-donate-steps strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: .02em;
  font-weight: 700;
  color: #8a3014;
  word-break: break-word;
}
.hero-qr-wrap {
  position: absolute;
  left: 60.65%;
  top: 6.164%;
  width: 29%;
  pointer-events: auto;
}
.hero-qr-card {
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .16);
  text-align: center;
}
.hero-qr-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}
.hero-qr-who { display: none; }
.hero-qr-label {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 10px auto 0;
  background: transparent;
  color: #8a3014;
  font-family: var(--font-ui);
  font-size: clamp(11px, .95vw, 13px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  text-align: center;
}
@media (max-width: 700px) {
  .hero-p-full {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
  }
  .hero-p-full .hero-p-inner {
    position: relative;
    padding: 16px 16px 20px;
  }
  .hero-donate-left {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }
  .hero-qr-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: min(260px, 86vw);
    margin: 16px auto 0;
  }
  .hero-p-full .hero-campaign-logo {
    width: min(100%, 280px);
  }
  .hero-donate-lead { font-size: 20px; max-width: none; }
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: none;
  transition: opacity 1.1s ease-in-out;
  filter: none;
}
.hero-slide.is-on {
  opacity: 1;
  z-index: 1;
}
.hero-p-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
}
/* Degradado tipo referencia: la foto se lava a la izquierda y se lee el QR */
.hero-p-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(236, 242, 252, .94) 0%,
      rgba(220, 230, 246, .82) 28%,
      rgba(186, 204, 228, .48) 52%,
      rgba(40, 52, 72, .16) 78%,
      rgba(20, 24, 32, .10) 100%);
  pointer-events: none;
}
.hero-p-inner {
  position: relative;
  z-index: 3;
  display: block;
  padding: 72px 18px 56px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
/* Hero sin cuadro: logo suelto sobre la foto */
.hero-p-copy {
  max-width: 720px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-shadow: none;
  backdrop-filter: none;
}

/* ===== Logo campaña “Colombia te necesita” (limpio y legible) ===== */
.hero-campaign,
.hero-campaign-free {
  max-width: min(680px, 92vw);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.hero-campaign-logo {
  display: block;
  width: min(100%, 680px);
  height: auto;
  margin: 0 0 20px;
  opacity: 1; /* nítido, sin lavar la imagen */
  image-rendering: auto;
  /* contraste sobre fotos de derrumbe/paisaje */
  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,.55))
    drop-shadow(0 8px 20px rgba(0,0,0,.4));
}
/* Botones hero: Contáctanos / Conocer más / WhatsApp */
.hero-btns,
.hero-campaign .hero-p-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.btn-hero svg {
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
}
.btn-hero:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn-hero:active {
  transform: translateY(0) scale(.98);
}
.btn-hero-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--accent) 100%);
  color: #2a1f14 !important;
  box-shadow: 0 12px 28px rgba(224, 122, 95, .38);
}
.btn-hero-gold:hover {
  color: #1a120c !important;
  box-shadow: 0 14px 32px rgba(224, 122, 95, .48);
}
.btn-hero-ghost {
  background: rgba(20, 14, 10, .42);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--gold-light);
  color: #fff !important;
}
.btn-hero-wa {
  background: linear-gradient(145deg, #34e07b, var(--wa) 55%, var(--wa));
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .4);
}
.btn-hero-wa:hover {
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .5);
}
@media (max-width: 600px) {
  .hero-campaign-logo { width: 100%; max-width: 100%; }
  .hero-btns { gap: 10px; }
  .btn-hero {
    min-height: 50px;
    padding: 12px 20px;
    font-size: 13px;
  }
}
/* Puntos del carrusel: ocultos */
.hero-dots {
  display: none !important;
}
.hero-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(61,41,20,.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.hero-nav-btn:hover { background: rgba(61,41,20,.7); }
.hero-prev { left: 14px; }
.hero-next { right: 14px; }
@media (max-width: 700px) {
  .hero-nav-btn { width: 38px; height: 38px; font-size: 24px; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
}
.hero-p-full .pill {
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240, 201, 106, .95);
  border: 1px solid rgba(233, 180, 76, .35);
  background: transparent;
  padding: 7px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
/* Título editorial profesional (serif limpio, peso controlado) */
.hero-p-full h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 54px);
  line-height: 1.12;
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-p-full h1 em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
}
/* Cuerpo: sans institucional, más compacto y serio */
.hero-p-full .lead {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,.86);
  max-width: 42ch;
  margin: 0 0 22px;
}
.hero-p-full .hero-p-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.hero-p-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 8px;
}
.hero-p-full .hero-p-actions .btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 12px 22px;
}
.hero-p-full .hero-p-actions .btn-gold {
  background: var(--gold) !important;
  color: #2a1f14 !important;
  box-shadow: none;
}
.hero-p-full .hero-p-actions .btn-ghost {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.45) !important;
  color: #fff !important;
}
.hero-p-full .hero-p-actions .btn-wa {
  border-radius: 3px;
}
/* fallbacks si no es hero-full */
.pill {
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212,176,106,.45);
  background: rgba(212,176,106,.12);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-p h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1.02;
  margin: 0 0 16px;
  font-weight: 600;
}
.hero-p h1 em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}
.hero-p .lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  max-width: 520px;
  margin: 0 0 26px;
}
.hero-p-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-p-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-p-meta strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.hero-p-meta span { font-size: 14px; color: rgba(255,255,255,.9); }
.hero-p-logo {
  background: rgba(255,255,255,.96);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  text-align: center;
}
.hero-p-logo img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}

/* sections */
.sec-cream { background: var(--crema); }
.sec-navy { background: linear-gradient(145deg, var(--brand-deep), var(--brand) 55%, #7A5340); color: #fff; }
.section-head.light .eyebrow { color: var(--gold-light); }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.72); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* ===== Qué hacemos — tarjetas premium ===== */
.sec-que-hacemos {
  position: relative;
  overflow: hidden;
}
.sec-que-hacemos::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(232, 221, 208, .35));
  pointer-events: none;
}
.sec-que-hacemos .section-head {
  max-width: none;
  width: 100%;
}
.sec-que-hacemos .section-head h2 {
  letter-spacing: -.01em;
}
.cards-que {
  position: relative;
  z-index: 1;
  gap: 24px;
  align-items: stretch;
}
.card-photo {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(232, 221, 208, .95);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 14px 40px rgba(61, 41, 20, .08);
  display: flex;
  flex-direction: column;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .2s ease;
}
.card-photo:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 122, 95, .28);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 22px 50px rgba(61, 41, 20, .14);
}
.card-que .card-photo-media {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  text-decoration: none;
}
.card-photo-img {
  display: block;
  height: 100%;
  min-height: 170px;
  background-size: cover;
  background-position: center;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.card-que .card-photo-img {
  position: absolute;
  inset: 0;
  height: auto;
  min-height: 0;
}
.card-que:hover .card-photo-img {
  transform: scale(1.06);
}
.card-photo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,.00) 0%, rgba(20,12,8,.18) 100%);
  pointer-events: none;
}
.card-num {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fff;
  background: rgba(20, 12, 8, .42);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
}
.card-photo-body {
  padding: 22px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 0 12px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--accent) 100%);
  box-shadow: 0 10px 22px rgba(224, 122, 95, .28);
}
.card-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}
.card-kicker {
  margin: 0 0 6px !important;
  font-family: var(--font-ui);
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-deep) !important;
  flex: 0 !important;
}
.card-photo-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brand-deep);
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.15;
}
.card-photo-body > p {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.card-bullets {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.card-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: #5c4a3a;
  line-height: 1.4;
}
.card-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  box-shadow: 0 0 0 3px rgba(224, 122, 95, .12);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent-deep) !important;
  text-decoration: none !important;
  padding: 10px 0 2px;
  border-bottom: 2px solid rgba(224, 122, 95, .25);
  transition: color .15s, border-color .15s, gap .15s;
}
.card-link span {
  transition: transform .15s ease;
}
.card-que:hover .card-link {
  color: #a84830 !important;
  border-bottom-color: var(--accent);
}
.card-que:hover .card-link span {
  transform: translateX(3px);
}
.card-photo-body a:not(.card-link) {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--granate) !important;
}
@media (max-width: 900px) {
  .cards-3,
  .cards-que {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .card-que .card-photo-media {
    height: 180px;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .card-photo-body h3 { font-size: 24px; }
  .card-bullets { display: none; }
}

/* split quienes somos */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media > img:first-child {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.split-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  object-fit: cover;
  background: #fff;
}
.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 42px);
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.15;
}
.split-copy p {
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.7;
}

/* Quiénes somos mejorado */
.sec-somos {
  background: #fff;
  border-top: 1px solid var(--border);
}
.somos-block {
  margin-bottom: 36px;
}
.somos-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 4px;
}
.somos-pills span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--crema);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
}
.somos-mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.somos-mvv article {
  background: var(--crema);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
}
.somos-mvv h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 600;
}
.somos-mvv p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .somos-mvv { grid-template-columns: 1fr; }
}

/* Quiénes somos — lema, misión, visión, enfoque (marca propia) */

.mv-band {
  margin: 12px 0 48px;
  width: 100%;
  padding: 28px 28px 30px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(224, 122, 95, .08), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--crema) 100%);
  border: 1px solid rgba(92, 61, 46, .08);
  box-shadow: 0 16px 40px rgba(61, 41, 20, .05);
}
.mv-band-head,
.focus-band-head {
  text-align: left;
  margin-bottom: 22px;
  max-width: none;
}
/* Texto + imagen bandera al lado (Misión y visión) */
.mv-band-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.85fr);
  align-items: center;
  gap: 16px 28px;
  margin-bottom: 26px;
}
.mv-band-head-copy {
  min-width: 0;
}
.mv-band-head-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: 200px;
  align-self: stretch;
}
.mv-band-head-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 58%;
  height: 16%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(40, 50, 90, .1), transparent 72%);
  pointer-events: none;
}
.mv-band-head-visual img {
  width: auto;
  max-width: 100%;
  height: clamp(180px, 26vw, 260px);
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(20, 40, 90, .16));
}
.mv-band-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.mv-band-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: -.02em;
  line-height: 1.15;
  text-transform: none;
}
.mv-band-sub {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  position: relative;
  display: inline-block;
}
.mv-band-intro {
  margin: 0;
  max-width: 48ch;
  text-align: left;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.mv-band-intro strong { color: var(--brand-deep); }
@media (max-width: 800px) {
  .mv-band-head-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
  }
  .mv-band-head-copy { text-align: center; }
  .mv-band-intro {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .mv-band-head-visual {
    min-height: 160px;
    order: -1;
  }
  .mv-band-head-visual img {
    height: 180px;
  }
}

.mv-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}
.mv-row {
  display: grid;
  grid-template-columns: minmax(150px, 200px) 1fr;
  min-height: 88px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(92, 61, 46, .08);
  box-shadow: 0 10px 28px rgba(61, 41, 20, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mv-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(61, 41, 20, .1);
}
.mv-row-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 18px 18px;
  background: #fff;
  color: var(--brand-deep);
  font-family: var(--font-ui);
  border-right: 1px solid rgba(92, 61, 46, .08);
  position: relative;
}
.mv-row-label::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--co-yellow), var(--coral));
}
.mv-row-mision .mv-row-label::after {
  background: linear-gradient(90deg, var(--coral), var(--accent-deep));
}
.mv-row-vision .mv-row-label::after {
  background: linear-gradient(90deg, var(--brand), var(--accent-deep));
}
.mv-row-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--accent-deep);
  background: linear-gradient(145deg, rgba(224,122,95,.12), rgba(245,197,24,.16));
  border: 1px solid rgba(224, 122, 95, .18);
}
.mv-row-ico svg { width: 20px; height: 20px; display: block; }
.mv-row-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
/* Filas lema/misión/visión — color vivo + texto legible */
.mv-row-body {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: #fff4e8;
  color: var(--ink);
  border-left: 1px solid var(--border);
}
.mv-row-lema .mv-row-body {
  background: linear-gradient(90deg, #ffe8b8 0%, #ffd484 100%);
}
.mv-row-mision .mv-row-body {
  background: linear-gradient(90deg, #ffd8c8 0%, #ffb898 100%);
}
.mv-row-vision .mv-row-body {
  background: linear-gradient(90deg, #f0ddd0 0%, #e8c8b4 100%);
}
.mv-row-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
  max-width: 70ch;
}
.mv-row-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: -.01em;
  color: var(--brand-deep) !important;
}

/* Enfoque — bandera CO sutil: amarillo / azul / rojo lavados y degradados */
.focus-band {
  --f-ink: var(--ink);
  --f-muted: var(--text-muted);
  /* tonos bandera suaves (no primarios fuertes) */
  --f-y: #e8c84a;
  --f-y-soft: #f7edd0;
  --f-b: #5a7eb8;
  --f-b-soft: #dce6f4;
  --f-r: #c45a64;
  --f-r-soft: #f3dde0;
  margin: 0 0 48px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    /* franja sutil tipo bandera, muy diluida */
    linear-gradient(
      180deg,
      rgba(245, 197, 24, .14) 0%,
      rgba(245, 197, 24, .08) 38%,
      rgba(30, 77, 156, .07) 55%,
      rgba(30, 77, 156, .05) 72%,
      rgba(201, 58, 74, .08) 100%
    ),
    radial-gradient(ellipse 70% 50% at 95% 8%, rgba(245, 197, 24, .18), transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 92%, rgba(201, 58, 74, .1), transparent 50%),
    linear-gradient(165deg, #fffaf3 0%, #f7f2ea 55%, #f5efe8 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(92, 61, 46, .1);
}
.focus-band-inner {
  padding: 40px 34px 36px;
}
.focus-band-head {
  margin-bottom: 28px;
}
.focus-band .mv-band-eyebrow {
  color: #6b5a3a;
  letter-spacing: .16em;
}
.focus-band .mv-band-title {
  color: var(--ink);
  margin-bottom: 10px;
}
.focus-band-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
}
.focus-band-lead {
  margin: 0;
  max-width: 48ch;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-muted);
}
/* CTA: bandera legible y más visible (sin gritar) */
.focus-band-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 15px 28px;
  min-height: 48px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.1;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(30, 40, 70, .28);
  background: linear-gradient(
    118deg,
    #e0b820 0%,
    #c9a018 18%,
    #3d6ab0 52%,
    #2f5a9e 68%,
    #c23a4a 100%
  );
  text-decoration: none !important;
  border: 2px solid rgba(255, 255, 255, .72);
  box-shadow:
    0 4px 0 rgba(40, 55, 100, .12),
    0 12px 28px rgba(45, 80, 150, .28),
    0 0 0 4px rgba(61, 106, 176, .12);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.focus-band-cta:hover {
  filter: brightness(1.07) saturate(1.05);
  transform: translateY(-2px);
  color: #ffffff !important;
  box-shadow:
    0 6px 0 rgba(40, 55, 100, .1),
    0 16px 36px rgba(45, 80, 150, .34),
    0 0 0 5px rgba(61, 106, 176, .16);
}
.focus-band-cta:active {
  transform: translateY(0);
  filter: brightness(.98);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
.focus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 300px;
  padding: 24px 20px 22px;
  border-radius: 22px;
  background: rgba(255, 253, 250, .96);
  border: 1px solid rgba(92, 61, 46, .08);
  box-shadow: 0 12px 32px rgba(61, 41, 20, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
/* Barrita superior: tricolor diluido y distinto por card */
.focus-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  opacity: .85;
  background: linear-gradient(
    90deg,
    rgba(245, 197, 24, .85) 0%,
    rgba(90, 126, 184, .75) 50%,
    rgba(196, 90, 100, .8) 100%
  );
}
.focus-card:nth-child(1)::before {
  background: linear-gradient(90deg, #e8c84a 0%, #c9b06a 55%, #8aa0c4 100%);
}
.focus-card:nth-child(2)::before {
  background: linear-gradient(90deg, #8aa0c4 0%, #6a88b8 50%, #a87a84 100%);
}
.focus-card:nth-child(3)::before {
  background: linear-gradient(90deg, #c48a90 0%, #b85a64 55%, #8aa0c4 100%);
}
.focus-card:nth-child(4)::before {
  background: linear-gradient(90deg, #e8c84a 0%, #8aa0c4 50%, #c48a90 100%);
}
.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(61, 41, 20, .11);
  border-color: rgba(90, 126, 184, .2);
}
.focus-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.focus-num {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #9a8a62;
}
.focus-card:nth-child(2) .focus-num { color: #7a8aaa; }
.focus-card:nth-child(3) .focus-num { color: #a87880; }
.focus-card:nth-child(4) .focus-num { color: #8a8a72; }

/* Iconos: discos degradados bandera (suaves, legibles, trazo blanco) */
.focus-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff !important;
  background: linear-gradient(145deg, #dcc44a 0%, #7a96c0 52%, #c46a72 100%) !important;
  box-shadow:
    0 6px 16px rgba(90, 110, 150, .16),
    inset 0 1px 0 rgba(255, 255, 255, .35);
  border: 2px solid rgba(255, 255, 255, .55);
}
/* 01 Acompañamiento → acento amarillo suave */
.focus-card:nth-child(1) .focus-circle {
  background: linear-gradient(150deg, #edd46a 0%, #d4b84a 42%, #9aafcc 100%) !important;
  box-shadow: 0 6px 16px rgba(200, 170, 60, .2), inset 0 1px 0 rgba(255,255,255,.4);
}
/* 02 Familias → acento azul suave */
.focus-card:nth-child(2) .focus-circle {
  background: linear-gradient(150deg, #b8c8e0 0%, #6a88b8 48%, #8a9ec4 100%) !important;
  box-shadow: 0 6px 16px rgba(90, 120, 170, .2), inset 0 1px 0 rgba(255,255,255,.35);
}
/* 03 Emergencias → acento rojo suave */
.focus-card:nth-child(3) .focus-circle {
  background: linear-gradient(150deg, #d4a0a6 0%, #c45a64 48%, #a85058 100%) !important;
  box-shadow: 0 6px 16px rgba(180, 90, 100, .2), inset 0 1px 0 rgba(255,255,255,.35);
}
/* 04 Comunidad → tricolor suave */
.focus-card:nth-child(4) .focus-circle {
  background: linear-gradient(150deg, #e0c85a 0%, #7a96c0 50%, #c46a72 100%) !important;
  box-shadow: 0 6px 16px rgba(100, 110, 140, .18), inset 0 1px 0 rgba(255,255,255,.35);
}
.focus-circle svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #ffffff !important;
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 2;
  flex-shrink: 0;
}
.focus-circle svg * {
  stroke: #ffffff !important;
  fill: none !important;
}
.focus-card h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.1vw, 28px);
  font-weight: 600;
  color: var(--f-ink);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.focus-card > p {
  margin: 0 0 18px;
  flex: 1;
  font-size: 15px;
  line-height: 1.58;
  color: var(--f-muted);
}
.focus-points {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(61, 41, 20, .08);
  display: grid;
  gap: 8px;
}
.focus-points li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-deep);
  line-height: 1.35;
}
.focus-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a8b4c8;
  box-shadow: 0 0 0 3px rgba(90, 126, 184, .12);
}
.focus-card:nth-child(1) .focus-points li::before {
  background: #d4b84a;
  box-shadow: 0 0 0 3px rgba(212, 184, 74, .18);
}
.focus-card:nth-child(2) .focus-points li::before {
  background: #7a96c0;
  box-shadow: 0 0 0 3px rgba(122, 150, 192, .18);
}
.focus-card:nth-child(3) .focus-points li::before {
  background: #c46a72;
  box-shadow: 0 0 0 3px rgba(196, 106, 114, .16);
}
.focus-card:nth-child(4) .focus-points li::before {
  background: linear-gradient(135deg, #d4b84a, #7a96c0 50%, #c46a72);
  box-shadow: 0 0 0 3px rgba(120, 130, 160, .14);
}

/* legacy class hooks (por si quedan en layout-wide) */
.focus-circles { display: contents; }

@media (max-width: 1100px) {
  .focus-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .mv-band { padding: 22px 16px; }
  .focus-band-inner { padding: 28px 18px 26px; }
  .mv-row {
    grid-template-columns: 1fr;
  }
  .mv-row-label {
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(92, 61, 46, .08);
  }
  .mv-row-label::after {
    left: 0; right: auto; bottom: auto; top: 0; bottom: 0;
    width: 4px; height: auto;
    border-radius: 0;
  }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 0; }
  .focus-circle {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 800px) {
  .mv-row {
    grid-template-columns: 1fr;
  }
  .mv-row-label {
    border-bottom: 0;
    border-left: 4px solid var(--co-blue);
  }
  .focus-circles {
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
  }
}
@media (max-width: 480px) {
  .focus-circles { grid-template-columns: 1fr; }
}

.somos-subtitle {
  font-size: 15px !important;
  letter-spacing: .02em;
  color: var(--text-muted) !important;
}
.somos-motto {
  margin: 0 auto 36px;
  max-width: 780px;
  padding: 28px 28px 26px;
  text-align: center;
  border-radius: 22px;
  background:
    linear-gradient(145deg, #fff 0%, var(--crema) 100%);
  border: 1px solid rgba(224, 122, 95, .22);
  box-shadow: 0 16px 40px rgba(61, 41, 20, .07);
}
.somos-motto-label {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.somos-motto-text {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -.02em;
}
.somos-motto-sub {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.somos-kicker {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.somos-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}
/* ===== Misión / Visión / Valores — bloque reforzado ===== */
.mv-block {
  margin: 12px 0 40px;
  padding: 36px 28px 32px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(224, 122, 95, .1), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(11, 58, 140, .07), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--crema) 100%);
  border: 1px solid rgba(28, 25, 23, .07);
  box-shadow: 0 20px 48px rgba(61, 41, 20, .07);
}
.mv-block-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
}
.mv-block-head h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--navy);
  margin: 6px 0 12px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.mv-block-lead {
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 42ch;
}
.mv-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.mv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 26px 24px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, .08);
  box-shadow: 0 14px 36px rgba(61, 41, 20, .06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(61, 41, 20, .1);
}
.mv-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
}
.mv-card-mision::before {
  background: linear-gradient(180deg, var(--co-yellow) 0 45%, var(--coral) 100%);
}
.mv-card-vision::before {
  background: linear-gradient(180deg, var(--co-blue) 0 55%, var(--co-red) 100%);
}
.mv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.mv-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.mv-card-mision .mv-badge {
  background: linear-gradient(135deg, var(--coral), var(--accent-deep));
}
.mv-card-vision .mv-badge {
  background: linear-gradient(135deg, var(--brand), var(--accent-deep));
}
.mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--accent-deep);
  background: linear-gradient(145deg, rgba(224,122,95,.12), rgba(233,180,76,.2));
  border: 1px solid rgba(224,122,95,.2);
  flex-shrink: 0;
}
.mv-card-vision .mv-icon {
  color: var(--brand-deep);
  background: linear-gradient(145deg, rgba(11,58,140,.1), rgba(29,78,216,.12));
  border-color: rgba(11,58,140,.18);
}
.mv-icon svg { width: 22px; height: 22px; display: block; }
.mv-card h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 26px);
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.015em;
}
.mv-card > p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}
.mv-points {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(28, 25, 23, .07);
  display: grid;
  gap: 8px;
}
.mv-points li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-deep);
  line-height: 1.35;
}
.mv-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 123, 30, .15);
}
.mv-card-vision .mv-points li::before {
  background: var(--co-blue);
  box-shadow: 0 0 0 3px rgba(11, 58, 140, .14);
}

/* Valores */
.mv-values {
  margin: 0;
  padding: 24px 20px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(28, 25, 23, .06);
}
.mv-values-head {
  text-align: left;
  margin-bottom: 18px;
}
.mv-values-label {
  margin: 0 0 6px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.mv-values-sub {
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}
.mv-values-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mv-values-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, .07);
  box-shadow: 0 6px 18px rgba(61, 41, 20, .04);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.mv-values-grid li:hover {
  border-color: rgba(224, 122, 95, .28);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 122, 95, .1);
}
.mv-val-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--accent-deep);
  background: linear-gradient(145deg, rgba(224,122,95,.12), rgba(245,197,24,.16));
  border: 1px solid rgba(224,122,95,.18);
}
.mv-val-ico svg { width: 18px; height: 18px; display: block; }
.mv-values-grid strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.mv-values-grid span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}

.somos-impact-head {
  text-align: center;
  margin-bottom: 18px;
}
.somos-impact-head h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 32px);
  color: var(--navy);
  margin: 6px 0 0;
  font-weight: 600;
}
.somos-impact {
  margin: 0 0 36px;
}
.somos-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.somos-impact-grid article {
  text-align: center;
  padding: 22px 14px 20px;
  border-radius: 18px;
  background: linear-gradient(165deg, #fff 0%, #fff7ed 100%);
  border: 1px solid rgba(224, 122, 95, .18);
  box-shadow: 0 10px 28px rgba(61, 41, 20, .05);
}
.somos-impact-num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent-deep);
}
.somos-impact-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.somos-impact-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}
.somos-story {
  margin: 0 0 32px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0e0 0%, #ffdcc4 50%, #ffc8a8 100%);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.somos-story-inner {
  padding: 32px 36px;
  max-width: none;
  width: 100%;
}
.somos-story .somos-kicker { color: var(--accent-deep); }
.somos-story h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.2;
}
.somos-story p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}
.somos-story p:last-child { margin-bottom: 0; }
.somos-story strong { color: var(--brand-deep); }

.somos-grid-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 12px;
}
.somos-info-card {
  background: linear-gradient(165deg, #fff 0%, var(--crema) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}
.somos-info-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 600;
}
.somos-info-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.section-foot-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin: 36px 0 0;
}
.section-foot-cta .btn {
  min-height: 46px;
}
@media (max-width: 900px) {
  .mv-block { padding: 28px 18px 24px; }
  .mv-pair { grid-template-columns: 1fr; }
  .mv-values-grid { grid-template-columns: 1fr 1fr; }
  .somos-impact-grid { grid-template-columns: 1fr 1fr; }
  .somos-story-inner { padding: 26px 20px; }
}
@media (max-width: 560px) {
  .mv-values-grid { grid-template-columns: 1fr; }
  .somos-impact-grid { grid-template-columns: 1fr; }
}

/* Qué hacemos — intro + líneas prácticas */
.qh-intro {
  max-width: none;
  width: 100%;
  margin: 0 0 28px;
  text-align: left;
}
.qh-intro p {
  margin: 0;
  max-width: 70ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.qh-lines {
  margin-top: 40px;
  padding: 28px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(61, 41, 20, .06);
}
.qh-lines-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 18px;
  font-weight: 600;
  text-align: center;
}
.qh-lines-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.qh-lines-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px;
  border-radius: 14px;
  background: var(--crema);
  border: 1px solid var(--border);
}
.qh-lines-list strong {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.qh-lines-list span {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Propósito — declaración */
.prop-statement {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.prop-statement p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}
.prop-statement strong { color: #f7e3a8; }

@media (max-width: 900px) {
  .somos-grid-info { grid-template-columns: 1fr; }
  .qh-lines-list { grid-template-columns: 1fr; }
  .section-foot-cta { flex-direction: column; align-items: stretch; }
  .section-foot-cta .btn { justify-content: center; text-align: center; }
}

.check-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--granate-soft);
  font-weight: 700;
}

/* propósito — bloque fuerte y legible */
.sec-prop {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px !important;
  color: var(--ink);
  background: var(--crema);
}
.sec-prop-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  opacity: .42;
  filter: saturate(1.15);
}
.sec-prop-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 246, 232, .55) 0%, rgba(255, 236, 214, .62) 55%, rgba(255, 226, 196, .7) 100%);
}
.sec-prop-inner,
.sec-prop .container {
  position: relative;
  z-index: 1;
}
.sec-prop .section-head.light h2 {
  color: var(--ink);
  margin-bottom: 10px;
}
.sec-prop .section-head.light p {
  color: var(--text-muted);
  max-width: 64ch;
  margin-left: 0;
  margin-right: 0;
}
.sec-prop .section-head {
  text-align: left;
  margin-bottom: 40px;
}
/* Filas horizontales (número + texto) */
.prop-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: none;
  width: 100%;
  margin: 0;
}
.prop-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.prop-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,.2);
}
.prop-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--brand-deep);
  background: linear-gradient(145deg, #f7e3a8, var(--gold) 55%, var(--accent));
  margin-bottom: 0;
  box-shadow: 0 6px 16px rgba(224, 122, 95, .22);
}
.prop-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
/* Misión / Visión / Valores — iconos línea modernos */
.mvv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 0 14px;
  border-radius: 14px;
  color: var(--accent);
  background: linear-gradient(145deg, rgba(224,122,95,.12), rgba(233,180,76,.18));
  border: 1px solid rgba(224,122,95,.22);
}
.mvv-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.somos-mvv article {
  text-align: left;
}
.prop-row-text {
  flex: 1;
  min-width: 0;
}
.prop-row h3,
.prop-tile h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brand-deep);
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.15;
}
.prop-row p,
.prop-tile p {
  margin: 0;
  font-size: 15px;
  color: #5e656e;
  line-height: 1.55;
}
.prop-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 0;
}
@media (max-width: 560px) {
  .prop-row {
    align-items: flex-start;
    padding: 18px 16px;
    gap: 14px;
  }
  .prop-icon { width: 44px; height: 44px; font-size: 12px; }
}

/* stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-tile {
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px 16px;
}
.stat-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  color: var(--gold-light);
  margin-bottom: 6px;
  font-weight: 600;
}
.stat-tile span {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

/* Mosaic body images — clean photos only */
.body-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-bottom: 14px;
}
.body-mosaic figure {
  margin: 0;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  min-height: 160px;
}
.body-mosaic .mosaic-lg {
  grid-row: 1 / span 2;
  min-height: 100%;
}
.body-mosaic .mosaic-wide {
  grid-column: 2 / span 2;
}
.body-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.body-strip-4 {
  grid-template-columns: repeat(4, 1fr) !important;
  max-width: 960px;
  margin: 0 auto;
}
.body-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  display: block;
}
@media (max-width: 700px) {
  .body-strip-4 { grid-template-columns: 1fr 1fr !important; }
  .body-strip img { height: 150px; }
}
@media (max-width: 900px) {
  .body-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .body-mosaic .mosaic-lg {
    grid-row: auto;
    grid-column: 1 / span 2;
    min-height: 200px;
  }
  .body-mosaic .mosaic-wide {
    grid-column: 1 / span 2;
  }
  .body-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
}
@media (max-width: 520px) {
  .body-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .body-mosaic .mosaic-lg,
  .body-mosaic .mosaic-wide {
    grid-column: auto;
    min-height: 180px;
  }
  .body-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
  .body-strip img { height: 180px; }
}

/* cta */
.cta-band {
  background: #ff7700;
  color: #fff;
  color: var(--ink);
  text-align: center;
  padding: 72px 18px;
  border-top: 1px solid var(--border);
}
.cta-band-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 10px;
  font-weight: 600;
  color: #fff;
}
.cta-band p {
  margin: 0 0 22px;
  opacity: 1;
  color: #fff;
}
.cta-band .btn-donar-main,
.cta-band .btn-header-cta {
  background: #fff !important;
  color: #c2410c !important;
  box-shadow: none !important;
}
.cta-band .btn-gold {
  background: #111 !important;
  color: #fff !important;
}

/* FABs modernos (SVG) */
.home-premium .float-stack .fab-call,
.home-premium .float-stack .fab-wa {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-premium .float-stack .fab-call {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--brand-deep) !important;
  box-shadow: 0 10px 24px rgba(233, 180, 76, .4);
}
.home-premium .float-stack .fab-wa {
  background: linear-gradient(145deg, #34e07b, var(--wa));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
}
.home-premium .float-stack .fab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  padding: 13px 18px;
  background: linear-gradient(145deg, #e8957f, var(--accent));
  box-shadow: 0 12px 28px rgba(224, 122, 95, .35);
}
.home-premium .float-stack .fab:hover,
.home-premium .float-stack .fab-call:hover,
.home-premium .float-stack .fab-wa:hover {
  transform: translateY(-3px);
}
.fab-wa {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
}

@media (max-width: 1024px) {
  .hero-p-inner,
  .split-2 {
    grid-template-columns: 1fr;
  }
  .hero-p-logo { max-width: 420px; margin: 0 auto; }
  .cards-3,
  .stats-row,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .cards-3,
  .stats-row,
  .gallery {
    grid-template-columns: 1fr;
  }
  .hero-p { min-height: auto; }
  .hero-p-inner { padding: 40px 18px 48px; }
  .split-media > img:first-child { height: 280px; }
  .gallery img { height: 180px; }
}

.body-strip-gal {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 12px !important;
  max-width: 1100px;
  margin: 0 auto;
}
.body-strip-gal img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .body-strip-gal { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 560px) {
  .body-strip-gal { grid-template-columns: 1fr 1fr !important; }
  .body-strip-gal img { height: 140px; }
}
/* ===== Banda impacto: imagen clara, texto sin tapar ===== */
.impact-banner {
  position: relative;
  min-height: min(58vh, 480px);
  display: flex;
  align-items: flex-end; /* texto abajo, imagen se ve */
  overflow: hidden;
  color: #fff;
}
.impact-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.impact-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.1s ease;
  /* sin filtro gris: la foto se nota */
  filter: none;
}
.impact-slide.is-on {
  opacity: 1;
  z-index: 1;
}
.impact-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}
/* Sin velo sobre la foto: el panel ya lleva el fondo del texto */
.impact-banner::before {
  content: none;
  display: none;
}
.impact-banner-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 20px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.impact-panel {
  max-width: min(460px, 90vw);
  background: rgba(36, 26, 18, 0.88);
  border-radius: 14px;
  padding: 24px 26px 26px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  /* foto libre a la derecha */
}
.impact-kicker {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.impact-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 12px;
  color: #fff;
}
.impact-title span {
  display: inline-block;
  max-width: 100%;
  background: linear-gradient(90deg, var(--accent), #d4654a);
  padding: 6px 12px 8px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.impact-sub {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}
.impact-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
  max-width: 38ch;
}
.impact-text strong { color: var(--gold-light); font-weight: 600; }
.impact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #2d2016 !important;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(224,122,95,.35);
  transition: filter .2s, transform .15s;
}
.impact-btn:hover {
  filter: brightness(1.06);
  color: #2d2016 !important;
  transform: translateY(-1px);
}
.impact-stripe {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  z-index: 4;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 50%, var(--accent) 50%, var(--accent) 100%);
}
@media (max-width: 700px) {
  .impact-banner { min-height: 52vh; align-items: flex-end; }
  .impact-banner-inner { padding: 20px 16px 32px; }
  .impact-panel { padding: 18px 16px 20px; max-width: 100%; }
  .impact-title { font-size: 24px; }
  .impact-sub { font-size: 15px; }
  .impact-text { font-size: 14px; max-width: none; }
}
/* ===== Sección Donaciones (llamativa, paleta cacao/coral/ámbar) ===== */
.sec-donar {
  position: relative;
  padding: 72px 18px 80px;
  background: #fff;
  overflow: hidden;
}
.sec-donar-glow {
  position: absolute;
  inset: auto -20% -30% auto;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(224,122,95,.28), transparent 68%);
  pointer-events: none;
}
.donar-eyebrow {
  color: var(--accent) !important;
  font-weight: 700;
}
.sec-donar h2 {
  color: var(--brand-deep);
}
.donar-lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}
.donar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 28px auto 32px;
}
.donar-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px 20px;
  border: 1px solid rgba(224,122,95,.18);
  box-shadow: 0 12px 32px rgba(61,41,20,.08);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.donar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(224,122,95,.16);
}
.donar-card-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--gold), var(--accent));
  box-shadow: 0 8px 18px rgba(224,122,95,.3);
}
.donar-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand-deep);
}
.donar-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.donar-panel {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 28px 26px 30px;
  border: 1px solid rgba(233,180,76,.35);
  box-shadow: 0 20px 50px rgba(61,41,20,.12);
}
.donar-panel-title {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  color: var(--brand-deep);
}
.donar-currency { margin-bottom: 18px; }
.donar-currency-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}
.donar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--brand-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.donar-badge-usd {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #c1666b);
}
.donar-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.donar-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-deep) !important;
  background: #fff8f1;
  border: 1.5px solid rgba(224,122,95,.28);
  box-shadow: 0 4px 12px rgba(61,41,20,.06);
  transition: transform .15s, background .15s, border-color .15s, color .15s;
}
.donar-pills a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffe0c8, #ffc9a8);
  border-color: var(--accent);
  color: var(--brand-deep) !important;
}
.donar-pills a.is-featured {
  color: #fff !important;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(224,122,95,.35);
}
.donar-pills a.is-featured:hover {
  color: #fff !important;
  filter: brightness(1.05);
}
.donar-note {
  margin: 8px 0 18px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.donar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn-donar-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, #f4a261, var(--accent) 50%, #c1666b);
  box-shadow: 0 12px 30px rgba(224,122,95,.4);
  transition: transform .15s, filter .15s;
}
.btn-donar-big:hover {
  color: #fff !important;
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn-donar-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(145deg, #34e07b, var(--wa));
  box-shadow: 0 10px 24px rgba(37,211,102,.35);
}
.btn-donar-wa:hover { color: #fff !important; filter: brightness(1.05); }
/* Botón DONAR general — salmón / coral */
.btn-donar-main {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px !important;
  padding: 12px 26px !important;
  min-height: 48px !important;
  border-radius: 999px !important;
  font-family: var(--font-ui);
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(120, 40, 20, .2);
  background: linear-gradient(145deg, #ff9a3c 0%, #ff7700 55%, #e85d04 100%) !important;
  border: 0 !important;
  box-shadow: 0 8px 22px rgba(255, 119, 0, .38);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.btn-donar-main:hover {
  color: #ffffff !important;
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(224, 106, 72, .4);
}
.btn-donar-main svg { display: none !important; }
.btn-donar-main span {
  color: #ffffff !important;
  opacity: 1 !important;
}
.home-premium .float-stack .fab-donar {
  background: linear-gradient(135deg, #ff8a3d, var(--accent)) !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(224,122,95,.4);
}
.donar-back {
  text-align: center;
  margin: 28px 0 0;
}
.donar-back a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand) !important;
}
.donar-back a:hover { color: var(--accent) !important; }
.donar-mail {
  text-align: center;
  margin: 16px 0 0;
  font-size: 15px;
  color: #555;
}
.donar-box {
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 28px 28px 32px;
  background: #fff;
  border: 1px solid #ececec;
}
.donar-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 22px;
  border: 1px solid #ececec;
}
.donar-tabs button {
  appearance: none;
  border: 0;
  background: #fff;
  padding: 12px 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
}
.donar-tabs button.is-on {
  background: #1a1a1a;
  color: #fff;
}
.donar-hint {
  margin: 0 0 16px;
  font-size: 15px;
  color: #555;
  text-align: center;
}
.donar-pane[hidden] { display: none; }
.donar-breb {
  max-width: 560px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid #ececec;
  text-align: center;
}
.donar-breb-who {
  margin: 6px 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #444;
}
.donar-more {
  margin: 56px auto 0;
  max-width: 820px;
  padding-top: 36px;
  border-top: 1px solid #ececec;
  text-align: center;
}
.donar-more-title {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: #1a1a1a;
}
.donar-more-lead {
  margin: 0 auto 28px;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}
.donar-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}
.donar-more-card {
  padding: 26px 24px 24px;
  background: #fff;
  border: 1px solid #ececec;
}
.donar-more-card em {
  display: block;
  margin: 0 0 8px;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff7700;
}
.donar-more-card strong {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
}
.donar-more-card p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}
.donar-more-card .btn-donar-main {
  width: 100%;
}
.donar-planes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 16px;
}
.donar-planes button {
  appearance: none;
  background: #fff;
  padding: 16px 8px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  border: 1px solid #e4e4e4;
  cursor: pointer;
}
.donar-planes button:hover { border-color: #ff7700; }
.donar-planes button.is-on {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}
.donar-otro-lab {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: #555;
}
.donar-otro-lab span { color: #888; font-size: 12px; }
.donar-otro-lab input {
  flex: 1;
  min-width: 0;
  padding: 12px 12px;
  border: 1px solid #e4e4e4;
  font-size: 16px;
  font-weight: 700;
}
.donar-box .btn-donar-main { width: 100%; }
.donar-trust {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #777;
  text-align: center;
}
@media (max-width: 700px) {
  .donar-more-grid { grid-template-columns: 1fr; }
}
.donar-mail a { color: #1a1a1a; font-weight: 600; }
.page-donar .sec-donar {
  min-height: 70vh;
  padding-top: 48px;
}
.page-donar .dona-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 8px auto 36px;
  padding: 0 12px;
}
.page-donar .plat-circle {
  appearance: none;
  display: block;
  width: 174px;
  height: 174px;
  max-width: min(174px, 30vw);
  max-height: min(174px, 30vw);
  padding: 0;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease;
}
.page-donar .plat-circle:hover,
.page-donar .plat-circle.is-on {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.16));
}
.page-donar .plat-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0;
  background: transparent;
}
.page-donar .pay-dest-logo {
  width: 174px;
  height: 174px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
}
.page-donar .breb-panel {
  max-width: 420px;
  margin: 8px auto 40px;
  padding: 28px 24px 26px;
  background: #ececec;
  border-radius: 28px;
  text-align: center;
}
.page-donar .breb-panel[hidden] { display: none; }
.page-donar .breb-panel-kicker {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #777;
}
.page-donar .breb-panel-qr {
  display: block;
  width: min(280px, 78%);
  height: auto;
  margin: 0 auto 18px;
  padding: 14px;
  background: #fff;
  border-radius: 16px;
}
.page-donar .breb-panel-who {
  margin: 0 0 6px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.page-donar .breb-panel-key {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #111;
}
.page-donar .breb-panel-note {
  margin: 16px auto 14px;
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}
.page-donar .breb-banks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-donar .breb-banks li {
  padding: 7px 10px;
  background: #fff;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: #333;
}
.page-donar .amount-card {
  max-width: 520px;
  margin: 0 auto 40px;
  padding: 32px 36px 36px;
  background: #ececec;
  border-radius: 16px;
}
.page-donar .amount-card-title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #222;
  text-align: center;
}
.page-donar .amount-currency { margin-bottom: 28px; }
.page-donar .amount-currency:last-child { margin-bottom: 0; }
.page-donar .amount-currency-label {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: #333;
}
.page-donar .amount-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 14px;
}
.page-donar .amount-pills a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 10px;
  background: #fff;
  color: #333 !important;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.page-donar .amount-pills a:hover {
  background: #fff8f0;
  color: #ff7700 !important;
}
.page-donar .donar-breb.is-hidden { display: none; }
.page-donar .pay-dest {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}
.page-donar .pay-dest-logo {
  width: 174px;
  height: 174px;
  margin: 0 auto 20px;
  display: block;
}
.page-donar .pay-dest-note {
  margin: 0 auto 22px;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}
.page-donar .pay-dest-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 22px;
}
.page-donar .pay-dest .donar-breb {
  border-top: 0;
  padding-top: 8px;
}
@media (max-width: 600px) {
  .page-donar .amount-card { padding: 24px 16px 28px; }
  .page-donar .plat-circle {
    width: 118px;
    height: 118px;
    max-width: 118px;
    max-height: 118px;
  }
  .page-donar .pay-dest-actions { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .donar-cards { grid-template-columns: 1fr; }
  .donar-panel { padding: 22px 16px 24px; }
  .donar-pills a,
  .donar-pill { min-width: 78px; padding: 11px 12px; font-size: 13px; }
}

/* ===== Mejoras v3: puente, galería, donar, contacto ===== */
.top-bar-web-local {
  opacity: .75;
  cursor: default;
  pointer-events: none;
  font-size: 11px;
  letter-spacing: .04em;
}
.footer-domain-label {
  color: rgba(240, 201, 106, .9);
  font-weight: 600;
}

/* ===== Nuestra promesa (puente) — v3 ===== */
.sec-bridge {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--crema) 0%, #f3ebe2 100%);
  padding: 56px 0 64px;
  border-bottom: 1px solid rgba(232, 221, 208, .95);
}
.bridge-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background:
    radial-gradient(ellipse 55% 40% at 15% 20%, rgba(224, 122, 95, .12), transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(233, 180, 76, .14), transparent 55%);
}
.bridge-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
}

/* ===== Bloque donación — v11 ===== */
.bridge-hero-card,
.bridge-hero-donar {
  --co-yellow: #f5c518;
  --co-yellow-soft: #fff1b8;
  --co-blue: #1e4d9c;
  --co-red: #c93a4a;
  --co-cream: var(--surface);
  --co-ink: var(--ink);
  --co-muted: var(--text-muted);
  --co-radius: 24px;
  --co-pad: 26px;

  display: grid;
  grid-template-columns: minmax(280px, .95fr) 1.12fr;
  align-items: stretch;
  min-height: 0;
  border-radius: var(--co-radius);
  overflow: hidden;
  position: relative;
  background: var(--co-cream);
  border: 1px solid rgba(28, 25, 23, .07);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 20px 48px rgba(28, 25, 23, .09),
    0 2px 8px rgba(28, 25, 23, .04);
}

/* Bandera solo arriba, proporciones oficiales 2:1:1 */
.bridge-flag-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  z-index: 4;
}
.bridge-flag-bar .bf-yellow { background: var(--co-yellow); }
.bridge-flag-bar .bf-blue { background: var(--co-blue); }
.bridge-flag-bar .bf-red { background: var(--co-red); }

/* Panel QR — dorado suave */
.bridge-qr-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: calc(var(--co-pad) + 14px) var(--co-pad) calc(var(--co-pad) + 4px);
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(255,255,255,.55), transparent 70%),
    linear-gradient(168deg, #FFF8D6 0%, var(--co-yellow-soft) 42%, #F0B90B 100%);
  border-right: 1px solid rgba(28, 25, 23, .06);
}
.bridge-qr-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--co-ink);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.98);
  box-shadow: 0 4px 14px rgba(28, 25, 23, .07);
}
.bridge-qr-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .22);
  animation: bridge-pulse 2s ease infinite;
}
@keyframes bridge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.92); }
}
.bridge-qr-frame,
a.bridge-qr-frame {
  position: relative;
  width: min(288px, 82%);
  aspect-ratio: 1;
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.98),
    0 0 0 6px rgba(11, 58, 140, .1),
    0 18px 40px rgba(28, 25, 23, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  flex-shrink: 0;
}
a.bridge-qr-frame { cursor: pointer; }
a.bridge-qr-frame:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px rgba(11, 58, 140, .2),
    0 24px 48px rgba(28, 25, 23, .14);
}
a.bridge-qr-frame:focus-visible {
  outline: 2px solid var(--co-blue);
  outline-offset: 4px;
}
.bridge-qr-corners {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
  opacity: .65;
  background:
    linear-gradient(var(--co-blue), var(--co-blue)) top left / 20px 2.5px no-repeat,
    linear-gradient(var(--co-blue), var(--co-blue)) top left / 2.5px 20px no-repeat,
    linear-gradient(var(--co-blue), var(--co-blue)) top right / 20px 2.5px no-repeat,
    linear-gradient(var(--co-blue), var(--co-blue)) top right / 2.5px 20px no-repeat,
    linear-gradient(var(--co-red), var(--co-red)) bottom left / 20px 2.5px no-repeat,
    linear-gradient(var(--co-red), var(--co-red)) bottom left / 2.5px 20px no-repeat,
    linear-gradient(var(--co-red), var(--co-red)) bottom right / 20px 2.5px no-repeat,
    linear-gradient(var(--co-red), var(--co-red)) bottom right / 2.5px 20px no-repeat;
}
.bridge-qr-scan {
  position: absolute;
  left: 14%;
  right: 14%;
  height: 2px;
  top: 20%;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, .8), transparent);
  box-shadow: 0 0 10px rgba(34, 197, 94, .45);
  animation: bridge-scan 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  opacity: .75;
}
@keyframes bridge-scan {
  0% { top: 16%; opacity: 0; }
  12% { opacity: .8; }
  88% { opacity: .8; }
  100% { top: 82%; opacity: 0; }
}
.bridge-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  image-rendering: auto;
  border-radius: 8px;
  pointer-events: none;
}
.bridge-qr-meta {
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 260px;
}
.bridge-qr-caption {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.35;
  color: rgba(28, 25, 23, .58);
}
.bridge-qr-llave {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11, 58, 140, .12);
  box-shadow: 0 4px 14px rgba(28, 25, 23, .06);
}
.bridge-llave-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--co-muted);
  width: 100%;
  text-align: center;
}
.bridge-llave-num {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--brand-deep);
  font-variant-numeric: tabular-nums;
}
.bridge-llave-copy {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent-deep));
  box-shadow: 0 4px 12px rgba(11, 58, 140, .22);
  transition: filter .15s, transform .15s;
}
.bridge-llave-copy:hover { filter: brightness(1.06); transform: translateY(-1px); }
.bridge-llave-copy.is-copied { background: #15803D; }
.bridge-qr-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, var(--wa-hover), var(--wa));
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(15, 118, 110, .26);
  transition: transform .15s ease, filter .15s ease;
}
.bridge-qr-wa:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: #fff !important;
}
.bridge-qr-sub { display: none; }
.bridge-pill-static {
  cursor: default !important;
  pointer-events: none;
}
.bridge-quick-pills .bridge-pill-static:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(28, 25, 23, .04);
  color: var(--co-ink) !important;
  border-color: rgba(28, 25, 23, .1);
}
.bridge-quick-pills span.bridge-pill-static.is-featured:hover {
  color: #fff !important;
  filter: none;
}

/* Panel texto */
.bridge-hero-body {
  position: relative;
  z-index: 1;
  padding: calc(var(--co-pad) + 14px) calc(var(--co-pad) + 14px) calc(var(--co-pad) + 6px) calc(var(--co-pad) + 10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  color: var(--co-ink);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(11, 58, 140, .04), transparent 55%),
    linear-gradient(185deg, #FFFFFF 0%, var(--co-cream) 100%);
}
.bridge-hero-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 5px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(
    180deg,
    var(--co-yellow) 0 50%,
    var(--co-blue) 50% 75%,
    var(--co-red) 75% 100%
  );
  opacity: .92;
}
.bridge-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 6px 13px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(90deg, var(--co-blue) 0 72%, var(--co-red) 72% 100%);
  box-shadow: 0 4px 12px rgba(11, 58, 140, .18);
}
.bridge-hero-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--co-ink);
  margin: 0 0 10px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.025em;
  max-width: 16ch;
}
.bridge-lead {
  margin: 0 0 16px;
  color: var(--co-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 36ch;
}
.bridge-lead strong { color: var(--brand-deep); font-weight: 700; }
.bridge-trust-row { display: none; }

/* Montos rápidos */
.bridge-quick-amounts {
  margin: 0 0 16px;
}
.bridge-quick-label {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--co-muted);
}
.bridge-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bridge-quick-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--co-ink) !important;
  background: #fff;
  border: 1.5px solid rgba(28, 25, 23, .1);
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(28, 25, 23, .04);
  transition: border-color .15s, transform .15s, box-shadow .15s, background .15s, color .15s;
}
.bridge-quick-pills a:hover {
  border-color: rgba(11, 58, 140, .35);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(11, 58, 140, .1);
  color: var(--co-blue) !important;
}
.bridge-quick-pills a.is-featured {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(232, 123, 30, .28);
}
.bridge-quick-pills a.is-featured:hover {
  filter: brightness(1.04);
  color: #fff !important;
}

/* Pasos */
.bridge-steps-inline {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.bridge-steps-inline > li:not(.bridge-step-join) {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 11px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(28, 25, 23, .07);
  box-shadow: 0 3px 12px rgba(28, 25, 23, .04);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.bridge-steps-inline > li:not(.bridge-step-join):hover {
  border-color: rgba(11, 58, 140, .16);
  box-shadow: 0 6px 16px rgba(11, 58, 140, .06);
}
.bridge-step-join {
  flex: 0 0 10px;
  align-self: center;
  height: 2px;
  margin: 0 2px;
  background: linear-gradient(90deg, var(--co-yellow), var(--co-blue), var(--co-red));
  border-radius: 2px;
  opacity: .45;
  list-style: none;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
.bridge-step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--co-ink);
  background: var(--co-yellow);
}
.bridge-step-n.n1 { background: var(--co-yellow); color: var(--co-ink); }
.bridge-step-n.n2 { background: var(--co-blue); color: #fff; }
.bridge-step-n.n3 { background: var(--co-red); color: #fff; }
.bridge-step-txt em {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 13.5px;
  line-height: 1.2;
  margin-bottom: 1px;
}
.bridge-step-txt small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--co-muted);
  line-height: 1.3;
}

/* Trust micro */
.bridge-trust-pills {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.bridge-trust-pills li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--co-muted);
  background: rgba(28, 25, 23, .04);
  border: 1px solid rgba(28, 25, 23, .06);
}
.bridge-trust-pills li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
}

/* Botones */
.bridge-donar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.bridge-donar-actions .btn-donar-main,
.bridge-donar-actions .btn-header-cta,
.bridge-donar-actions .btn-wa {
  min-height: 48px;
  padding: 12px 20px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  letter-spacing: .04em;
}
.bridge-donar-actions .btn-donar-main,
.bridge-donar-actions .btn-header-cta {
  background: linear-gradient(135deg, var(--gold), var(--coral)) !important;
  box-shadow: 0 8px 20px rgba(232, 123, 30, .28) !important;
}
.bridge-donar-actions .btn-wa {
  background: var(--wa-hover) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(15, 118, 110, .22);
}
.bridge-donar-actions .btn-wa:hover {
  filter: brightness(1.06);
  color: #fff !important;
}
.bridge-foot-note {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: var(--co-muted);
  font-weight: 500;
  line-height: 1.4;
}
.bridge-foot-note strong {
  color: var(--co-ink);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .bridge-qr-scan,
  .bridge-qr-chip-dot { animation: none; }
}

/* legacy hooks (por si quedan en otras páginas) */
.bridge-how { display: none; }
.bridge-trust { list-style: none; margin: 0; padding: 0; }
.bridge-trust-n {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-weight: 700; background: var(--co-yellow); color: #1a1a1a;
}

/* Dos caminos */
.bridge-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bridge-path {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border-radius: 20px;
  text-decoration: none !important;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 140px;
}
.bridge-path:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(61, 41, 20, .12);
}
.bridge-path-need {
  background: linear-gradient(145deg, #fff 0%, #fff8f3 100%);
  border-color: rgba(224, 122, 95, .28);
}
.bridge-path-give {
  background: linear-gradient(145deg, #fff7ed 0%, #ffe8d2 100%);
  border-color: rgba(233, 109, 0, .28);
}
.bridge-path-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.bridge-path-give .bridge-path-tag { color: #d45f00; }
.bridge-path strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}
.bridge-path-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
  flex: 1;
}
.bridge-path-go {
  margin-top: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.bridge-path-give .bridge-path-go { color: #d45f00; }

/* Proceso 01 → 02 → 03 */
.bridge-process {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(232, 221, 208, .9);
  border-radius: 24px;
  padding: 22px 20px 24px;
  box-shadow: 0 10px 28px rgba(61, 41, 20, .05);
}
.bridge-process-label {
  margin: 0 0 16px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8b6b4a;
}
.bridge-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}
.bridge-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(224, 122, 95, .55);
  padding-top: 8px;
}
.bridge-step {
  background: #fff;
  border: 1px solid rgba(232, 221, 208, .95);
  border-radius: 18px;
  padding: 18px 16px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(61, 41, 20, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bridge-step:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 122, 95, .35);
  box-shadow: 0 16px 32px rgba(61, 41, 20, .1);
}
.bridge-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bridge-step-num {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  background: rgba(224, 122, 95, .1);
  border-radius: 999px;
  padding: 5px 10px;
}
.bridge-step-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--gold-light), var(--accent));
  box-shadow: 0 8px 16px rgba(224, 122, 95, .25);
}
.bridge-step h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-deep);
  line-height: 1.15;
}
.bridge-step p {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  flex: 1;
}
.bridge-step-link {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent-deep) !important;
  text-decoration: none !important;
  border-bottom: 1.5px solid rgba(224, 122, 95, .3);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: border-color .15s, color .15s;
}
.bridge-step-link:hover {
  color: #a84830 !important;
  border-bottom-color: var(--accent);
}

/* CTA bar */
.bridge-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 18px 22px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(233,180,76,.15), transparent 40%),
    linear-gradient(135deg, #2a1c12 0%, #4a3224 50%, var(--brand) 100%);
  box-shadow: 0 18px 42px rgba(42, 28, 18, .28);
  border: 1px solid rgba(233, 180, 76, .25);
}
.bridge-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  min-width: 200px;
}
.bridge-cta-copy strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.bridge-cta-copy span {
  font-size: 14px;
  color: rgba(255, 248, 240, .72);
}
.bridge-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.bridge-cta-bar .btn-outline-warm {
  border-color: rgba(255,255,255,.4);
  color: #fff !important;
  background: rgba(255,255,255,.06);
}
.bridge-cta-bar .btn-outline-warm:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--gold-light);
  color: #fff !important;
}
.btn-outline-warm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(92, 61, 46, .35);
  color: var(--brand) !important;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: transparent;
  text-decoration: none !important;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-outline-warm:hover {
  background: rgba(224, 122, 95, .08);
  border-color: var(--accent);
  color: var(--accent-deep) !important;
}

@media (max-width: 900px) {
  .bridge-hero-card,
  .bridge-hero-donar {
    grid-template-columns: 1fr;
  }
  .bridge-qr-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(28, 25, 23, .06);
    padding: 38px 22px 28px;
  }
  .bridge-qr-frame,
  a.bridge-qr-frame {
    width: min(280px, 84%);
    padding: 14px;
  }
  .bridge-hero-body {
    padding: 30px 22px 28px;
  }
  .bridge-hero-body::before {
    left: 18px; right: 18px; top: 0; bottom: auto;
    width: auto; height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(
      90deg,
      var(--co-yellow) 0 50%,
      var(--co-blue) 50% 75%,
      var(--co-red) 75% 100%
    );
  }
  .bridge-hero-body h2 {
    max-width: none;
    font-size: clamp(26px, 7vw, 34px);
  }
  .bridge-quick-pills a {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }
  .bridge-steps-inline {
    flex-direction: column;
    gap: 8px;
  }
  .bridge-step-join {
    display: none;
  }
  .bridge-steps-inline > li:not(.bridge-step-join) {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .bridge-donar-actions .btn-donar-main,
  .bridge-donar-actions .btn-header-cta,
  .bridge-donar-actions .btn-wa {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
  .bridge-trust-row span {
    font-size: 11px;
  }
  .bridge-paths {
    grid-template-columns: 1fr;
  }
  .bridge-steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .bridge-step-arrow {
    display: none;
  }
  .bridge-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }
  .bridge-cta-copy {
    text-align: center;
    align-items: center;
  }
  .bridge-actions {
    justify-content: center;
    width: 100%;
  }
}

.gal-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.gal-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(20,12,8,.72));
}
.body-strip-gal {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
@media (max-width: 800px) {
  .body-strip-gal { grid-template-columns: 1fr 1fr !important; }
  .gal-item img { height: 140px; }
}

/* Bloque Bre-B en donaciones.html */
.donar-breb {
  margin: 0 0 28px;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, #f0f4ff 0%, #fff 55%, var(--surface) 100%);
  border: 1px solid rgba(11, 58, 140, .12);
  box-shadow: 0 16px 40px rgba(11, 58, 140, .08);
}
.donar-breb-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 28px;
  align-items: center;
}
.donar-breb-qr {
  text-align: center;
}
.donar-breb-chip {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, var(--co-blue) 0 70%, var(--co-red) 70% 100%);
}
.donar-breb-qr img {
  width: min(280px, 100%);
  height: auto;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px rgba(11, 58, 140, .12),
    0 16px 36px rgba(28, 25, 23, .1);
}
.donar-breb-llave {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid rgba(11, 58, 140, .14);
}
.donar-breb-llave span {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b6560;
}
.donar-breb-llave strong {
  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--brand-deep);
  font-variant-numeric: tabular-nums;
}
.donar-breb-steps {
  margin: 16px 0 0;
  padding-left: 1.2em;
  color: #4a453f;
  font-size: 14.5px;
  line-height: 1.55;
}
.donar-breb-steps li { margin-bottom: 6px; }
@media (max-width: 800px) {
  .donar-breb-grid { grid-template-columns: 1fr; }
  .donar-breb-llave strong { font-size: 22px; }
}

.donar-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--brand-deep) !important;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.donar-pill:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(224,122,95,.18);
  color: var(--accent-deep) !important;
}
.donar-pill.is-featured {
  background: linear-gradient(135deg, #ffb347, #e96d00);
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(233,109,0,.3);
}
.donar-trust {
  margin: 22px 0 8px;
  padding: 18px 18px 14px;
  background: rgba(255,248,241,.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
}
.donar-trust strong {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.donar-trust ol {
  margin: 10px 0 12px;
  padding-left: 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.donar-trust .donar-note { margin: 0; }
.btn-header-cta.is-active {
  box-shadow: 0 0 0 3px rgba(233,109,0,.25), 0 10px 26px rgba(233,109,0,.35) !important;
}

.page-hero-warm {
  background: linear-gradient(135deg, #ff9a3c 0%, #ff7700 48%, #e85d04 100%) !important;
  padding: 56px 0 48px !important;
}
.contact-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.contact-card-premium {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
}
.contact-card-premium h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brand-deep);
}
.contact-big {
  margin: 0 0 6px !important;
  font-size: 18px !important;
  font-weight: 700;
}
.contact-big a { color: var(--accent-deep) !important; }
.contact-muted {
  margin: 0 !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
}
.contact-note {
  margin-top: 28px;
  max-width: 720px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .contact-grid-premium { grid-template-columns: 1fr; margin-top: 0; }
}

/* ---- Colombia solidaridad (bandera + silueta) ---- */
.co-solidarity {
  margin: 8px 0 48px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(92, 61, 46, .1);
  box-shadow: var(--shadow);
  background:
    linear-gradient(
      105deg,
      rgba(245, 197, 24, .16) 0%,
      rgba(245, 197, 24, .08) 28%,
      rgba(30, 77, 156, .08) 52%,
      rgba(196, 46, 62, .1) 100%
    ),
    linear-gradient(165deg, #fffaf3 0%, #f7f1e8 100%);
}
.co-solidarity-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) 1.35fr;
  align-items: center;
  gap: 12px 36px;
  padding: 18px 32px 12px 12px;
  min-height: 280px;
}
.co-solidarity-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 260px;
  position: relative;
}
.co-solidarity-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 62%;
  height: 18%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(40, 50, 90, .12), transparent 70%);
  pointer-events: none;
}
.co-solidarity-visual img {
  width: auto;
  max-width: 100%;
  height: clamp(220px, 32vw, 320px);
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(20, 40, 90, .18));
}
.co-solidarity-copy {
  padding: 12px 8px 20px 0;
  max-width: 40rem;
}
.co-solidarity-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4a6fa8;
}
.co-solidarity-copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}
.co-solidarity-copy > p {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 42ch;
}
.co-solidarity-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}
.co-solidarity-actions .btn-donar-main {
  min-height: 48px !important;
}
.co-solidarity-link {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #3d5a8a;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(61, 90, 138, .3);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.co-solidarity-link:hover {
  color: #c23a4a;
  border-bottom-color: rgba(194, 58, 74, .45);
}
@media (max-width: 800px) {
  .co-solidarity-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 18px 24px;
    gap: 8px;
  }
  .co-solidarity-visual {
    min-height: 200px;
    order: -1;
  }
  .co-solidarity-visual img {
    height: 220px;
  }
  .co-solidarity-copy {
    padding: 0 4px 4px;
    max-width: none;
  }
  .co-solidarity-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .co-solidarity-actions {
    justify-content: center;
  }
}

/* =========================================================
   Impacto + carrusel entregas
   (patrones de referencia NGO: cifras, dual CTA, galería)
   ========================================================= */

.impact-strip {
  margin: 0 0 40px;
  padding: 32px 28px 28px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(245, 197, 24, .14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(90, 126, 184, .1), transparent 50%),
    linear-gradient(165deg, #fffaf4 0%, #f5efe6 100%);
  border: 1px solid rgba(92, 61, 46, .1);
  box-shadow: var(--shadow);
}
.impact-strip-head {
  margin-bottom: 22px;
  max-width: 48rem;
}
.impact-strip-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 48ch;
}
.impact-strip-grid {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.impact-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 16px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 250, .95);
  border: 1px solid rgba(92, 61, 46, .08);
  box-shadow: 0 10px 28px rgba(61, 41, 20, .06);
  min-height: 150px;
}
.impact-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(120deg, #d4a018 0%, #e06a48 55%, #c23a4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.impact-stat-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-top: 6px;
}
.impact-stat-hint {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-muted);
}
.impact-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.impact-path {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid transparent;
}
.impact-path:hover {
  transform: translateY(-2px);
}
.impact-path-kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.impact-path strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}
.impact-path-txt {
  font-size: 14px;
  line-height: 1.4;
  opacity: .9;
}
.impact-path-donar {
  background: linear-gradient(145deg, #f2a07a 0%, #e8885c 40%, #e06a48 100%);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(224, 106, 72, .3);
}
.impact-path-donar:hover {
  box-shadow: 0 14px 32px rgba(224, 106, 72, .4);
  color: #fff !important;
}
.impact-path-ayuda {
  background: #fffdf9;
  color: var(--brand-deep) !important;
  border-color: rgba(92, 61, 46, .12);
  box-shadow: 0 8px 22px rgba(61, 41, 20, .06);
}
.impact-path-ayuda .impact-path-kicker { color: #4a6fa8; }
.impact-path-ayuda:hover {
  border-color: rgba(74, 111, 168, .28);
  color: var(--brand-deep) !important;
}

/* Carrusel entregas — una foto a la vez, sin repetir en el DOM */
.entregas-carousel {
  margin: 0 0 44px;
  padding: 28px 24px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #1a2438 0%, #243048 55%, #2a3548 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 18px 48px rgba(20, 30, 50, .22);
  color: #f5f0e8;
}
.entregas-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 0 4px;
}
.entregas-carousel .mv-band-eyebrow {
  color: #e8c84a !important;
}
.entregas-carousel .mv-band-title {
  color: #fffaf3 !important;
  margin-bottom: 8px;
}
.entregas-lead {
  margin: 0;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 240, 232, .78);
}
.entregas-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.entregas-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s, transform .15s;
}
.entregas-btn:hover {
  background: rgba(232, 200, 74, .2);
  border-color: rgba(232, 200, 74, .55);
  transform: scale(1.04);
}
.entregas-viewport {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0f1520;
  aspect-ratio: 16 / 9;
  max-height: 420px;
}
.entregas-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.entregas-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
  pointer-events: none;
}
.entregas-slide.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.entregas-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.entregas-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(0deg, rgba(12, 18, 30, .88) 0%, transparent 100%);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.entregas-slide figcaption span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8c84a, #e06a48);
  color: #1a140c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.entregas-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.entregas-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: transform .15s, background .15s;
}
.entregas-dots button.is-on {
  background: #e8c84a;
  transform: scale(1.25);
}
.entregas-note {
  margin: 12px 4px 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(245, 240, 232, .45);
  text-align: center;
}

@media (max-width: 900px) {
  .impact-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .impact-strip {
    padding: 24px 16px 20px;
  }
  .impact-strip-grid {
    grid-template-columns: 1fr;
  }
  .impact-paths {
    grid-template-columns: 1fr;
  }
  .entregas-carousel {
    padding: 22px 14px 18px;
  }
  .entregas-viewport {
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }
  .entregas-btn {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   Quiénes somos — página limpia + hero fondos animados
   ========================================================= */
.qs-hero {
  position: relative;
  min-height: min(58vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.qs-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.qs-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease;
  will-change: opacity, transform;
  filter: saturate(1.18) contrast(1.06);
}
.qs-hero-slide.is-on {
  opacity: 1;
  z-index: 1;
  animation: qsKen 9s ease-out forwards;
}
@keyframes qsKen {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.qs-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(28, 16, 10, .48) 0%, rgba(28, 16, 10, .22) 52%, rgba(28, 16, 10, .12) 100%);
  pointer-events: none;
}
.qs-hero-inner {
  position: relative;
  z-index: 3;
  padding: 48px 28px 44px;
  width: 100%;
}
.qs-hero .breadcrumb {
  color: rgba(255, 255, 255, .72);
  margin: 0 0 14px;
  font-size: 13px;
}
.qs-hero .breadcrumb a {
  color: #f0c44a;
  text-decoration: none;
}
.qs-hero .breadcrumb a:hover { text-decoration: underline; }
.qs-hero-kicker {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f0c44a;
}
.qs-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fffaf3;
  max-width: 16ch;
}
.qs-hero h1 em {
  font-style: normal;
  color: #f0c44a;
}
.qs-hero-lead {
  margin: 0 0 22px;
  max-width: 42ch;
  font-size: 16.5px;
  line-height: 1.55;
  color: #ffffff !important;
}
.qs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Secciones limpia */
.qs-sec {
  padding-top: clamp(40px, 5vw, 64px) !important;
  padding-bottom: clamp(40px, 5vw, 64px) !important;
}
.qs-sec-soft {
  background: #f7f7f7;
}
.qs-head {
  margin: 0 0 28px;
  max-width: 40rem;
}
.qs-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: -.02em;
}

/* Intro 2 columnas */
.qs-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 36px 40px;
  align-items: center;
}
.qs-intro-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: -.02em;
}
.qs-intro-copy p {
  margin: 0 0 12px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.qs-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.qs-intro-photo {
  min-height: 320px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* Misión visión lema */
.qs-mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.page-prop .qs-mvv,
.page-que .cards-3 { grid-template-columns: repeat(2, 1fr); }
.qs-card {
  background: #fff;
  border: 2px solid #e4e4e4;
  border-radius: 20px;
  padding: 24px 20px 22px;
  box-shadow: 0 12px 32px rgba(255, 119, 0, .1);
  transition: transform .18s ease, box-shadow .18s ease;
}
.qs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(61, 41, 20, .11);
}
.qs-num {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent-deep);
}
.qs-card h3 {
  margin: 10px 0 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: -.015em;
}
.qs-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}
.qs-quote {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--brand-deep) !important;
  line-height: 1.3 !important;
}

/* Objetivos */
.qs-objetivos {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  counter-reset: qsobj;
}
.qs-objetivos li {
  position: relative;
  padding: 18px 18px 18px 56px;
  border-radius: 16px;
  background: #fffdf9;
  border: 1px solid rgba(92, 61, 46, .1);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  counter-increment: qsobj;
}
.qs-objetivos li::before {
  content: counter(qsobj, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 18px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent-deep);
}
.qs-objetivos strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

/* Valores */
.qs-valores {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.qs-valores li {
  padding: 20px 18px;
  border-radius: 16px;
  background: #fffdf9;
  border: 1px solid rgba(92, 61, 46, .1);
  box-shadow: 0 8px 22px rgba(61, 41, 20, .05);
}
.qs-valores strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-deep);
}
.qs-valores span {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Enfoque 4 */
.qs-focus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.qs-focus article {
  padding: 22px 18px;
  border-radius: 18px;
  background: #fffdf9;
  border: 1px solid rgba(92, 61, 46, .1);
  box-shadow: 0 10px 28px rgba(61, 41, 20, .06);
  border-top: 4px solid var(--accent);
}
.qs-focus article:nth-child(1) { border-top-color: #e5a820; }
.qs-focus article:nth-child(2) { border-top-color: #e06a48; }
.qs-focus article:nth-child(3) { border-top-color: #c94d30; }
.qs-focus article:nth-child(4) { border-top-color: #6a88b8; }
.qs-focus span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #c48e12;
}
.qs-focus h3 {
  margin: 8px 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-deep);
}
.qs-focus p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Facts */
.qs-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.qs-facts article {
  padding: 22px 20px;
  border-radius: 18px;
  background: #fffdf9;
  border: 1px solid rgba(92, 61, 46, .1);
}
.qs-facts h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-deep);
}
.qs-facts p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (max-width: 1000px) {
  .qs-intro { grid-template-columns: 1fr; }
  .qs-intro-photo { min-height: 240px; order: -1; }
  .qs-mvv { grid-template-columns: 1fr; }
  .qs-focus { grid-template-columns: 1fr 1fr; }
  .qs-valores { grid-template-columns: 1fr 1fr; }
  .qs-facts { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .qs-objetivos { grid-template-columns: 1fr; }
  .qs-focus { grid-template-columns: 1fr; }
  .qs-valores { grid-template-columns: 1fr; }
  .qs-hero { min-height: min(70vh, 480px); }
  .qs-hero-inner { padding: 36px 16px 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .qs-hero-slide.is-on { animation: none; transform: scale(1); }
}

/* Inicio: botones-destino vivos */
.home-simple { background: var(--crema) !important; }
.home-go {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.home-go-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 248px;
  padding: 0 0 16px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #e4e4e4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  text-decoration: none !important;
  color: var(--ink) !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.home-go-pic {
  display: block;
  height: 112px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) contrast(1.05);
}
.home-go-card:hover {
  transform: translateY(-4px);
  border-color: #ff7700;
  box-shadow: 0 16px 36px rgba(255, 119, 0, .22);
}
.home-go-kicker {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #ff7700;
  padding: 12px 18px 0;
}
.home-go-card strong {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  color: var(--ink);
  padding: 0 18px;
}
.home-go-card span:last-child {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.4;
  padding: 0 18px;
}
.home-go-donar {
  background: #fff;
  border-color: #ff7700;
  box-shadow: 0 10px 28px rgba(255, 119, 0, .2);
}
.home-go-donar strong { color: #c2410c; }
@media (max-width: 1000px) {
  .home-go { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .home-go { grid-template-columns: 1fr; }
}

/* Donar: dos tarjetas estilo Bre-B (referencia BBVA) */
.breb-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 8px 0 28px;
}
.breb-card {
  border-radius: 22px;
  padding: 22px 20px 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 45, 114, .18);
}
.breb-card-qr {
  background: linear-gradient(180deg, #003087 0%, #00205b 100%);
  color: #fff;
}
.breb-card-key {
  background: linear-gradient(180deg, #d6ebff 0%, #9ec9f5 100%);
  color: #00205b;
}
.breb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #003087;
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.breb-pill em { color: #00a651; font-style: normal; }
.breb-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
}
.breb-card-qr h3 { color: #fff; }
.breb-card p { margin: 0 0 14px; font-size: 15px; }
.breb-card-qr p { color: rgba(255,255,255,.92); }
.breb-qr-box {
  width: min(240px, 78%);
  aspect-ratio: 1;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  margin: 4px 0 16px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.25);
}
.breb-qr-box img { width: 100%; height: 100%; object-fit: contain; display: block; }
.breb-who { font-weight: 800; letter-spacing: .04em; }
.breb-card-qr .breb-who { color: #fff; }
.breb-llave {
  font-family: var(--font-ui);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: .03em;
  margin: 6px 0 12px;
  color: #00205b;
  word-break: break-word;
}
.breb-card-key .bridge-llave-copy {
  background: #003087;
}
@media (max-width: 800px) {
  .breb-pair { grid-template-columns: 1fr; }
}
.breadcrumb.light a { color: var(--accent-deep); }
.page-prop .sec-prop { min-height: 70vh; }

/* Desastres ocurridos */
.dx-list { display: grid; gap: 22px; }
.dx-item {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 0;
  background: #fff;
  border: 2px solid #e4e4e4;
  overflow: hidden;
}
.dx-pic {
  min-height: 240px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.05);
}
.dx-body { padding: 28px 26px; }
.dx-tag {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ff7700;
}
.dx-body h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  color: #111 !important;
}
.dx-body p { margin: 0 0 12px; color: #333; font-size: 16px; line-height: 1.6; }
.home-dx { display: none; }
@media (max-width: 900px) {
  .dx-item { grid-template-columns: 1fr; }
  .dx-pic { min-height: 180px; }
}

/* Crisis — anatomía UNICEF / Cruz Roja / STC: foto 16:10, kicker, título, extracto, ver más */
.fx-crisis {
  background: #fff;
  padding: 72px 18px 88px;
}
.fx-crisis-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ececec;
}
.fx-kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding-bottom: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff7700;
  border-bottom: 2px solid #ff7700;
}
.fx-crisis-head h2,
.fx-crisis-head h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: #1a1a1a !important;
  line-height: 1.1;
}
.fx-sub {
  margin: 0;
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.5;
  color: #555 !important;
}
.fx-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.fx-line {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  text-decoration: none !important;
  color: #111 !important;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 10px 28px rgba(20,16,12,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fx-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20,16,12,.12);
}
.fx-line:focus-visible {
  outline: 3px solid #ff7700;
  outline-offset: 3px;
}
.fx-pic {
  display: block;
  aspect-ratio: 16 / 10;
  height: auto;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .45s ease;
}
.fx-line:hover .fx-pic {
  transform: scale(1.05);
}
.fx-cap {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  padding: 22px 22px 24px;
  background: #fff;
  border-top: 3px solid #ff7700;
}
.fx-cap em {
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff7700;
}
.fx-cap strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
}
.fx-txt {
  margin-top: 4px;
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  font-weight: 400;
}
@media (prefers-reduced-motion: reduce) {
  .fx-line,
  .fx-pic { transition: none; }
  .fx-line:hover { transform: none; }
  .fx-line:hover .fx-pic { transform: none; }
}
@media (max-width: 800px) {
  .fx-crisis { padding: 48px 16px 64px; }
  .fx-crisis-head { flex-direction: column; align-items: flex-start; padding-bottom: 20px; }
  .fx-lines { grid-template-columns: 1fr; gap: 20px; }
}

/* Desastres: mismo lenguaje que inicio, otra composición */
.page-dx .hero-dx {
  aspect-ratio: 21 / 8;
  width: 100%;
  max-height: 46vh;
}
.page-dx .hero-dx .hero-donate-left {
  width: min(560px, 62%);
}
.page-dx .hero-dx .hero-campaign-logo {
  width: min(100%, 360px);
  margin-bottom: 10px;
}
.page-dx .hero-dx .hero-donate-lead {
  max-width: 16ch;
}
.dx-story {
  background: #fff;
  padding: 48px 18px 80px;
}
.dx-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px 40px;
  align-items: center;
}
.dx-story-pic {
  min-height: 380px;
  background-size: cover;
  background-position: center;
}
.dx-story-body h1,
.dx-story-body h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  color: #1a1a1a !important;
  line-height: 1.12;
}
.dx-story-body > p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.55;
  color: #555;
  max-width: 36ch;
}
.dx-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 800px) {
  .page-dx .hero-dx {
    aspect-ratio: auto;
    min-height: 240px;
    max-height: none;
  }
  .page-dx .hero-dx .hero-donate-left { width: 100%; }
  .dx-story-grid { grid-template-columns: 1fr; }
  .dx-story-pic { min-height: 220px; }
}

/* Páginas internas: título + bloques */
.la-head {
  background: #fff;
  padding: 48px 18px 28px;
  border-top: 3px solid #ff7700;
}
.la-head h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  color: #1a1a1a !important;
  line-height: 1.08;
}
.la-lead {
  margin: 0 0 22px;
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.55;
  color: #555;
}
.la-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.la-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #ececec;
  background: #fff;
  color: #1a1a1a !important;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none !important;
}
.la-jump a:hover {
  border-color: #ff7700;
  color: #ff7700 !important;
}
.la-block {
  background: #fff;
  padding: 28px 18px 48px;
}
.la-block.la-alt { background: #fafafa; }
.la-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px 40px;
  align-items: center;
}
.la-grid-rev { direction: rtl; }
.la-grid-rev > * { direction: ltr; }
.la-pic {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.la-body h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  color: #1a1a1a !important;
  line-height: 1.15;
}
.la-body p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  max-width: 46ch;
}
@media (max-width: 800px) {
  .la-grid,
  .la-grid-rev { grid-template-columns: 1fr; direction: ltr; }
  .la-pic { min-height: 220px; }
}
.qs-plain-h {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  color: #1a1a1a !important;
  line-height: 1.15;
}
.qs-lema {
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: #8a3014;
}
.qs-aims {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: aim;
  max-width: 56ch;
}
.qs-aims li {
  counter-increment: aim;
  position: relative;
  padding: 14px 0 14px 3rem;
  border-top: 1px solid #ececec;
  color: #444;
  font-size: 16px;
  line-height: 1.5;
}
.qs-aims li:last-child { border-bottom: 1px solid #ececec; }
.qs-aims li::before {
  content: counter(aim, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #ff7700;
}
.qs-aims strong { color: #1a1a1a; }
.qs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.qs-split p {
  margin: 0;
  max-width: 38ch;
  font-size: 16px;
  line-height: 1.55;
  color: #555;
}
@media (max-width: 800px) {
  .qs-split { grid-template-columns: 1fr; }
}
.page-contacto .qs-look h1 {
  color: #1a1a1a !important;
}
.co-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.co-card {
  border: 1px solid #ececec;
  padding: 28px 24px 26px;
  background: #fff;
}
.co-card em {
  display: block;
  margin: 0 0 10px;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff7700;
}
.co-card h2 {
  margin: 0 0 10px !important;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px) !important;
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a !important;
}
.co-card h2 a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}
.co-card h2 a:hover { color: #ff7700; }
.co-big {
  margin: 0 0 8px !important;
  font-family: var(--font-display);
  font-size: 22px;
  color: #1a1a1a !important;
}
.co-big a { color: #1a1a1a; text-decoration: none; }
.co-big a:hover { color: #ff7700; }
.co-card p { margin: 0; color: #555; font-size: 15px; line-height: 1.5; }
@media (max-width: 800px) {
  .co-grid { grid-template-columns: 1fr; }
}
.qs-look {
  background: #fff;
  padding: 64px 18px 72px;
}
.qs-pics { background: #fff; padding: 0 18px 56px; }
.qs-pics-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.qs-pics-row.qs-pics-4 { grid-template-columns: repeat(4, 1fr); }
.qs-pics-row span {
  display: block;
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 800px) {
  .qs-pics-row,
  .qs-pics-row.qs-pics-4 { grid-template-columns: 1fr 1fr; }
  .qs-pics-row span { min-height: 160px; }
}
.qs-look-band { background: #f7f7f7; }
.qs-look h1,
.qs-look h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: #ff7700 !important;
  font-weight: 600;
  line-height: 1.15;
}
.qs-look-intro p {
  margin: 0;
  max-width: 68ch;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}
.qs-look-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  align-items: center;
}
.qs-look-list {
  margin: 0;
  padding: 0 0 0 1.2em;
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}
.qs-look-list li { margin: 0 0 12px; }
.qs-look-photo {
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
.qs-look-iconrow {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px 28px;
  align-items: start;
  max-width: 880px;
}
.qs-look-iconrow p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #444;
}
.qs-look-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #ff7700;
  color: #fff;
  flex-shrink: 0;
}
.qs-look-center { text-align: center; }
.qs-look-vals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
  text-align: center;
}
.qs-look-vals .qs-look-ico { margin: 0 auto 12px; }
.qs-look-vals h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  color: #1a1a1a;
}
.qs-look-vals p {
  margin: 0 auto;
  max-width: 28ch;
  color: #555;
  font-size: 15px;
  line-height: 1.55;
}
.qs-look .qs-lema { margin-top: 36px; }
@media (max-width: 800px) {
  .qs-look-split,
  .qs-look-vals { grid-template-columns: 1fr; }
  .qs-look-iconrow { grid-template-columns: 1fr; }
  .qs-look-photo { min-height: 220px; }
}

/* Página corta: el pie baja al fondo, sin hueco blanco */
html { height: 100%; }
body.home-premium {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
body.home-premium > main { flex: 1 0 auto; }

/* Pie: columnas, fondo oscuro, datos propios */
.site-footer {
  background: #2a2a2a;
  color: #cfcfcf;
  padding: 56px 0 28px;
  font-size: 14px;
  margin-top: auto;
  border-top: 0;
}
.ft-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px 40px;
  align-items: start;
}
.ft-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ft-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}
.ft-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.ft-brand span {
  display: block;
  margin-top: 6px;
  color: #9d9d9d;
  font-size: 13px;
}
.site-footer h4 {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer p {
  margin: 0 0 9px;
  color: #c4c4c4;
  line-height: 1.5;
  font-size: 14px;
}
.site-footer a {
  color: #e4e4e4;
  text-decoration: none;
}
.site-footer a:hover { color: #ff7700; }
.site-footer .footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #3d3d3d;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  font-size: 13px;
  color: #8a8a8a;
}
.site-footer .footer-bottom p { margin: 0; }
.site-footer .footer-domain-label { color: #ff7700; font-weight: 600; }
@media (max-width: 800px) {
  .ft-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ft-cols { grid-template-columns: 1fr; }
}
