/* ═══════════════════════════════════════════════════════════════
   Oberle Perú — "Ayuda que da vida"
   Montserrat (titulares) + Open Sans (texto) · verde oliva de marca
   ═══════════════════════════════════════════════════════════════ */

:root {
  --brand:      #a1ae39;   /* verde oliva de marca */
  --brand-2:    #899636;   /* verde profundo (hover/sólidos) */
  --brand-3:    #b9c95a;   /* lima claro (acentos) */
  --brand-soft: #f2f5e1;   /* lavado verde muy claro */
  --brand-tint: #f9fbf0;   /* fondo cálido muy claro */

  --red:        #ba3739;   /* rojo terroso (donaciones / alertas) */
  --red-2:      #9c2c2e;
  --slate:      #566d8f;   /* azul pizarra (secundario) */

  --ink:        #23241f;   /* casi negro verdoso */
  --ink-2:      #44473d;   /* gris oscuro cálido */
  --muted:      #767a6c;   /* gris verdoso medio */
  --line:       rgba(35,36,31,0.10);
  --line-2:     rgba(35,36,31,0.06);
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-soft:    #f6f7f1;
  --dark:       #23241f;   /* footer */

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --sec: clamp(64px, 8vw, 130px);
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-pill: 999px;
  --shadow:    0 18px 50px rgba(35,36,31,0.10);
  --shadow-sm: 0 8px 24px rgba(35,36,31,0.08);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
html, body { overflow-x: hidden; max-width: 100%; }
.page-wrap { position: relative; width: 100%; overflow-x: hidden; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 12px; z-index: 9999; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px; }

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.d1{transition-delay:.07s}.d2{transition-delay:.14s}.d3{transition-delay:.21s}.d4{transition-delay:.28s}.d5{transition-delay:.35s}.d6{transition-delay:.42s}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }

/* ── Layout helpers ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--brand-tint); }
.section--brand { background: var(--brand); color: #fff; }
.center { text-align: center; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--brand-2);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: var(--brand); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: rgba(255,255,255,.92); }
.eyebrow--light::before { background: rgba(255,255,255,.7); }

/* ── Headings ── */
.h-xl, .h-lg, .h-md, .h-sm {
  font-family: var(--font-head); font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.08;
}
.h-xl { font-size: clamp(34px, 5.6vw, 68px); line-height: 1.04; }
.h-lg { font-size: clamp(28px, 4vw, 46px); }
.h-md { font-size: clamp(23px, 2.6vw, 33px); }
.h-sm { font-size: clamp(19px, 2vw, 23px); }
.h-xl .accent, .h-lg .accent, .h-md .accent { color: var(--brand); }
.lead { font-size: clamp(17px, 1.7vw, 20px); color: var(--ink-2); line-height: 1.65; }
.muted { color: var(--muted); }

.section-head { max-width: 740px; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 17px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(161,174,57,.34); }
.btn--primary:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(161,174,57,.42); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(186,55,57,.30); }
.btn--red:hover { background: var(--red-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--brand-2); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 11px 20px; font-size: 14px; }

