    /* =========================================================
       0. SECCI\u00d3N DE DONACI\u00d3N
    ========================================================= */
    .donation-section {
      background:
        linear-gradient(rgba(245,249,255,0.96), rgba(245,249,255,0.96)),
        url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=1800&q=60') center/cover no-repeat;
    }

    .donation-grid {
      display: grid;
      grid-template-columns: 30fr 70fr;
      gap: 52px;
      align-items: center;
    }

    /* Left column \u2013 image card */
    .donation-visual {
      position: relative;
    }

    .donation-img-card {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 24px 50px rgba(11, 61, 145, 0.15);
    }

    .donation-img-card img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
      animation: imgFloat 6s ease-in-out infinite;
      transform-origin: center center;
    }

    @keyframes imgFloat {
      0%,  100% { transform: scale(1)    translateY(0px); }
      50%        { transform: scale(1.04) translateY(-6px); }
    }

    .donation-badge {
      position: absolute;
      bottom: 20px;
      left: 16px;
      right: 16px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-radius: 14px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--blue-900);
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

    .donation-badge i {
      color: #e63946;
      font-size: 1.2rem;
      animation: heartbeat 1.4s ease-in-out infinite;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(1); }
      14%       { transform: scale(1.3); }
      28%       { transform: scale(1); }
      42%       { transform: scale(1.2); }
    }

    /* Right column \u2013 content */
    .donation-content h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      color: var(--blue-900);
      line-height: 1.15;
      margin: 14px 0 18px;
    }

    .donation-lead {
      color: var(--gray-700);
      font-size: 1.05rem;
      line-height: 1.65;
      margin-bottom: 28px;
    }

    /* Progress bar */
    .donation-progress-wrap {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 18px;
      padding: 20px 22px;
      margin-bottom: 24px;
      box-shadow: 0 6px 20px rgba(11,61,145,0.05);
    }

    .donation-progress-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
      color: var(--gray-700);
      margin-bottom: 10px;
    }

    .donation-progress-labels strong {
      color: var(--blue-900);
    }

    .donation-bar {
      width: 100%;
      height: 10px;
      background: var(--gray-200);
      border-radius: 999px;
      overflow: hidden;
    }

    .donation-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #1d67c1, #5ba3f5);
      border-radius: 999px;
      transition: width 1.2s ease;
    }

    .donation-note {
      font-size: 0.8rem;
      color: var(--gray-500);
      margin-top: 8px;
    }

    /* Mini impact items */
    .donation-impacts {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .impact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 0.88rem;
      color: var(--gray-700);
      box-shadow: 0 2px 8px rgba(11,61,145,0.04);
    }

    .impact-item i {
      color: var(--blue-700);
      font-size: 0.95rem;
    }

    /* Donation CTA */
    .donation-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-donate {
      background: #2a9d8f !important;
      box-shadow: 0 4px 14px rgba(42, 157, 143, 0.18) !important;
      height: 50px;
      padding: 0 28px;
      font-size: 0.97rem;
      gap: 10px;
      color: var(--white);
      border-radius: 12px !important;
    }

    .btn-donate:hover {
      background: #21867a !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(42, 157, 143, 0.25) !important;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 50px;
      padding: 0 26px;
      border-radius: 12px;
      font-size: 0.97rem;
      font-weight: 700;
      border: 1.5px solid var(--blue-900);
      color: var(--blue-900);
      background: transparent;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn-secondary:hover {
      background: var(--blue-900);
      color: var(--white);
      transform: translateY(-2px);
    }

    @media (max-width: 860px) {
      .donation-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .donation-img-card img {
        height: 280px;
        animation: none; /* disable float on mobile for perf */
      }
    }

    /* =========================================================
       7. BLOQUE DIVIDIDO / PANELES
    ========================================================= */
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .panel {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 34px;
      border: 1px solid var(--gray-200);
      box-shadow: 0 16px 36px rgba(11, 61, 145, 0.05);
    }

    .panel h3 {
      font-size: 1.7rem;
      color: var(--blue-900);
      margin-bottom: 14px;
    }

    .panel p {
      color: var(--gray-700);
      margin-bottom: 22px;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 12px;
      align-items: start;
      color: var(--gray-700);
      font-weight: 500;
    }

    .check-list li::before {
      content: '✓';
      display: grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--blue-100);
      color: var(--blue-900);
      font-size: 0.95rem;
      font-weight: 800;
      margin-top: 1px;
    }

    .timeline {
      display: grid;
      gap: 16px;
      margin-top: 18px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 16px;
      align-items: start;
      padding: 18px;
      border-radius: 18px;
      background: var(--blue-050);
      border: 1px solid rgba(11, 61, 145, 0.08);
    }

    .timeline-number {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
      color: white;
      font-weight: 800;
      font-size: 1.1rem;
    }

    .timeline-item h4 {
      color: var(--blue-900);
      margin-bottom: 6px;
      font-size: 1.08rem;
    }

    /* =========================================================
       8. CARRUSEL DE PROGRAMAS (marquee infinito)
    ========================================================= */

    /* Wrapper: clips the overflow so cards scroll out of view */
    .programs-carousel {
      overflow: hidden;
      width: 100%;
      padding: 16px 0 32px;
      /* Fade edges for a premium look */
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    /* Track: double-wide so the clone creates a seamless loop */
    .programs-track {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: marqueeScroll 36s linear infinite;
    }

    /* Pause on hover */
    .programs-track.paused {
      animation-play-state: paused;
    }

    @keyframes marqueeScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Individual card */
    .program-card {
      flex: 0 0 300px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 14px 28px rgba(11, 61, 145, 0.06);
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .program-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 44px rgba(11, 61, 145, 0.13);
    }

    /* Icon circle */
    .program-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--blue-100), #d6eaff);
      color: var(--blue-900);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 6px;
      flex-shrink: 0;
      transition: background 0.3s ease;
    }

    .program-card:hover .program-icon {
      background: linear-gradient(135deg, var(--blue-900), #1d67c1);
      color: var(--white);
    }

    .program-card h3 {
      color: var(--blue-900);
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.3;
      margin: 0;
    }

    .program-card p {
      color: var(--gray-700);
      font-size: 0.92rem;
      line-height: 1.55;
      flex: 1;
      margin: 0;
    }

    /* Ver más button */
    .btn-card {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--blue-050);
      color: var(--blue-900);
      font-size: 0.88rem;
      font-weight: 700;
      border: 1.5px solid rgba(11, 61, 145, 0.12);
      transition: all 0.25s ease;
      align-self: flex-start;
    }

    .btn-card:hover {
      background: var(--blue-900);
      color: var(--white);
      border-color: var(--blue-900);
      gap: 12px;
    }

    .mini-label {
      display: inline-flex;
      padding: 5px 10px;
      border-radius: 999px;
      background: var(--blue-100);
      color: var(--blue-900);
      font-size: 0.75rem;
      font-weight: 700;
      align-self: flex-start;
    }

    /* =========================================================
       9. TARJETAS DE VALORES
    ========================================================= */
    .values-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .value-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 22px;
      padding: 26px;
      text-align: left;
    }

    /* =========================================================
       10. CTA PRINCIPAL
    ========================================================= */
    .cta {
      background: linear-gradient(135deg, var(--blue-900), #0d57b7);
      color: var(--white);
      border-radius: 34px;
      padding: 42px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      align-items: center;
      box-shadow: 0 28px 60px rgba(11, 61, 145, 0.2);
    }

    .cta h2 {
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.08;
      margin-bottom: 14px;
    }

    .cta p {
      color: rgba(255,255,255,0.88);
      max-width: 700px;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      max-width: 260px;
      margin-left: auto;
    }

    /* CTA section – full background image, no overlay */
    .cta-section {
      background:
        url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
      padding: 0;
    }

    .cta-section .container {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .btn-light {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 50px;
      width: auto;
      padding: 0 26px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.97rem;
      background: var(--white);
      color: var(--blue-900);
      border: none;
      transition: background 0.25s ease, transform 0.25s ease;
      text-align: center;
    }

    .btn-light:hover {
      background: var(--blue-100);
      transform: translateY(-2px);
    }

    .btn-ghost-light {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 50px;
      width: auto;
      padding: 0 26px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.97rem;
      border: 1.5px solid rgba(255,255,255,0.55);
      color: var(--white);
      background: rgba(255,255,255,0.08);
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
      text-align: center;
    }

    .btn-ghost-light:hover {
      background: rgba(255,255,255,0.18);
      border-color: var(--white);
      transform: translateY(-2px);
    }

    /* =========================================================
       11. SECCIÓN DE VOLUNTARIADO
    ========================================================= */
.volunteer-section {
  background: linear-gradient(180deg, var(--white) 0%, #fffaf5 100%);
  padding: 100px 0;
}

.section-head--centered {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head--centered p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.volunteer-section .eyebrow {
  display: inline-flex;
  margin: 0 auto;
  color: var(--blue-900);
  background: var(--blue-100);
}

.volunteer-video-wrapper {
  max-width: 900px;
  margin: 28px auto 30px;
  width: 100%;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
      margin-top: 50px;
    }

    .volunteer-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 20px;
      padding: 30px 24px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .volunteer-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(11, 61, 145, 0.12);
      border-color: rgba(11, 61, 145, 0.2);
    }

    .volunteer-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: var(--blue-100);
      color: var(--blue-700);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin: 0 auto 16px;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .volunteer-card:hover .volunteer-icon {
      background: var(--blue-900);
      color: var(--white);
    }

    .volunteer-card h3 {
      font-size: 1.15rem;
      color: var(--blue-900);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .volunteer-card p {
      color: var(--gray-700);
      font-size: 0.92rem;
      line-height: 1.6;
      margin: 0;
    }

    .volunteer-benefits {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin: 40px 0;
    }

    .benefit-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      color: var(--gray-800);
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }

    .benefit-chip i {
      color: var(--blue-700);
    }

    .volunteer-cta {
      text-align: center;
      margin-top: 20px;
    }

    .btn-volunteer {
      background: var(--blue-900) !important;
      box-shadow: none !important;
      height: 54px;
      padding: 0 32px;
      font-size: 1.05rem;
      gap: 12px;
      color: var(--white);
      border-radius: 12px !important;
    }

    .btn-volunteer:hover {
      background: #082d6b !important;
      transform: translateY(-2px);
      box-shadow: none !important;
    }

    .volunteer-note {
      font-size: 0.85rem;
      color: var(--gray-500);
      margin-top: 14px;
    }

    @media (max-width: 1024px) {
      .volunteer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .volunteer-grid {
        grid-template-columns: 1fr;
      }
    }

    .volunteer-form-page {
      background: #f8fafc;
      padding: 92px 0 110px;
    }

    .volunteer-form-page__hero {
      max-width: 820px;
      margin: 0 auto 36px;
      text-align: center;
    }

    .volunteer-form-page__hero h1 {
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 1.06;
      color: var(--blue-900);
      margin: 14px 0 16px;
    }

    .volunteer-form-page__hero p {
      color: var(--gray-700);
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 auto;
      max-width: 720px;
    }

    .volunteer-form-layout {
      display: grid;
      grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .volunteer-form-side {
      display: grid;
      gap: 18px;
    }

    .volunteer-form-side__card,
    .volunteer-form-card,
    .volunteer-form-success,
    .volunteer-form-alert {
      background: var(--white);
      border: 1px solid #e9eef5;
      border-radius: 10px;
      box-shadow: none;
    }

    .volunteer-form-side__card {
      padding: 28px 24px;
    }

    .volunteer-form-side__card h2,
    .volunteer-form-side__card h3 {
      color: var(--blue-900);
      margin-bottom: 14px;
    }

    .volunteer-form-side__card h2 {
      font-size: 1.35rem;
    }

    .volunteer-form-side__card h3 {
      font-size: 1.08rem;
    }

    .volunteer-form-side__card--soft {
      background: var(--white);
    }

    .volunteer-form-checklist {
      list-style: none;
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
    }

    .volunteer-form-checklist li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      color: var(--gray-700);
      line-height: 1.6;
    }

    .volunteer-form-checklist li::before {
      content: '\2713';
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: var(--blue-100);
      color: var(--blue-900);
      font-size: 0.85rem;
      font-weight: 800;
      margin-top: 2px;
    }

    .volunteer-form-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .volunteer-form-tags span {
      display: inline-flex;
      padding: 9px 14px;
      border-radius: 999px;
      background: #f4f7fb;
      color: #35506f;
      font-size: 0.88rem;
      font-weight: 700;
    }

    .volunteer-form-shell {
      display: grid;
      gap: 18px;
    }

    .volunteer-form-card {
      padding: 30px;
    }

    .volunteer-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .volunteer-form-field {
      display: grid;
      gap: 8px;
      margin-top: 18px;
    }

    .volunteer-form-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .volunteer-form-field.is-hidden {
      display: none !important;
    }

    .volunteer-form-field--full {
      grid-column: 1 / -1;
    }

    .volunteer-form-field span,
    .volunteer-form-radios legend {
      color: var(--blue-900);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .volunteer-form-field input,
    .volunteer-form-field select,
    .volunteer-form-field textarea {
      width: 100%;
      border: 1px solid #dde5ee;
      border-radius: 8px;
      background: #ffffff;
      color: var(--blue-900);
      padding: 14px 16px;
      font: inherit;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .volunteer-form-field textarea {
      min-height: 138px;
      resize: vertical;
      line-height: 1.6;
    }

    .volunteer-form-field input:focus,
    .volunteer-form-field select:focus,
    .volunteer-form-field textarea:focus {
      outline: none;
      border-color: rgba(29, 103, 193, 0.28);
      box-shadow: 0 0 0 3px rgba(29, 103, 193, 0.08);
      background: var(--white);
    }

    .volunteer-form-radios {
      margin-top: 24px;
      border: 0;
      padding: 0;
    }

    .volunteer-form-radios__list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 12px;
    }

    .volunteer-form-radio {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 140px;
      padding: 12px 16px;
      border-radius: 8px;
      border: 1px solid #dde5ee;
      background: #ffffff;
      color: #44556c;
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .volunteer-form-radio input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }

    .volunteer-form-radio:has(input:checked) {
      border-color: rgba(29, 103, 193, 0.26);
      background: #f5f9ff;
      transform: none;
    }

    .volunteer-form-check {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 22px;
      color: var(--gray-700);
      line-height: 1.6;
    }

    .volunteer-form-check input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--blue-900);
      flex: 0 0 auto;
    }

    .volunteer-form-actions {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      margin-top: 26px;
      flex-wrap: wrap;
    }

    .volunteer-form-help {
      display: block;
      color: var(--gray-700);
      font-size: 0.82rem;
      line-height: 1.5;
      margin-top: 2px;
    }

    .volunteer-form-turnstile {
      margin-top: 18px;
    }

    .volunteer-file-field {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #dde5ee;
      border-radius: 8px;
      background: #ffffff;
      cursor: pointer;
    }

    .volunteer-file-field input[type="file"] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
      width: 1px;
      height: 1px;
    }

    .volunteer-file-field__button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 14px;
      border: 1px solid #cfd9e6;
      border-radius: 8px;
      background: #f7f9fc;
      color: var(--blue-900);
      font-weight: 700;
      white-space: nowrap;
    }

    .volunteer-file-field__name {
      color: #52657d;
      font-size: 0.95rem;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .volunteer-form-alert {
      padding: 18px 20px;
      border-color: #f1d6d6;
      background: #fffafa;
    }

    .volunteer-form-alert strong {
      display: block;
      color: #b91c1c;
      margin-bottom: 10px;
    }

    .volunteer-form-alert ul {
      margin: 0;
      padding-left: 18px;
      color: #7f1d1d;
      line-height: 1.6;
    }

    .volunteer-form-success {
      padding: 44px 32px;
      text-align: center;
    }

    .volunteer-form-success__icon {
      width: 74px;
      height: 74px;
      border-radius: 14px;
      margin: 0 auto 18px;
      display: grid;
      place-items: center;
      background: #1d67c1;
      color: var(--white);
      font-size: 1.7rem;
      box-shadow: 0 8px 18px rgba(29, 103, 193, 0.18);
    }

    .volunteer-form-success h2 {
      color: var(--blue-900);
      margin-bottom: 12px;
    }

    .volunteer-form-success p {
      color: var(--gray-700);
      max-width: 620px;
      margin: 0 auto 22px;
      line-height: 1.7;
    }

    @media (max-width: 980px) {
      .volunteer-form-layout {
        grid-template-columns: 1fr;
      }

      .volunteer-form-side {
        order: 2;
      }
    }

    @media (max-width: 720px) {
      .volunteer-form-page {
        padding: 72px 0 88px;
      }

      .volunteer-form-card,
      .volunteer-form-success,
      .volunteer-form-side__card,
      .volunteer-form-alert {
        border-radius: 8px;
      }

      .volunteer-form-card {
        padding: 22px 18px;
      }

      .volunteer-form-grid {
        grid-template-columns: 1fr;
      }

      .volunteer-form-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .volunteer-form-actions .btn-secondary,
      .volunteer-form-actions .btn-volunteer {
        width: 100%;
      }

      .volunteer-file-field {
        flex-direction: column;
        align-items: stretch;
      }

      .volunteer-file-field__name {
        white-space: normal;
      }
    }


    /* =========================================================
       12. SECCIÓN DE CONTACTO
    ========================================================= */
    .contact-section {
      position: relative;
      background: linear-gradient(180deg, var(--white) 0%, var(--blue-050) 100%);
    }

    .contact-news {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin: 0 0 34px;
    }

    .contact-news-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(11, 61, 145, 0.06);
    }

    .contact-news-media {
      position: relative;
      height: 220px;
      overflow: hidden;
    }

    .contact-news-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .contact-news-body {
      padding: 24px 24px 26px;
    }

    .contact-news-tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 16px;
      background: var(--blue-100);
      color: var(--blue-900);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .contact-news-card h3 {
      color: var(--blue-900);
      font-size: 1.14rem;
      line-height: 1.35;
      margin-bottom: 12px;
    }

    .contact-news-card p {
      color: var(--gray-700);
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .contact-news-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--blue-900);
      font-weight: 700;
      font-size: 0.92rem;
    }

    .contact-news-link::after {
      content: "→";
      transition: transform 0.2s ease;
    }

    .contact-news-link:hover::after {
      transform: translateX(3px);
    }

    .contact-news-actions {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 22px;
    }

    .contact-card {
      background: var(--white);
      border-radius: 22px;
      padding: 28px;
      border: 1px solid var(--gray-200);
      box-shadow: 0 10px 26px rgba(11, 61, 145, 0.05);
    }

    .contact-card h3 {
      color: var(--blue-900);
      margin: 18px 0 10px;
    }

    .contact-card p + p {
      margin-top: 10px;
    }

    .contact-card a {
      color: var(--blue-800);
      font-weight: 700;
      word-break: break-word;
    }

    /* =========================================================
       12. FOOTER
    ========================================================= */
    footer {
      padding-top: 40px;
      background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 32%),
        linear-gradient(180deg, #0b3d91 0%, #0a347b 100%);
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(0, 0.85fr));
      gap: 38px;
      align-items: start;
      padding-bottom: 34px;
      color: rgba(255,255,255,0.84);
      font-size: 0.95rem;
    }

    .footer-brand {
      display: block;
    }

    .footer-logo-link {
      display: inline-flex;
      float: left;
      margin: 0 16px 8px 0;
      width: fit-content;
    }

    .footer-logo {
      width: min(110px, 100%);
      height: auto;
    }

    .footer-brand p {
      max-width: 420px;
      line-height: 1.7;
      margin: 0;
      font-size: 0.95rem;
    }

    .footer-nav,
    .footer-contact {
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .footer-nav h3,
    .footer-contact h3 {
      color: var(--white);
      font-size: 0.82rem;
      margin: 0;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a,
    .footer-links span {
      color: rgba(255,255,255,0.88);
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-links span {
      line-height: 1.55;
    }

    .footer-links a:hover {
      color: var(--white);
      transform: translateX(3px);
    }

    .footer-contact-card {
      display: grid;
      gap: 12px;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(8px);
    }

    .footer-contact-card p {
      margin: 0;
      line-height: 1.55;
      color: rgba(255,255,255,0.84);
    }

    .footer-contact-card strong {
      color: var(--white);
    }

    .footer-contact-card a {
      color: rgba(255,255,255,0.94);
      font-weight: 600;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      clear: both;
      margin-top: 18px;
    }

    .footer-social a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .footer-social a:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.16);
      border-color: rgba(255,255,255,0.24);
    }

    .footer-bar {
      background: #07285f;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-bar-wrap {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: rgba(255,255,255,0.74);
      font-size: 0.86rem;
    }

    .footer-bar-wrap a {
      color: rgba(255,255,255,0.92);
      font-weight: 600;
    }

    /* =========================================================
       13. ANIMACIONES
    ========================================================= */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* =========================================================
       14. RESPONSIVE TABLET
    ========================================================= */
    @media (max-width: 1100px) {
      .hero-grid,
      .split-section,
      .cta,
      .contact-news,
      .contact-grid,
      .stats-grid,
      .cards-grid,
      .programs-grid,
      .values-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-photo {
        min-height: 380px;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
      }
    }

    /* =========================================================
       15. RESPONSIVE MÓVIL
    ========================================================= */
        @media (max-width: 860px) {
      .menu {
        display: none !important;
      }
      
      .nav-actions {
        display: none !important;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }
      
      .mobile-menu ul .has-dropdown > a::after {
        content: ' \25BC'; /* Down arrow */
        font-size: 0.7em;
        float: right;
        margin-top: 5px;
      }
      
      .mobile-menu .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 5px 0 5px 15px;
        background: transparent;
        transform: none;
        opacity: 1;
        visibility: visible;
      }
      
      .mobile-menu .has-dropdown.open .dropdown {
        display: flex;
      }
      
      .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(11, 61, 145, 0.1);
      }
      
      .mobile-nav-actions .btn, .mobile-nav-actions .btn-outline {
        width: 100%;
        height: 48px;
        line-height: 44px; /* Centrado correcto vertical */
        padding: 0 24px;
        font-size: 0.96rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      
      .mobile-nav-actions .btn {
        background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
        color: var(--white) !important;
        border: none;
      }

      .mobile-nav-actions .btn-outline {
        background: rgba(255, 255, 255, 0.6);
        color: var(--blue-900) !important;
        border: 1.5px solid rgba(11, 61, 145, 0.15);
      }

      .hero-grid,
      .split-section,
      .cta,
      .contact-news,
      .contact-grid,
      .stats-grid,
      .cards-grid,
      .programs-grid,
      .values-grid,
      .hero-trust {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 78px 0;
      }

      .hero {
        padding-top: 42px;
      }

      .hero-copy h1 {
        font-size: clamp(2.4rem, 11vw, 4rem);
      }

      .hero-photo {
        min-height: 320px;
      }

      .cta {
        padding: 30px;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .footer-brand {
        text-align: left;
      }

      .footer-logo-link {
        float: left;
        margin: 0 14px 8px 0;
      }

      .footer-brand p {
        max-width: 520px;
      }

      .footer-nav,
      .footer-contact {
        justify-items: center;
        text-align: center;
      }

      .footer-contact-card {
        width: 100%;
        max-width: 520px;
      }

      .footer-social {
        justify-content: center;
      }

      .footer-bar-wrap {
        min-height: auto;
        padding: 14px 0;
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .footer-brand {
        text-align: center;
      }

      .footer-logo-link {
        float: none;
        margin: 0 auto 14px;
      }
    }

    @media (min-width: 861px) {
      .mobile-menu {
        display: none !important;
      }
    }

/* =========================================================
   19. SLIDER DE IMÃGENES FULL WIDTH
========================================================= */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.slider-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 500px;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 43, 110, 0.85) 0%, rgba(8, 43, 110, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--white);
  max-width: 540px;
  padding: 0 5%;
}

