
:root {
  --azul:       #1565C0;
  --azul-light: #1E88E5;
  --azul-dark:  #0D47A1;
  --acento:     #F9A825;
  --acento-dark:#E65100;
  --verde:      #2E7D32;
  --fondo:      #FFFFFF;
  --fondo-soft: #F4F8FD;
  --card:       #FFFFFF;
  --texto:      #1A2332;
  --texto-muted:#5C6D82;
  --borde:      rgba(21,101,192,0.10);
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 2px 8px rgba(21,101,192,0.07);
  --shadow:     0 8px 28px rgba(21,101,192,0.10);
  --shadow-lg:  0 20px 60px rgba(21,101,192,0.14);
  --trans:      0.28s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--fondo);
  color: var(--texto);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--azul-dark);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  z-index: 200;
  transition: top var(--trans);
}
.skip-link:focus {
  top: 10px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
a { color: var(--azul); }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--azul-dark);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--azul-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  text-decoration: none;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--trans), background var(--trans);
  color: var(--azul);
  background: var(--fondo-soft);
  font-weight: 600;

}
.nav-menu a:hover { color: var(--azul); background: var(--fondo-soft); }
.nav-menu a.active {
  color: var(--azul-dark);
  background: rgba(21, 101, 192, 0.14);
  font-weight: 700;
}
.nav-cta { background: var(--acento) !important; color: #1A2332 !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--acento-dark) !important; color: white !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition: var(--trans);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,71,161,0.82) 0%,
    rgba(21,101,192,0.65) 50%,
    rgba(30,136,229,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acento);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 20px;
  color: white;
  line-height: 1.1;
}
.hero h1 em {
  font-style: italic;
  color: var(--acento);
}
.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--azul);
  color: white;
}
.btn-primary:hover { background: var(--azul-dark); color: white; }
.btn-accent {
  background: var(--acento);
  color: #1A2332;
}
.btn-accent:hover { background: var(--acento-dark); color: white; }
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  color: white;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--azul);
  color: var(--azul);
  font-size: 0.82rem;
  padding: 8px 18px;
}
.btn-outline:hover { background: var(--azul); color: white; }
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-strip {
  background: var(--azul-dark);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--acento);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  text-align: center;
  font-weight: 500;
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { padding: 80px 0; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azul-light);
  margin-bottom: 10px;
  text-align: center;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--azul-dark);
  text-align: center;
  margin-bottom: 48px;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--acento);
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ══════════════════════════════════════
   PROYECTOS
══════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.project-card {
  background: var(--card);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.project-card h3 {
  font-size: 1.2rem;
  color: var(--azul-dark);
  margin-bottom: 10px;
}
.project-card p {
  color: var(--texto-muted);
  font-size: 0.93rem;
}

/* ══════════════════════════════════════
   PROGRAMAS
══════════════════════════════════════ */
.programs-section { background: var(--fondo-soft); margin: 0 -24px; padding: 80px 24px; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.program-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-img-wrap { position: relative; }
.program-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.program-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--azul);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.program-body { padding: 22px 24px; }
.program-body h3 {
  font-size: 1rem;
  color: var(--azul-dark);
  margin-bottom: 8px;
}
.program-body p { color: var(--texto-muted); font-size: 0.9rem; }

/* ══════════════════════════════════════
   CARRUSEL
══════════════════════════════════════ */
.carousel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.carousel {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  padding: 24px 0;
}
.slide {
  flex: 0 0 230px;
  display: flex;
  justify-content: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.slide-side { opacity: 0.75; }
.slide-side .member-card { transform: scale(0.94); }
.slide-center { opacity: 1; }
.slide-center .member-card { transform: scale(1.04); }
.member-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 220px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.member-card.large { width: 280px; }
.member-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,71,161,0.88) 0%, rgba(13,71,161,0) 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  transition: opacity var(--trans);
}
.member-card:hover .overlay { opacity: 1; }
.meta h4 { color: white; font-size: 0.9rem; margin-bottom: 2px; }
.meta p { color: rgba(255,255,255,0.82); font-size: 0.8rem; font-style: italic; }
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--azul);
  background: white;
  color: var(--azul);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--azul); color: white; }

/* ══════════════════════════════════════
   MISIÓN / VISIÓN
══════════════════════════════════════ */
.mv-section { background: var(--fondo-soft); margin: 0 -24px; padding: 80px 24px; }
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.mv-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--azul-light);
}
.mv-card--accent { border-top-color: var(--acento); }
.mv-icon { font-size: 2rem; margin-bottom: 16px; }
.mv-card h3 {
  font-size: 1.3rem;
  color: var(--azul-dark);
  margin-bottom: 14px;
}
.mv-card p { color: var(--texto-muted); font-size: 0.93rem; line-height: 1.8; }

/* ══════════════════════════════════════
   OBJETIVO SOCIAL
══════════════════════════════════════ */
.objetivo-card {
  background: var(--card);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.objetivo-art { color: var(--azul-dark); margin-bottom: 18px; font-size: 0.95rem; }
.objetivo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.objetivo-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--texto-muted);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--borde);
}
.objetivo-list li:last-child { border-bottom: none; }
.objetivo-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--azul-light);
  font-weight: 700;
}
.objetivo-art2 { color: var(--texto-muted); font-size: 0.9rem; }

