/* Fundación RB — UI v2 · Paleta Venezuela suave */

:root {
  --white: #ffffff;
  --surface: #f7f8fc;
  --surface-2: #eef2fa;
  --surface-3: #e4eaf5;
  --ink: #1a2235;
  --ink-muted: #5c6578;
  --ink-subtle: #8b93a7;
  --border: rgba(26, 34, 53, 0.08);
  --border-strong: rgba(26, 34, 53, 0.14);

  --ve-blue: #003087;
  --ve-blue-soft: #1a4da8;
  --ve-blue-muted: rgba(0, 48, 135, 0.08);
  --ve-yellow: #ffcc00;
  --ve-yellow-soft: #f5d547;
  --ve-yellow-muted: rgba(255, 204, 0, 0.12);
  --ve-red: #cf142b;
  --ve-red-soft: #e0354a;
  --ve-red-muted: rgba(207, 20, 43, 0.1);

  --ve-gradient: linear-gradient(90deg, var(--ve-yellow) 0%, var(--ve-blue) 50%, var(--ve-red) 100%);
  --ve-gradient-soft: linear-gradient(135deg, var(--ve-yellow-muted), var(--ve-blue-muted), var(--ve-red-muted));

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --header-h: 84px;
  --container: 1180px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 4px rgba(26, 34, 53, 0.05);
  --shadow-md: 0 4px 16px rgba(26, 34, 53, 0.07);
  --shadow-lg: 0 8px 24px rgba(26, 34, 53, 0.08);
  --ve-bar: linear-gradient(
    90deg,
    var(--ve-yellow) 0%,
    var(--ve-yellow) 33.333%,
    var(--ve-blue) 33.333%,
    var(--ve-blue) 66.666%,
    var(--ve-red) 66.666%,
    var(--ve-red) 100%
  );
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* Loader */
.app-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--surface);
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
.app-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.app-loader__bar {
  width: 120px;
  height: 3px;
  border-radius: 99px;
  background: var(--surface-3);
  overflow: hidden;
}
.app-loader__bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--ve-gradient);
  animation: loadSlide 1s var(--ease) infinite;
}
@keyframes loadSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Botón flotante — estilo JoinChat, inferior derecha */
.donate-float {
  position: fixed;
  bottom: max(14px, env(safe-area-inset-bottom, 14px));
  right: max(14px, env(safe-area-inset-right, 14px));
  z-index: 1000;
  padding: 2px;
  background: linear-gradient(135deg, var(--ve-yellow) 0%, var(--ve-blue) 50%, var(--ve-red) 100%);
  border-radius: 14px;
}
.donate-float__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 10px 15px;
  background: var(--ve-blue);
  color: var(--white);
  border-radius: 12px;
  transition: background var(--transition);
}
.donate-float__btn:hover {
  background: var(--ve-blue-soft);
}
.donate-float__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
}
.donate-float__text span:first-child {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.donate-float__text span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.92;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  padding-top: 4px;
  background: rgba(247, 248, 252, 0.92);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ve-bar);
  z-index: 2;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
}
.header--hero {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.header--hero:not(.scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.88);
}
.header--hero:not(.scrolled) .nav__toggle span {
  background: var(--white);
}
.header--hero.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--border);
}
.header--hero.scrolled .nav__link {
  color: var(--ink-muted);
}
.header--hero.scrolled .nav__link:hover {
  color: var(--ve-blue);
}
.header--hero.scrolled .nav__toggle span {
  background: var(--ink);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) - 4px);
}
.header__logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.header__logo-img {
  height: clamp(38px, 7vw, 50px);
  width: auto;
  transition: opacity var(--transition);
}
.header__logo-img--color {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.header__logo-img--white {
  opacity: 1;
}
.header.scrolled .header__logo-img--white {
  opacity: 0;
}
.header.scrolled .header__logo-img--color {
  opacity: 1;
}
.nav__head { display: none; }
.nav__logo { display: none; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--ve-gradient);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover { color: var(--ve-blue); }
.nav__link:hover::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; z-index: 960; position: relative; }
.nav .nav__donate { display: none; }
.nav-backdrop { display: none; }
.nav__ve { display: none; }
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary {
  background: var(--ve-blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--ve-blue-soft);
}
.btn--outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}
.btn--outline:hover {
  border-color: var(--ve-blue);
  color: var(--ve-blue);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 14, 32, 0.78) 0%,
      rgba(8, 14, 32, 0.52) 38%,
      rgba(8, 14, 32, 0.18) 62%,
      rgba(8, 14, 32, 0.04) 100%
    );
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}
.hero__content {
  max-width: 640px;
  text-align: left;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.35rem;
  text-wrap: balance;
}
.hero__ve-word {
  font-style: normal;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.45),
    0 0 6px rgba(255, 255, 255, 0.25),
    0 1px 4px rgba(0, 0, 0, 0.35);
}
.hero__ve-yellow { color: var(--ve-yellow); }
.hero__ve-blue {
  color: var(--ve-blue);
  -webkit-text-stroke: 0.75px rgba(255, 255, 255, 0.45);
  paint-order: stroke fill;
}
.hero__ve-red { color: var(--ve-red-soft); }
.hero__text {
  font-size: clamp(1rem, 1.85vw, 1.125rem);
  color: rgba(255, 255, 255, 0.84);
  max-width: 54ch;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  align-items: center;
}
.hero__unidos {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.hero__flag {
  display: inline-flex;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.hero__flag span { flex: 1; }
.hero__flag span:nth-child(1) { background: var(--ve-yellow); }
.hero__flag span:nth-child(2) { background: var(--ve-blue); }
.hero__flag span:nth-child(3) { background: var(--ve-red); }
.hero__unidos-text {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hero .btn--primary {
  padding: 0.95rem 1.65rem;
  font-size: 0.9375rem;
  box-shadow: 0 4px 20px rgba(0, 48, 135, 0.45);
}
.hero__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  height: 4px;
}
.hero__stripe span { flex: 1; }
.hero__stripe span:nth-child(1) { background: var(--ve-yellow); }
.hero__stripe span:nth-child(2) { background: var(--ve-blue); }
.hero__stripe span:nth-child(3) { background: var(--ve-red); }

/* Secciones compartidas */
.section { padding-block: clamp(4rem, 10vw, 7rem); position: relative; }
.section--white { background: var(--white); }
#info.section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--soft { background: var(--surface); }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ve-blue);
  margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--ve-gradient);
  border-radius: 2px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.title-accent { color: var(--ve-red); }
.section__desc {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 58ch;
}

/* Impacto — bloque fundación */
.impact-block {
  display: grid;
  grid-template-areas:
    "stats"
    "content"
    "commit";
  gap: clamp(0.85rem, 2vw, 1.25rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 920px;
  margin-inline: auto;
}
.impact-block__stats { grid-area: stats; }
.impact-block__content { grid-area: content; }
.impact-block__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}
.impact-block__stat {
  padding: 0.25rem 0.5rem;
  text-align: center;
  background: none;
  border: none;
}
.impact-block__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.impact-block__num--mag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
}
.impact-block__mag-yellow { color: #9a7b00; }
.impact-block__mag-red { color: var(--ve-red); }
.impact-block__mag-sep {
  color: var(--ink-subtle);
  font-size: 0.85em;
  font-weight: 700;
}
.impact-block__num--blue { color: var(--ve-blue); }
.impact-block__num--red { color: var(--ve-red); }
.impact-block__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.impact-block__content p {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.65;
  margin: 0;
  text-align: center;
  max-width: 62ch;
  margin-inline: auto;
}
.impact-block__commit {
  grid-area: commit;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.04) 0%, rgba(255, 204, 0, 0.05) 50%, rgba(207, 20, 43, 0.03) 100%);
  border: 1px solid var(--border);
}
.impact-block__commit-bar {
  display: flex;
  height: 3px;
}
.impact-block__commit-bar span { flex: 1; }
.impact-block__commit-bar span:nth-child(1) { background: var(--ve-yellow); }
.impact-block__commit-bar span:nth-child(2) { background: var(--ve-blue); }
.impact-block__commit-bar span:nth-child(3) { background: var(--ve-red); }
.impact-block__commit-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1rem 1.15rem;
}
.impact-block__commit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--ve-red);
  border: 2px solid rgba(0, 48, 135, 0.12);
}
.impact-block__commit-icon svg { width: 22px; height: 22px; }
.impact-block__commit-copy {
  flex: 1;
  min-width: 200px;
}
.impact-block__commit-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--ve-blue);
  margin-bottom: 0.25rem;
}
.impact-block__commit-copy p {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}
.impact-block__commit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
  padding-top: 0.15rem;
}
.impact-block__commit-tags li {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-muted);
}
.impact-block__commit-tags li:nth-child(1) { color: #9a7b00; border-color: rgba(255, 204, 0, 0.35); }
.impact-block__commit-tags li:nth-child(2) { color: var(--ve-blue); border-color: rgba(0, 48, 135, 0.2); }
.impact-block__commit-tags li:nth-child(3) { color: #007a42; border-color: rgba(0, 122, 66, 0.2); }
.impact-block__commit-tags li:nth-child(4) { color: var(--ve-red); border-color: rgba(207, 20, 43, 0.2); }

/* Galería emergencia */
.gallery-section { background: var(--ink); color: var(--white); overflow: hidden; }
.gallery-section .section__eyebrow { color: var(--ve-yellow-soft); }
.gallery-section .section__eyebrow::before { opacity: 0.9; }
.gallery-section .section__title { color: var(--white); }
.gallery-section__highlight { color: var(--ve-yellow); }
.gallery-section .section__desc { color: rgba(255,255,255,0.72); }
.gallery-section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.gallery-section__header .section__desc { margin-inline: auto; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #2a3144;
  display: flex;
  flex-direction: column;
}
.gallery__ve-border span {
  flex: 1;
  transition: flex-grow 0.4s var(--ease);
}
.gallery__ve-border span:nth-child(1) { background: var(--ve-yellow); }
.gallery__ve-border span:nth-child(2) { background: var(--ve-blue); }
.gallery__ve-border span:nth-child(3) { background: var(--ve-red); }
.gallery__item:hover .gallery__ve-border span:nth-child(1) { flex-grow: 1.2; }
.gallery__item:hover .gallery__ve-border span:nth-child(2) { flex-grow: 0.9; }
.gallery__item:hover .gallery__ve-border span:nth-child(3) { flex-grow: 1.2; }
.gallery__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery__ve-border {
  display: flex;
  height: 8px;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 4;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s var(--ease);
  filter: grayscale(10%) brightness(0.92);
}
.gallery__item:hover img {
  filter: grayscale(0%) brightness(1);
}
.gallery__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,34,53,0.88) 0%, transparent 55%);
  pointer-events: none;
}
.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.25rem 1.25rem;
}
.gallery__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.gallery__caption span {
  font-size: 0.78rem;
  opacity: 0.78;
  line-height: 1.45;
}

