﻿:root {
  --bg: #f5f5ff;
  --surface: #dcebff;
  --surface-soft: #e8f1ff;
  --text: #0f172a;
  --muted: #363967;
  --line: rgba(30, 58, 138, 0.18);
  --blue: #222c79;
  --blue-dark: #cbccf0;
  --gold: #cd5514;
  --green: #186424;
  --orange: #ff8c00;
  --shadow: 0 18px 44px rgba(30, 64, 175, 0.14);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(37, 99, 235, 0.1), transparent 14%),
    radial-gradient(circle at 88% 28%, rgba(0, 0, 0, 0.05), transparent 10%),
    linear-gradient(180deg, #edf4ff 0%, var(--bg) 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.6rem 0;
}

.section-tight {
  padding-top: 2.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 244, 255, 0.92);
  border-bottom: 1px solid rgba(29, 78, 216, 0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  color: #102544;
}

.brand-logo {
  width: 132px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}


.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.9rem;
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-blue {
  background: var(--blue);
  color: #fff;
}

.button-gold {
  background: var(--gold);
  color: #3b2800;
}

.button-green {
  background: var(--green);
  color: #fff;
}

.button-orange {
  background: var(--orange);
  color: #000000;
}

.button-outline {
  border-color: rgba(255, 253, 248, 0.75);
  color: #fffdf8;
}

.button-whatsapp {
  background: var(--green);
  color: #fff;
}

.volunteer-link {
  margin: 1.25rem 0 0.9rem;
}

.button-full {
  width: 100%;
}

.nav-pill {
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(30, 64, 175, 0.2);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.nav-green {
  background: #53b45b;
}

.nav-blue {
  background: #2d95d7;
}

.nav-pink {
  background: #ef4ca2;
}

.nav-red {
  background: #e85d63;
}

.nav-orange {
  background: #eea63b;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero-band {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
  background: linear-gradient(90deg, rgba(15, 42, 90, 0.92) 40%, rgba(30, 64, 175, 0.72) 100%);
  border-bottom: 1px solid rgba(96, 165, 250, 0.22);
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 42%),
    radial-gradient(circle at 82% 75%, rgba(0, 0, 0, 0.16), transparent 48%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.08) 0 2px,
      rgba(255, 255, 255, 0) 2px 12px
    );
  opacity: 0.35;
  pointer-events: none;
}

.hero-band > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 2.4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #93c5fd;
  color: #0f2d57;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-copy {
  color: #fff;
}

.hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.volunteer-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.volunteer-proof-item {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.volunteer-proof-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 0.98rem;
}

.volunteer-proof-item span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.volunteer-hero .hero-copy h1 {
  max-width: 18ch;
}

.volunteer-hero .hero-actions .button-gold {
  box-shadow: 0 12px 28px rgba(250, 204, 21, 0.32);
}

.volunteer-hero .hero-actions .button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.volunteer-section .section-heading p,
.volunteer-benefits-section .section-heading p,
.volunteer-process-section .section-heading p {
  color: #334155;
}

.hero-photo-card {
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;

  aspect-ratio: 5 / 6;
  max-width: 500px;
}

.hero-photo-card svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-story-section {
  padding-bottom: 2.2rem;
}

.about-story-shell {
  max-width: 920px;
}

.about-story-copy {
  background: var(--surface);
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: var(--shadow);
}

.about-story-copy {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.about-story-copy h2 {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--blue);
}

.about-story-copy p {
  margin: 0 0 1rem;
  max-width: 65ch;
  color: var(--muted);
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.12), transparent 14%),
    radial-gradient(circle at 88% 22%, rgba(59, 130, 246, 0.1), transparent 12%),
    linear-gradient(180deg, #edf4ff 0%, #e6f0ff 100%);
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 64vh;
  padding: 0;
  display: grid;
  align-items: end;
}

.about-hero-media,
.about-hero-overlay {
  position: absolute;
  inset: 0;
}

.about-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.about-hero-overlay {
  background:
    linear-gradient(180deg, rgba(20, 16, 14, 0.18) 0%, rgba(20, 16, 14, 0.5) 58%, rgba(20, 16, 14, 0.7) 100%),
    linear-gradient(90deg, rgba(20, 16, 14, 0.45) 0%, rgba(20, 16, 14, 0.18) 50%, rgba(20, 16, 14, 0.45) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5.2rem 0 3.4rem;
}

.about-hero-copy {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-copy h1 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
}

.about-hero-copy .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.about-hero-copy .hero-text {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.86);
}

.about-hero-copy .hero-actions {
  justify-content: center;
}

.about-value-item,
.about-number-card {
  background: var(--surface);
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: var(--shadow);
}

.about-values-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-value-item {
  padding: 1.2rem;
  border-radius: 18px;
}

.about-value-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.about-value-item p {
  margin: 0;
  color: var(--muted);
}

.about-numbers-section {
  padding-top: 0;
}

