/* ============================================================
   Instituto Escuta Compassiva — Estilos Globais
   Cores: brand book IEC
   Tipografia: Ubuntu (títulos) + Montserrat (corpo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Phosphor Icons — alinhamento e tamanho ── */
i[class^="ph-"],
i[class*=" ph-"] {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
/* Ícones em caixas decorativas herdam font-size do pai */
div > i[class^="ph-"],
div > i[class*=" ph-"] {
  display: block;
  line-height: 1;
}
/* Ícones inline (dentro de h4, spans, texto) */
h4 i[class^="ph-"],
h4 i[class*=" ph-"] {
  font-size: 1.1em;
  vertical-align: -0.1em;
  margin-right: 0.3rem;
}

/* ── Custom Properties ── */
:root {
  --blue:       #1680a5;
  --red:        #ad3515;
  --orange:     #d68125;
  --green:      #868e35;
  --teal:       #19343d;
  --dark-red:   #721203;
  --brown:      #492617;
  --gray:       #5b5b5b;
  --light-gray: #f5f3ef;
  --cream:      #faf8f4;
  --white:      #ffffff;

  --font-title: 'Ubuntu', sans-serif;
  --font-body:  'Montserrat', sans-serif;

  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);

  --nav-height: 70px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--teal);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Utility ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.section-title + .section-subtitle { margin-top: 0.5rem; }

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.divider {
  width: 50px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1rem auto 2rem;
}
.divider-left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(173,53,21,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--teal);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #b86d1a;
  border-color: #b86d1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214,129,37,0.35);
}

/* ── Wave Pattern ── */
.wave-pattern {
  position: relative;
  overflow: hidden;
}
.wave-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30'%3E%3Cpath d='M0 15 C30 5 60 25 90 15 C105 10 112 12 120 15' stroke='rgba(255,255,255,0.07)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-size: 120px 30px;
  pointer-events: none;
}

/* Teal hero sections: padrão de marca real (padrao-02) */
.hero.wave-pattern::before,
.page-hero.wave-pattern::before,
.brand-hero.wave-pattern::before {
  background-image: url('Logo Oficial IEC/padrao-02.png');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}

/* Layout hero com coluna de marca (index.html) */
.hero-flex { display: flex; align-items: center; gap: 4rem; }
.hero-flex .hero-content { flex: 1; min-width: 0; }
.hero-brand-mark { flex-shrink: 0; position: relative; z-index: 1; }
.hero-logo-card {
  background: rgba(255,255,255,0.96);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.hero-brand-mark img { height: 110px; width: auto; display: block; }

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-brand img {
  height: 48px;
  width: auto;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-menu a {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--teal);
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.navbar-menu a:hover,
.navbar-menu a.active {
  background: var(--light-gray);
  color: var(--red);
}
.navbar-menu .btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
}
.navbar-menu .btn-nav:hover {
  background: var(--dark-red);
  color: var(--white);
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  background: var(--teal);
  color: var(--white);
  padding: 100px 0;
  position: relative;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero .hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.92;
  max-width: 580px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero (interno) ── */
.page-hero {
  background: var(--teal);
  color: var(--white);
  padding: 64px 0 48px;
  position: relative;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero .breadcrumb {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: var(--white); }
.page-hero .breadcrumb a:hover { opacity: 0.9; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-color-bar {
  height: 5px;
  background: var(--red);
}
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.card-text {
  font-size: 0.9rem;
  color: var(--gray);
  flex: 1;
  margin-bottom: 1.2rem;
}
.card-footer-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.card-footer-link:hover { gap: 0.6rem; }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Team Grid ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card-top {
  background: var(--teal);
  height: 6px;
}
.team-card-body { padding: 1.5rem; }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
/* Foto real no card de equipe */
.team-photo-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
}
.team-photo-role-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}
.team-name {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-bio.expanded { -webkit-line-clamp: unset; overflow: visible; }
.team-bio-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  margin-top: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
}
.team-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.team-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  transition: all 0.2s;
}
.team-links a:hover { background: var(--blue); color: var(--white); }

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--orange);
  transition: transform 0.2s;
}
.value-card:hover { transform: translateY(-3px); }
.value-card h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.87rem; margin: 0; }