/* Apoyo — cards */
.support { background: var(--white); }
.support__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.support__header .section__desc { margin-inline: auto; }
.support__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.support-card {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  isolation: isolate;
}
.support-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ve-gradient);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.support-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ve-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
  z-index: 2;
}
.support-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.support-card:hover::before { opacity: 0.04; }
.support-card:hover::after { transform: scaleX(1); }
.support-card__shine {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 180deg, transparent, var(--ve-yellow-muted), transparent, var(--ve-blue-muted), transparent);
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 0;
  animation: none;
}
.support-card:hover .support-card__shine {
  opacity: 1;
  animation: cardSpin 3s linear infinite;
}
@keyframes cardSpin {
  to { transform: rotate(360deg); }
}
.support-card > * { position: relative; z-index: 1; }
.support-card__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), background var(--transition);
}
.support-card:hover .support-card__icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--ve-blue);
  color: var(--white);
}
.support-card__icon svg { width: 26px; height: 26px; transition: color var(--transition); }
.support-card:hover .support-card__icon svg { color: var(--white); }
.support-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  transition: background var(--transition), color var(--transition);
}
.support-card:nth-child(1) .support-card__tag { background: var(--ve-yellow-muted); color: #9a7b00; }
.support-card:nth-child(2) .support-card__tag { background: var(--ve-blue-muted); color: var(--ve-blue); }
.support-card:nth-child(3) .support-card__tag { background: rgba(0,150,80,0.1); color: #007a42; }
.support-card:nth-child(4) .support-card__tag { background: var(--ve-red-muted); color: var(--ve-red); }
.support-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.support-card__desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.support-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ve-blue);
  background: none;
  border: none;
  padding: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.support-card:hover .support-card__link {
  opacity: 1;
  transform: translateY(0);
}
.support-card__link svg { width: 16px; height: 16px; }

/* Pasos + CTA */
.steps-section {
  background:
    linear-gradient(165deg, rgba(0, 48, 135, 0.06) 0%, rgba(255, 204, 0, 0.05) 45%, rgba(207, 20, 43, 0.04) 100%),
    var(--surface-2);
}
.steps-section__header .section__eyebrow { color: var(--ve-blue); }
.steps-section__header .section__title { color: var(--ink); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.step {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.step:nth-child(1)::before { background: var(--ve-yellow); }
.step:nth-child(2)::before { background: var(--ve-blue); }
.step:nth-child(3)::before { background: var(--ve-red); }
.step__num {
  width: 44px; height: 44px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  border: none;
}
.step:nth-child(1) .step__num { background: var(--ve-yellow); color: var(--ink); }
.step:nth-child(2) .step__num { background: var(--ve-blue); }
.step:nth-child(3) .step__num { background: var(--ve-red); }
.step__title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; }
.step__desc { font-size: 0.875rem; color: var(--ink-muted); }
.steps-section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.steps-section__header .section__desc { margin-inline: auto; }

/* CTA compacto */
.cta-banner {
  position: relative;
  margin-top: 3rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2rem);
  background: var(--ve-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: var(--ve-gradient);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}
.cta-banner__text {
  flex: 1;
  min-width: min(100%, 480px);
  text-align: left;
}
.cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.cta-banner__text p {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.9;
  max-width: 52ch;
  margin: 0;
}
.cta-banner__thanks {
  display: block;
  margin-top: 0.65rem;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--ve-yellow);
}
.cta-banner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  background: var(--white);
  color: var(--ve-blue);
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.cta-banner__btn svg {
  width: 20px;
  height: 20px;
  color: var(--ve-red);
  flex-shrink: 0;
}
.cta-banner__btn:hover {
  background: var(--ve-yellow-soft);
  color: var(--ink);
}

/* Modal donar — paleta Venezuela */
.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.donate-modal.open {
  opacity: 1;
  visibility: visible;
}
.donate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 24, 70, 0.72);
}
.donate-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: min(90vh, 640px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.35), 0 0 0 4px rgba(0, 48, 135, 0.25), 0 0 0 6px rgba(207, 20, 43, 0.15);
}
.donate-modal__ve-top {
  height: 4px;
  flex-shrink: 0;
  background: var(--ve-bar);
}
.donate-modal__header {
  position: relative;
  flex-shrink: 0;
  padding: 1.35rem 1.5rem 1.15rem;
  background: linear-gradient(135deg, var(--ve-blue) 0%, #002060 100%);
  color: var(--white);
}
.donate-modal__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  padding-right: 2rem;
  margin: 0;
  color: var(--white);
}
.donate-modal__title .title-accent { color: #ff8a9a; }
.donate-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.donate-modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.donate-modal__body {
  overflow-y: auto;
  padding: 1.15rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}
.donate-modal__steps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}
.donate-modal__step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left-width: 3px;
}
.donate-modal__step--yellow { border-left-color: var(--ve-yellow); }
.donate-modal__step--blue { border-left-color: var(--ve-blue); }
.donate-modal__step--red { border-left-color: var(--ve-red); }
.donate-modal__step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  color: var(--white);
}
.donate-modal__step--yellow .donate-modal__step-num { background: var(--ve-yellow); color: var(--ink); }
.donate-modal__step--blue .donate-modal__step-num { background: var(--ve-blue); }
.donate-modal__step--red .donate-modal__step-num { background: var(--ve-red); }
.donate-modal__step strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  color: var(--ink);
}
.donate-modal__step p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.45;
  margin: 0;
}
.donate-modal__whatsapp {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.donate-modal__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ve-blue);
  margin-bottom: 0.6rem;
}
.donate-modal__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.donate-modal__contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.donate-modal__contact--blue {
  border-left: 3px solid var(--ve-blue);
}
.donate-modal__contact--red {
  border-left: 3px solid var(--ve-red);
}
.donate-modal__contact:hover {
  background: var(--surface-2);
}
.donate-modal__contact--blue:hover { border-color: var(--ve-blue); }
.donate-modal__contact--red:hover { border-color: var(--ve-red); }
.donate-modal__contact-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
  border-radius: 50%;
  flex-shrink: 0;
}
.donate-modal__contact-icon svg { width: 18px; height: 18px; }
.donate-modal__contact-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