.slide-content .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slide-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 28px;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.slide-actions .btn {
  background: var(--white);
  color: var(--blue-900);
  height: 48px;
  line-height: 46px;
  padding: 0 24px;
  font-size: 0.96rem;
}

.slide-actions .btn:hover {
  background: var(--blue-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.slide-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(0,0,0,0.2);
  height: 48px;
  line-height: 46px;
  padding: 0 24px;
  font-size: 0.96rem;
}

.slide-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.fade {
  animation-name: fadeAnim;
  animation-duration: 1.8s;
}

@keyframes fadeAnim {
  from {opacity: .4}
  to {opacity: 1}
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpAnim 0.8s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

.slide.active .fade-up {
  animation-play-state: running;
}

.slide:not(.active) .fade-up {
  animation: none;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-prev, .slider-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 20px;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  z-index: 10;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-prev:hover, .slider-next:hover {
  background: var(--white);
  color: var(--blue-900);
  transform: translateY(-50%) scale(1.1);
}

.slider-indicators {
  position: absolute;
  bottom: 24px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.indicator {
  cursor: pointer;
  height: 6px;
  width: 32px;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.4);
  border-radius: 999px;
  display: inline-block;
  transition: all 0.3s ease;
}

.indicator.active, .indicator:hover {
  background-color: var(--white);
  width: 48px;
}

@media (max-width: 860px) {
  .slider-wrapper {
    height: 60vh;
    min-height: 480px;
  }
  
  .slide::after {
    background: linear-gradient(0deg, rgba(8, 43, 110, 0.9) 0%, rgba(8, 43, 110, 0.3) 100%);
  }

  .slide-content {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 50px;
    transform: none;
    max-width: none;
    padding: 0;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }

  .slider-prev, .slider-next {
    display: none;
  }
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1200;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(7, 40, 95, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(7, 40, 95, 0.24);
}

.floating-btn--whatsapp {
  background: #25d366;
  color: var(--white);
}

.floating-btn--top {
  background: var(--white);
  color: var(--blue-900);
}

@media (max-width: 860px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
  }
}

.contact-news-link::after {
  content: "->" !important;
}

.contact-news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(11, 61, 145, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-news-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-800) 100%);
  box-shadow: 0 14px 28px rgba(11, 61, 145, 0.24);
}

.mission-section {
  background:
    linear-gradient(rgba(245,249,255,0.94), rgba(245,249,255,0.94)),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.mission-dedication {
  margin-top: 12px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.01em;
  color: rgba(66, 82, 107, 0.9);
}

.mission-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(11, 61, 145, 0.10);
  border-radius: 24px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 18px 34px rgba(11, 61, 145, 0.06);
}

.mission-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--blue-100);
  color: var(--blue-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin: 0 auto 18px;
}

.mission-card h3 {
  color: var(--blue-900);
  font-size: 1.16rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.mission-card p {
  color: var(--gray-700);
  line-height: 1.65;
}

.mission-highlight {
  margin-top: 34px;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 18px 40px rgba(11, 61, 145, 0.16);
}

.mission-highlight p {
  max-width: 720px;
  line-height: 1.65;
  margin: 0;
}

.mission-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 220px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--white) !important;
  color: var(--blue-900) !important;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mission-btn:hover {
  transform: translateY(-2px);
  background: var(--blue-100) !important;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14) !important;
}

@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-highlight {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}