.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-number-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.about-number-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.about-number-card span {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

.raimunda-section {
  padding-top: 1rem;
}

.raimunda-shell {
  display: grid;
  gap: 2rem;
}

.raimunda-story {
  display: grid;
  grid-template-columns:  minmax(260px, 0.85fr) minmax(0, 1.35fr);
  gap: 1.75rem;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: var(--shadow);
}

.raimunda-story-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.raimunda-story-copy p:last-child {
  margin-bottom: 0;
}

.raimunda-story-media {
  width: 100%;
}

.raimunda-story-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 6px);
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

.raimunda-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.raimunda-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: var(--shadow);
}

.raimunda-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.raimunda-card p {
  margin: 0;
  color: var(--muted);
}

.cards-grid,
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(240px, 320px));
  justify-content: center;
}

.info-card,
.testimonial-card,
.faq-item,
.contact-form,
.impact-art {
  background: var(--surface);
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.info-card h3,
.testimonial-card strong,
.step-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.info-card p,
.impact-copy p,
.step-item p,
.testimonial-card p,
.testimonial-card span,
.faq-answer p,
.contact-copy p,
.contact-meta span,
.footer-brand p,
.footer-copy,
.footer-links a {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  font-size: 1.65rem;
  font-weight: 800;
}

.card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.icon-blue {
  background: #dbeafe;
  color: var(--blue-dark);
}

.icon-gold {
  background: #bfdbfe;
  color: #1e3a8a;
}

.icon-orange {
  background: #cfe3ff;
  color: #1e40af;
}

.icon-indigo {
  background: #dbeafe;
  color: #1d4ed8;
}

.impact-section {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.04));
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
}

.impact-art {
  width: 100%;
  aspect-ratio: 5 / 6;
  max-height: 420px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.impact-art svg,
.impact-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.impact-copy h2,
.section-heading h2,
.contact-form h2,
.contact-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.impact-copy h2 {
  color: var(--blue);
}

.impact-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.impact-stats strong {
  display: block;
  color: #1e3a8a;
  font-size: 2rem;
  line-height: 1;
}

.impact-stats span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6f7178;
}

.section-heading.center {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  position: relative;
}

.steps-line::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: #bfdbfe;
}

.step-item {
  position: relative;
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fffdf8;
  font-weight: 700;
}

.step-blue {
  border: 2px solid #1e3a8a;
  color: #1e3a8a;
}