/* Footer */
.footer {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background: #121a2e;
  color: rgba(255, 255, 255, 0.72);
}
.footer__stripe {
  display: flex;
  height: 4px;
}
.footer__stripe span { flex: 1; }
.footer__stripe span:nth-child(1) { background: var(--ve-yellow); }
.footer__stripe span:nth-child(2) { background: var(--ve-blue); }
.footer__stripe span:nth-child(3) { background: var(--ve-red); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.footer__brand { max-width: 340px; }
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo img {
  height: clamp(38px, 7vw, 48px);
  width: auto;
}
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1rem;
}
.footer__ve {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.footer__flag {
  display: inline-flex;
  width: 22px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.footer__flag span { flex: 1; }
.footer__flag span:nth-child(1) { background: var(--ve-yellow); }
.footer__flag span:nth-child(2) { background: var(--ve-blue); }
.footer__flag span:nth-child(3) { background: var(--ve-red); }
.footer__nav-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ve-yellow);
  margin-bottom: 0.85rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }
.footer__cta-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}
.footer__donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  background: var(--ve-blue);
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}
.footer__donate-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer__donate-btn:hover {
  background: var(--ve-blue-soft);
  transform: translateY(-1px);
}
.footer__bar {
  padding-block: 1rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__bar p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 34, 53, 0.9);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__inner {
  max-width: 900px;
  width: 100%;
  position: relative;
}
.lightbox__inner img {
  width: 100%;
  border-radius: var(--radius-lg);
  max-height: 75vh;
  object-fit: contain;
}
.lightbox__caption {
  text-align: center;
  color: var(--white);
  margin-top: 1rem;
  font-size: 0.9375rem;
}
.lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .impact-block__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .impact-block__commit-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: stretch; }
  .cta-banner__btn { width: 100%; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .nav__toggle { display: flex; }
  .header__inner:has(.nav.open) .header__logo {
    opacity: 0;
    pointer-events: none;
  }
  .header:has(.nav.open) .nav__toggle span {
    background: var(--white);
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 940;
    background: rgba(8, 14, 32, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 950;
    width: min(300px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 1.5rem 1.75rem;
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, var(--ve-blue) 0%, #002060 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.45s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav__head {
    display: flex;
    align-items: center;
    min-height: var(--header-h);
    padding-top: 4px;
    margin-bottom: 0.5rem;
    padding-right: 3rem;
  }
  .nav__logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }
  .nav__logo img {
    height: clamp(34px, 8vw, 42px);
    width: auto;
  }
  .nav__ve {
    display: flex;
    height: 4px;
    margin: 0 0 1.25rem;
    border-radius: 2px;
    overflow: hidden;
  }
  .nav__ve span { flex: 1; }
  .nav__ve span:nth-child(1) { background: var(--ve-yellow); }
  .nav__ve span:nth-child(2) { background: rgba(255, 255, 255, 0.35); }
  .nav__ve span:nth-child(3) { background: var(--ve-red); }
  .nav__link {
    padding: 0.9rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.06em;
  }
  .nav__link::after { display: none; }
  .nav__link:hover { color: var(--ve-yellow); }
  .header--hero:not(.scrolled) .nav__link,
  .header--hero.scrolled .nav__link {
    color: var(--white);
  }
  .header--hero:not(.scrolled) .nav__link:hover,
  .header--hero.scrolled .nav__link:hover {
    color: var(--ve-yellow);
  }
  .nav .nav__donate {
    display: inline-flex;
    margin-top: auto;
    width: 100%;
    padding: 0.95rem 1.25rem;
    background: var(--white);
    color: var(--ve-blue);
    font-size: 0.9375rem;
    font-weight: 800;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  .nav__donate:hover {
    background: var(--ve-yellow);
    color: var(--ink);
  }
  .nav__donate svg { color: #128c7e; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero__content { max-width: 100%; }
  .hero__bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 14, 32, 0.72) 0%,
      rgba(8, 14, 32, 0.45) 55%,
      rgba(8, 14, 32, 0.2) 100%
    );
  }
  .donate-float__btn {
    min-width: 68px;
    padding: 9px 12px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
  }
  .footer__ve { justify-content: center; }
  .footer__cta {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .impact-block__stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__nav { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