/* ══════════════════════════════════════
   DONAR
══════════════════════════════════════ */
.donate-section {
  background: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul-light) 100%);
  margin: 0 -24px;
  padding: 80px 24px;
  color: white;
}
.donate-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
.donate-text { flex: 1; min-width: 260px; }
.donate-text .section-label.light { color: var(--acento); }
.donate-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: white;
  margin: 8px 0 16px;
}
.donate-text p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.donate-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}
.donate-method {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.method-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acento);
}
.method-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: white;
  letter-spacing: 0.04em;
}
.donate-btn {
  text-align: center;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
}

/* ══════════════════════════════════════
   VOLUNTARIADO
══════════════════════════════════════ */
.vol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.vol-card {
  background: var(--card);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.vol-card--form { background: var(--fondo-soft); }
.vol-icon { font-size: 2rem; margin-bottom: 14px; }
.vol-card h3 { font-size: 1.3rem; color: var(--azul-dark); margin-bottom: 10px; }
.vol-card p { color: var(--texto-muted); margin-bottom: 20px; font-size: 0.93rem; }
.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.subscribe-form input {
  flex: 1;
  min-width: 180px;
  padding: 11px 16px;
  border: 1.5px solid var(--borde);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--texto);
  background: white;
  transition: border-color var(--trans);
  outline: none;
}
.subscribe-form input:focus { border-color: var(--azul-light); }
.toast {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--verde);
  font-weight: 600;
  min-height: 20px;
}

/* ══════════════════════════════════════
   CONTACTO
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1.2rem; color: var(--azul-dark); margin-bottom: 20px; }
.contact-sub { color: var(--texto-muted); font-size: 0.88rem; margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.contact-ico { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { color: var(--texto); display: block; margin-bottom: 2px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item a { color: var(--azul-light); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.social-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--texto-muted);
  font-size: 0.72rem;
  font-weight: 600;
  transition: color var(--trans), transform var(--trans);
}
.social-link:hover { color: var(--azul); transform: translateY(-3px); }
.social-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--fondo-soft);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--borde);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--texto);
  color: rgba(255,255,255,0.65);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 0.9rem;
}
.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.88;
}
.footer-copy { font-size: 0.82rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--trans);
}
.footer-links a:hover { color: white; }

/* ══════════════════════════════════════
   LEGAL
══════════════════════════════════════ */
.legal-section {
  background: var(--fondo-soft);
  margin: 0 -24px;
  padding: 80px 24px;
}
.legal-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.legal-card {
  background: white;
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.legal-card h3 {
  font-size: 1.15rem;
  color: var(--azul-dark);
  margin-bottom: 10px;
}
.legal-card p {
  color: var(--texto-muted);
  font-size: 0.93rem;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--borde);
    z-index: 99;
    align-items: flex-start;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero { min-height: 70vh; }
  .donate-inner { gap: 36px; }
  .programs-section, .donate-section, .mv-section { margin: 0 -24px; }
  .legal-section { margin: 0 -24px; }
  .objetivo-card { padding: 28px 24px; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .slide { flex: 0 0 180px; }
  .member-card { width: 170px; }
  .member-card.large { width: 210px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { width: 100%; }
  .topbar { padding: 12px 16px; }
  .section { padding: 56px 0; }
}

/* ══════════════════════════════════════
   INFORME 2024
══════════════════════════════════════ */
.report-main {
  padding-top: 28px;
  padding-bottom: 24px;
}
.report-breadcrumbs {
  padding-top: 8px;
  padding-bottom: 8px;
}
.report-breadcrumbs p {
  font-size: 0.86rem;
  color: var(--texto-muted);
}
.report-breadcrumbs a {
  color: var(--azul-light);
  text-decoration: none;
}
.report-breadcrumbs a:hover {
  text-decoration: underline;
}
.report-hero .hero-content {
  max-width: 840px;
}
.report-hero {
  min-height: 62vh;
  background-image:
    linear-gradient(135deg, rgba(13,71,161,0.78), rgba(30,136,229,0.70)),
    url('images/hero.jpg');
  background-size: cover;
  background-position: center;
}
.report-hero .hero-overlay {
  background: linear-gradient(
    130deg,
    rgba(6, 28, 70, 0.78) 0%,
    rgba(13, 71, 161, 0.45) 55%,
    rgba(30, 136, 229, 0.28) 100%
  );
}
.report-hero-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.report-hero-tags span {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 7px 12px;
}
.report-highlight {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--borde);
  border-left: 5px solid var(--acento);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.report-highlight p {
  color: var(--texto-muted);
  margin: 0;
  font-size: 0.96rem;
}
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.report-card {
  background: var(--card);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.report-card h3 {
  color: var(--azul-dark);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.report-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.report-card li {
  color: var(--texto-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.report-card li:last-child { margin-bottom: 0; }
.report-card li::before {
  content: "•";
  color: var(--azul-light);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.report-stats {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.report-docs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.report-doc-card {
  background: linear-gradient(180deg, #f7fafe 0%, #ffffff 100%);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.report-doc-card h3 {
  color: var(--azul-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.report-doc-card p {
  color: var(--texto-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.report-cta-final .report-highlight {
  background: linear-gradient(135deg, #f4f8fd, #ffffff);
}

/* ══════════════════════════════════════
   ALIANZAS
══════════════════════════════════════ */
.allies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.ally-card {
  background: var(--card);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.ally-card h3 {
  color: var(--azul-dark);
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.ally-card p {
  color: var(--texto-muted);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .report-hero {
    min-height: 56vh;
  }
}