/* ── Mission Vision ── */
.mvv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.mvv-card {
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.mvv-card.mission { background: var(--teal); color: var(--white); }
.mvv-card.vision  { background: var(--light-gray); }
.mvv-card h3 { margin-bottom: 1rem; }
.mvv-card.mission h3 { color: var(--white); }
.mvv-card.mission p { color: rgba(255,255,255,0.88); }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
  opacity: 0.4;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}
.timeline-item h4 {
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.timeline-item p { font-size: 0.88rem; }

/* ── Donation Section ── */
.donation-section {
  background: var(--teal);
  color: var(--white);
  padding: 80px 0;
  position: relative;
}
.donation-section h2 { color: var(--white); }
.donation-section p { color: rgba(255,255,255,0.85); }
.donation-highlight {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-style: italic;
  margin: 1.5rem 0;
}

/* ── Newsletter ── */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 1.5rem auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); }

/* ── Faca Parte Cards ── */
.fp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.fp-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-top: 5px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fp-card:nth-child(2) { border-top-color: var(--orange); }
.fp-card:nth-child(3) { border-top-color: var(--blue); }
.fp-card:nth-child(4) { border-top-color: var(--green); }
.fp-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.fp-card h3 {
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.fp-card p { font-size: 0.88rem; margin-bottom: 1.2rem; }

/* ── Contact Form ── */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2ddd8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Project Detail Page ── */
.project-detail-header {
  padding: 2rem 0;
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.project-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--light-gray);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}
.project-meta-item strong { color: var(--teal); }

.status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.status-active { background: #e8f5e9; color: #2e7d32; }
.status-prep   { background: #fff3e0; color: #e65100; }

.schedule-list { margin: 1rem 0; padding-left: 0; }
.schedule-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ece8e3;
  font-size: 0.9rem;
  align-items: flex-start;
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-date {
  font-weight: 700;
  color: var(--teal);
  min-width: 90px;
  flex-shrink: 0;
}
.bullet-list { list-style: none; padding: 0; }
.bullet-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.93rem;
}
.bullet-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.6rem;
  top: 0.7rem;
}

/* ── Quote / Highlight Box ── */
.highlight-box {
  background: var(--light-gray);
  border-left: 4px solid var(--orange);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--teal);
}
.highlight-box-teal {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}
.highlight-box-teal h3 { color: var(--white); margin-bottom: 0.75rem; }
.highlight-box-teal p { color: rgba(255,255,255,0.88); margin: 0; }

/* ── Manifesto ── */
.manifesto-text {
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-text p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.manifesto-text h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--red);
}

/* ── Articles / Blog ── */
.article-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1.5rem;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.article-card-img {
  height: 160px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.8rem;
}
.article-card-body { padding: 1.5rem 1.5rem 1.5rem 0; }
.article-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.article-card-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.article-excerpt { font-size: 0.88rem; color: var(--gray); margin-bottom: 1rem; }

/* ── Stats strip ── */
.stats-strip { background: var(--red); padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

/* ── Footer ── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 72px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.45);
}
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--orange); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .section { padding: 56px 0; }

  .navbar-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0.1rem;
    align-items: flex-start;
  }
  .navbar-menu.open { display: flex; }
  .navbar-menu a { width: 100%; padding: 0.6rem 1rem; }
  .navbar-toggle { display: flex; }

  .hero   { padding: 70px 0; }
  .hero-brand-mark { display: none; }
  .hero-flex { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .mvv-grid     { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .fp-grid      { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .article-card-img { height: 180px; }
  .article-card-body { padding: 1.25rem; }
  .footer-grid  { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom{ flex-direction: column; gap: 0.5rem; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .hero-btns    { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