/* ════════ NAV ════════ */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--pad);
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s, padding .3s;
}
#nav.scrolled { box-shadow: 0 6px 26px rgba(35,36,31,.08); border-color: var(--line-2); }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; }
.nav-logo .wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo .wordmark b { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.nav-logo .wordmark small { font-size: 10.5px; color: var(--brand-2); font-weight: 600; letter-spacing: .04em; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink);
  padding: 10px 14px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav-menu > li > a:hover, .nav-menu > li.current-menu-item > a, .nav-menu > li.current-menu-parent > a { color: var(--brand-2); background: var(--brand-soft); }
.nav-menu .menu-item-has-children > a::after { content: ''; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }

/* dropdowns */
.nav-menu .sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 14px; box-shadow: var(--shadow);
  padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s, transform .22s, visibility .22s; z-index: 10;
}
.nav-menu > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu li { position: relative; }
.nav-menu .sub-menu a { display: block; padding: 10px 14px; border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--ink-2); font-family: var(--font-head); }
.nav-menu .sub-menu a:hover { background: var(--brand-soft); color: var(--brand-2); }
.nav-menu .sub-menu .sub-menu { top: -8px; left: calc(100% + 6px); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* mobile menu */
.mob { position: fixed; inset: 0; z-index: 950; background: #fff; transform: translateX(100%); transition: transform .35s cubic-bezier(.16,1,.3,1); overflow-y: auto; padding: 84px 24px 40px; }
.mob.open { transform: none; }
.mob-close { position: absolute; top: 22px; right: 22px; background: none; border: 0; font-size: 30px; cursor: pointer; color: var(--ink); line-height: 1; }
.mob-logo { position: absolute; top: 20px; left: 24px; height: 44px; }
.mob-menu, .mob ul { list-style: none; }
.mob-menu > li { border-bottom: 1px solid var(--line-2); }
.mob-menu > li > a { display: block; font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink); padding: 15px 4px; }
.mob-menu .menu-item-has-children { position: relative; }
.mob-menu .menu-item-has-children > .mob-toggle { position: absolute; top: 8px; right: 0; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; color: var(--muted); font-size: 26px; line-height: 1; }
.mob-menu .menu-item-has-children > .mob-toggle::after { content: '+'; }
.mob-menu .menu-item-has-children.open > .mob-toggle::after { content: '–'; }
.mob-menu .sub-menu { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding-left: 12px; }
.mob-menu .menu-item-has-children.open > .sub-menu { max-height: 800px; }
.mob-menu .sub-menu a { display: block; padding: 11px 14px; font-size: 15.5px; color: var(--ink-2); font-weight: 600; }
.mob-cta { margin-top: 22px; }
.mob-cta .btn { width: 100%; justify-content: center; }

/* ════════ HERO ════════ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding-top: 90px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; transform: scale(1.06); }
.hero-slide.active { opacity: 1; animation: heroZoom 9s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.15); } }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(35,36,31,.82) 0%, rgba(35,36,31,.55) 46%, rgba(35,36,31,.25) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); width: 100%; }
.hero-card { max-width: 720px; color: #fff; }
.hero .eyebrow { color: var(--brand-3); margin-bottom: 18px; }
.hero .eyebrow::before { background: var(--brand-3); }
.hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(32px, 5.4vw, 62px); line-height: 1.07; letter-spacing: -.02em; color: #fff; }
.hero h1 .accent { color: var(--brand-3); }
.hero p.lead { color: rgba(255,255,255,.92); margin-top: 22px; max-width: 600px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }
.hero-tag b { color: var(--brand-3); }

/* ════════ PROPÓSITO / MISIÓN strip ════════ */
.purpose { background: var(--brand); color: #fff; }
.purpose .wrap { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding-block: clamp(40px,5vw,68px); }
.purpose .p-icon { width: 78px; height: 78px; display: grid; place-items: center; background: rgba(255,255,255,.16); border-radius: 20px; }
.purpose .p-icon svg { width: 40px; height: 40px; fill: #fff; }
.purpose h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px,2.7vw,34px); line-height: 1.2; color: #fff; }
.purpose h2 small { display: block; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 10px; font-weight: 700; }

/* ════════ Líneas de acción (cards) ════════ */
.lines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.line-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 34px 30px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.line-card::before { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--brand); transition: width .35s; }
.line-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.line-card:hover::before { width: 100%; }
.line-ico { width: 72px; height: 72px; display: grid; place-items: center; background: var(--brand-soft); border-radius: 18px; }
.line-ico img { width: 42px; height: 42px; object-fit: contain; }
.line-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--ink); }
.line-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.line-more { margin-top: auto; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--brand-2); display: inline-flex; align-items: center; gap: 7px; }
.line-more svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .25s; }
.line-card:hover .line-more svg { transform: translateX(4px); }