.step-amber {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.step-red {
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
}

.step-green {
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
}

.steps-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.instagram-section {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.03));
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.instagram-card {
  background: var(--surface);
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.instagram-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.instagram-cta {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

.avatar-one {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.avatar-two {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.avatar-three {
  background: linear-gradient(135deg, #0f4aa3, #60a5fa);
}

.faq-section {
  background: rgba(37, 99, 235, 0.08);
}

.faq-shell {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.05rem 1.2rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  color: #72757c;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 1.2rem 1rem;
}

.volunteer-home-cta {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.volunteer-home-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.6rem;
  align-items: center;
  padding: 1.8rem;
  min-height: 300px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(29, 78, 216, 0.14);
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  box-shadow: var(--shadow);
}

.volunteer-home-cta-copy {
  display: grid;
  gap: 0.9rem;
}

.volunteer-home-cta-shell h2 {
  margin: 0;
  color: #1e3a8a;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.08;
}

.volunteer-home-cta-shell p {
  margin: 0;
  color: #475569;
}

.volunteer-home-cta-media {
  border-radius: 20px;
  overflow: hidden;
  min-height: 230px;
  box-shadow: 0 14px 30px rgba(30, 58, 138, 0.2);
}

.volunteer-home-cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-section {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-form {
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background: #eaf2ff;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid #bfd8ff;
  border-radius: 10px;
  background: #fffdf8;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-meta strong {
  display: block;
  margin-bottom: 0.35rem;
}

.volunteers-page {
  background:
    radial-gradient(circle at 18% 14%, rgba(37, 99, 235, 0.12), transparent 14%),
    radial-gradient(circle at 84% 18%, rgba(14, 165, 233, 0.1), transparent 12%),
    linear-gradient(180deg, #edf4ff 0%, #e6f0ff 100%);
}

.volunteer-hero {
  padding-bottom: 4.8rem;
}

.volunteer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.volunteer-highlight,
.volunteer-card,
.volunteer-cta {
  background: var(--surface);
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: var(--shadow);
}

.volunteer-highlight {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  color: var(--text);
}

.volunteer-highlight-photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 320px;
}

.volunteer-highlight-photo svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.volunteer-photo-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(239, 246, 255, 0.92);
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.18);
}

.volunteer-photo-note span {
  display: block;
  margin-bottom: 0.3rem;
  color: #1e3a8a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.volunteer-photo-note strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.volunteer-highlight-label,
.volunteer-role {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.volunteer-highlight strong {
  display: block;
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
}

.volunteer-highlight p {
  color: var(--muted);
}

.volunteer-highlight-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.volunteer-section {
  padding-top: 4.8rem;
}

.volunteer-benefits-section {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.04));
}

.volunteer-process-section {
  padding-top: 4rem;
}

.volunteer-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.volunteers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.volunteer-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-color: rgba(30, 58, 138, 0.16);
}

.volunteer-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border-radius: 18px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.volunteer-card h3 {
  margin: 0.85rem 0 0.55rem;
  font-size: 1.12rem;
  color: #0f172a;
}

.volunteer-card p,
.volunteer-cta p {
  margin: 0;
  color: var(--muted);
}

.volunteer-cta-section {
  padding-top: 0;
}

.volunteer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}

.volunteer-cta h2 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.volunteer-cta .button {
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(30, 58, 138, 0.2);
}

.partners-section {
  padding: 3.8rem 0 3.2rem;
  background:
    radial-gradient(circle at 10% 15%, rgba(0, 0, 0, 0.05), transparent 10%),
    radial-gradient(circle at 90% 25%, rgba(0, 0, 0, 0.06), transparent 8%),
    radial-gradient(circle at 85% 80%, rgba(0, 0, 0, 0.05), transparent 7%),
    linear-gradient(180deg, #eef5ff 0%, #e8f1ff 100%);
}

.partners-shell {
  display: grid;
  gap: 2rem;
}

.partners-ribbon {
  display: grid;
  place-items: center;
  min-height: 54px;
}

.partners-ribbon h2 {
  margin: 0;
  width: min(100%, 680px);
  padding: 0.8rem 1.2rem;
  background: #1e3a8a;
  color: #fff;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.partners-message {
  display: grid;
  place-items: center;
  min-height: 96px;
}

.partners-message p {
  margin: 0;
  max-width: 30ch;
  text-align: center;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.partners-logos {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partners-scroll 24s linear infinite;
}

.partners-group {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 2.2rem;
  flex-shrink: 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 14vw, 168px);
  height: clamp(78px, 9vw, 108px);
  color: #173a6a;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }

  .partners-logos {
    overflow-x: auto;
  }
}

.site-footer {
  padding: 2rem 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.04), transparent 16%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 4px,
      rgba(0, 0, 0, 0) 4px,
      rgba(0, 0, 0, 0) 8px
    ),
    #0b1b34;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1fr 0.9fr;
  gap: 2.25rem;
  align-items: start;
  color: #f1f1f1;
}

.footer-logo-block,
.footer-about,
.footer-contact,
.footer-social {
  display: grid;
  gap: 0.65rem;
}

.footer-logo-block {
  justify-items: center;
  text-align: center;
}

.footer-logo-image {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.footer-about p,
.footer-contact p,
.footer-social a {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-contact h3,
.footer-social h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: #ffffff;
}

.footer-social a {
  display: block;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.main-nav a:focus-visible,
.button:focus-visible,
.faq-question:focus-visible,
.menu-toggle:focus-visible,
.contact-form input:focus,
.contact-form select:focus {
  outline: 3px solid rgba(59, 130, 246, 0.28);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .brand-logo {
    width: 108px;
    max-height: 60px;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0.7rem;
    border-radius: 18px;
    background: #eef5ff;
    box-shadow: var(--shadow);
  }

  .main-nav a {
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 10px;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .volunteer-hero-grid,
  .impact-grid,
  .contact-grid,
  .footer-inner,
  .volunteer-cta,
  .volunteer-home-cta-shell {
    grid-template-columns: 1fr;
  }

  .volunteer-home-cta-shell {
    min-height: auto;
    padding: 1.4rem;
  }

  .volunteer-home-cta-media {
    min-height: 200px;
  }

  .volunteer-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .raimunda-story {
    grid-template-columns: 1fr;
  }

  .raimunda-story-media {
    max-width: 420px;
    margin: 0 auto;
  }

  .cards-grid,
  .steps-line,
  .instagram-grid,
  .testimonials-grid,
  .about-numbers-grid,
  .about-values-inline,
  .raimunda-highlights,
  .volunteers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-logos {
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  }

  .steps-line::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .section,
  .hero-band {
    padding: 3.5rem 0;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .about-story-copy {
    padding: 1.4rem;
  }

  .about-story-copy h2 {
    max-width: none;
  }

  .raimunda-story {
    padding: 1.4rem;
  }

  .cards-grid,
  .steps-line,
  .instagram-grid,
  .testimonials-grid,
  .about-numbers-grid,
  .about-values-inline,
  .raimunda-highlights,
  .volunteers-grid,
  .form-row,
  .contact-meta {
    grid-template-columns: 1fr;
  }

  .impact-art {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .partners-group {
    gap: 1.3rem;
    padding-right: 1.3rem;
  }

  .partner-logo {
    width: 130px;
    height: 84px;
  }

  .about-hero {
    min-height: 56vh;
  }

  .about-hero-content {
    padding: 4.4rem 0 2.8rem;
  }

  .impact-stats {
    flex-direction: column;
    gap: 1rem;
  }

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