/* ════════ Impacto (counters) ════════ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 14px; }
.stat .num { font-family: var(--font-head); font-weight: 900; font-size: clamp(38px, 5vw, 60px); color: var(--brand); line-height: 1; letter-spacing: -.02em; }
.section--brand .stat .num { color: #fff; }
.stat .lbl { margin-top: 12px; font-size: 14.5px; color: var(--muted); font-weight: 600; }
.section--brand .stat .lbl { color: rgba(255,255,255,.88); }

/* ════════ Cobertura (tabs + mapas) ════════ */
.cov { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,60px); align-items: center; }
.cov-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.cov-tab { font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer; transition: .25s; }
.cov-tab:hover { border-color: var(--brand); color: var(--brand-2); }
.cov-tab.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.cov-panel { display: none; animation: fade .4s ease; }
.cov-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cov-panel h3 { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--ink); margin-bottom: 8px; }
.cov-panel p { color: var(--muted); margin-bottom: 18px; }
.cov-regions { display: flex; flex-wrap: wrap; gap: 8px; }
.cov-regions span { font-size: 13px; font-weight: 600; color: var(--ink-2); background: var(--brand-soft); padding: 7px 14px; border-radius: var(--r-pill); }
.cov-map { display: grid; place-items: center; }
.cov-map img { max-height: 440px; width: auto; filter: drop-shadow(0 18px 30px rgba(35,36,31,.14)); }

/* ════════ Aliados (accordion) ════════ */
.acc { max-width: 920px; margin: 44px auto 0; }
.acc-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 26px; flex-wrap: wrap; }
.acc-item { border: 1px solid var(--line-2); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; background: #fff; }
.acc-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); }
.acc-head::after { content: '+'; font-size: 24px; color: var(--brand); transition: transform .3s; }
.acc-item.open .acc-head::after { content: '–'; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-item.open .acc-body { max-height: 1400px; }
.acc-body-inner { padding: 4px 24px 22px; color: var(--muted); font-size: 14.5px; }
.acc-body-inner ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 6px 20px; }
.acc-body-inner li { padding-left: 18px; position: relative; }
.acc-body-inner li::before { content: ''; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-3); }

/* ════════ Noticias ════════ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.news-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--brand-soft); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-thumb.ph { display: grid; place-items: center; }
.news-thumb.ph img { width: 64px; height: 64px; opacity: .5; }
.news-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-date { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand-2); }
.news-body h3 { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--ink); line-height: 1.3; }
.news-body p { font-size: 14.5px; color: var(--muted); }
.news-body .line-more { margin-top: 8px; }

/* ════════ Testimonios ════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testi { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 32px 30px; position: relative; }
.testi .quote { font-size: 64px; font-family: var(--font-head); color: var(--brand-3); line-height: .6; height: 28px; }
.testi p { font-size: 15.5px; color: var(--ink-2); font-style: italic; margin: 8px 0 20px; }
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-who img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testi-who .av { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--brand); color: #fff; font-family: var(--font-head); font-weight: 800; }
.testi-who b { font-family: var(--font-head); font-size: 15px; color: var(--ink); display: block; }
.testi-who small { color: var(--muted); font-size: 13px; }

/* ════════ CTA band ════════ */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: clamp(20px,3vw,36px); padding: clamp(40px,6vw,76px) clamp(28px,5vw,72px); text-align: center; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(161,174,57,.4), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px,3.4vw,44px); color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 560px; margin: 16px auto 0; }
.cta-band .hero-cta { justify-content: center; margin-top: 30px; }

/* ════════ Formularios ════════ */
.obp-form { display: grid; gap: 16px; }
.obp-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.obp-form label { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--ink); display: block; margin-bottom: 6px; }
.obp-form input, .obp-form textarea, .obp-form select {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.obp-form input:focus, .obp-form textarea:focus, .obp-form select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(161,174,57,.14); }
.obp-form textarea { min-height: 130px; resize: vertical; }
.obp-form .btn { justify-content: center; margin-top: 4px; }
.obp-form-status { font-size: 14.5px; font-weight: 600; padding: 4px 2px; min-height: 8px; }
.obp-form-status.ok { color: var(--brand-2); }
.obp-form-status.err { color: var(--red); }

/* ════════ Página interna: hero compacto ════════ */
.page-hero { position: relative; padding: 132px var(--pad) 64px; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; }
.page-hero[data-bg]::before { background-image: var(--bg-img); }
.page-hero .ph-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.page-hero .crumbs { font-size: 13.5px; color: rgba(255,255,255,.7); margin-bottom: 14px; font-family: var(--font-head); font-weight: 600; }
.page-hero .crumbs a:hover { color: var(--brand-3); }
.page-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px,4.4vw,54px); color: #fff; letter-spacing: -.02em; }
.page-hero p { color: rgba(255,255,255,.85); margin-top: 14px; max-width: 640px; font-size: 18px; }

/* ── Prose (contenido editable de páginas internas) ── */
.prose { max-width: 820px; margin: 0 auto; }
.prose.wide { max-width: var(--maxw); }
.prose h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px,3vw,34px); color: var(--ink); margin: 1.6em 0 .5em; letter-spacing: -.02em; }
.prose h3 { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--brand-2); margin: 1.3em 0 .4em; }
.prose p { margin-bottom: 1.1em; color: var(--ink-2); }
.prose ul, .prose ol { margin: 0 0 1.2em 1.2em; }
.prose li { margin-bottom: .5em; }
.prose img { border-radius: var(--r-md); margin: 1.4em 0; box-shadow: var(--shadow-sm); }
.prose a { color: var(--brand-2); font-weight: 600; text-decoration: underline; text-decoration-color: var(--brand-3); }
.prose blockquote { border-left: 4px solid var(--brand); padding: 6px 0 6px 22px; margin: 1.4em 0; font-style: italic; color: var(--ink); font-size: 19px; }

/* ── Split (texto + imagen) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; }
.split-body h2 { margin-top: 0; }

/* ── Himno ── */
.himno { background: var(--brand); color: #fff; border-radius: var(--r-xl); padding: clamp(34px,5vw,64px); }
.himno pre { font-family: var(--font-head); font-weight: 600; font-size: clamp(15px,1.7vw,19px); line-height: 1.9; color: #fff; white-space: pre-wrap; text-align: center; letter-spacing: .01em; }

/* ── Galería grid ── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { display: block; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1/1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery a:hover img { transform: scale(1.08); }

/* ── Cards de premios ── */
.awards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.award img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }

/* ════════ FOOTER ════════ */
footer { background: var(--dark); color: rgba(255,255,255,.72); padding-top: clamp(56px,7vw,90px); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.f-logo img { height: 56px; }
.f-desc { font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: .25s; }
.f-social a:hover { background: var(--brand); transform: translateY(-2px); }
.f-social svg { width: 18px; height: 18px; fill: #fff; }
footer h5 { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; display: grid; gap: 11px; }
footer ul a, footer ul li { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .2s; }
footer ul a:hover { color: var(--brand-3); }
.f-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 0 30px; font-size: 13px; color: rgba(255,255,255,.5); }
.f-bottom a:hover { color: var(--brand-3); }

/* ── WhatsApp flotante ── */
.wa { position: fixed; right: 22px; bottom: 22px; z-index: 800; display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 13px 20px 13px 16px; border-radius: var(--r-pill); box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .25s; }
.wa:hover { transform: translateY(-3px) scale(1.03); }
.wa svg { width: 22px; height: 22px; fill: #fff; }

/* ════════ Responsive ════════ */
@media (max-width: 1080px) {
  .lines-grid, .news-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .cov, .split, .split.rev .split-media { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .purpose .wrap { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 620px) {
  .lines-grid, .news-grid, .testi-grid, .awards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .obp-form .row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .f-bottom { flex-direction: column; text-align: center; }
}
