:root {
  --green-950: #00564f;
  --green-900: #006a61;
  --green-800: #00786e;
  --green-700: #05897d;
  --green-100: #dff5f1;
  --green-50: #effbf8;
  --orange: #ffb133;
  --orange-600: #f29a0b;
  --ink: #14312f;
  --muted: #5f7774;
  --line: #d8e8e5;
  --surface: #ffffff;
  --bg: #f6fbfa;
  --shadow: 0 22px 60px rgba(0, 73, 68, 0.16);
  --radius: 8px;
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --header-height: 86px;
  --shell-max: 1320px;
  --shell-guide-max: 1320px;
  --shell-outer-gap: 36px;
  --shell-padding-inline: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  border-left: max(calc(var(--shell-outer-gap) + var(--shell-padding-inline)), calc((100vw - var(--shell-guide-max)) / 2 + var(--shell-padding-inline))) solid rgba(0, 120, 110, 0.07);
  border-right: max(calc(var(--shell-outer-gap) + var(--shell-padding-inline)), calc((100vw - var(--shell-guide-max)) / 2 + var(--shell-padding-inline))) solid rgba(0, 120, 110, 0.07);
  z-index: 0;
}

#conteudo,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
.main-nav,
.button,
.help-button,
.eyebrow,
.news-card time,
.news-card-arrow,
.pagination .page-numbers,
.pagination-link {
  font-family: var(--font-sans);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--green-950);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 72px, var(--shell-max));
  margin-inline: auto;
  padding-inline: 20px;
}

.header-shell,
.footer-shell {
  width: min(100% - 72px, var(--shell-max));
  margin-inline: auto;
  padding-inline: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  height: var(--header-height);
  padding: 0;
  z-index: 40;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("../images/hero-photo.png") center 24% / cover no-repeat;
  border-bottom: 1px solid rgba(0, 120, 110, 0.14);
  backdrop-filter: blur(18px);
  z-index: -1;
}

.site-header .header-shell {
  height: 100%;
}

.site-header .header-shell.header-inner {
  position: relative;
  height: 100%;
  width: min(100% - 72px, var(--shell-max));
  max-width: none;
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-content: initial;
  flex-wrap: nowrap;
  column-gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-self: start;
}

.brand img {
  width: 204px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
  justify-content: center;
  justify-self: center;
  color: #1c3634;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
  flex: 0 0 auto;
}

.menu-item-mobile-help {
  display: none;
}

#cookie-notice {
  display: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-900);
  font-weight: 900;
}

.main-nav a.active {
  color: var(--green-800);
}

.main-nav a.active::after {
  background: var(--green-800);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
  min-width: 0;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.social-link img,
.footer-social img {
  width: 20px;
  height: 20px;
}

.help-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #1e3c38;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.help-button:hover,
.button:hover {
  transform: translateY(-1px);
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.help-button:focus-visible,
.button:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.nav-toggle,
.nav-button {
  display: none;
}

.fold {
  min-height: 800px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--green-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: var(--header-height) 0 0;
}

.hero-media {
  background-image: var(--hero-desktop-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-media.is-active {
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 86, 79, 0.97) 0%, rgba(0, 86, 79, 0.9) 31%, rgba(0, 86, 79, 0.58) 56%, rgba(0, 86, 79, 0.2) 72%, rgba(0, 86, 79, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 86, 79, 0.32), rgba(0, 86, 79, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 580px) 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 0 180px;
  min-height: 470px;
  color: white;
}

.hero-copy {
  position: absolute;
  inset: 0 auto 0 0;
  display: grid;
  align-content: center;
  padding-inline-start: 20px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-copy.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy-secondary h2 {
  margin: 0;
  color: white;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
}

.hero-inline-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  font-size: 16px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green-100);
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.62;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  background: var(--green-800);
  color: white;
}

.hero .button-primary {
  background: white;
  color: var(--green-900);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}

.button-outline.dark {
  border-color: rgba(255, 255, 255, 0.82);
}

.button-ghost {
  border-color: var(--green-800);
  color: var(--green-800);
  background: white;
}

.wide {
  min-width: 360px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: white;
  font-weight: 900;
}

.hero-badge strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid white;
  border-radius: 999px;
  font-size: 13px;
}

.sus-card {
  align-self: start;
  margin-top: 12px;
  padding: 30px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--green-900);
  text-align: center;
}

.sus-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sus-card strong {
  display: block;
  margin-top: 8px;
  font-size: 58px;
  line-height: 0.9;
}

.sus-card b {
  display: block;
  margin-top: 10px;
  font-size: 31px;
}

.sus-card p {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.stats-panel {
  position: absolute;
  left: 50%;
  bottom: 5px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% - 40px);
  max-width: calc(var(--shell-max) - 40px);
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 120, 110, 0.98), rgba(0, 91, 84, 0.98));
  box-shadow: var(--shadow);
  color: white;
}

.stats-panel article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 38px;
}

.stats-panel article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.stats-panel .icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
}

.stats-panel article:first-child .icon,
.stats-panel article:last-child .icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.stats-panel h2,
.stats-panel p {
  margin: 0;
}

.stats-panel h2 {
  font-size: 21px;
  line-height: 1.15;
}

.stats-panel p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.section {
  padding: 96px 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.section-heading h2,
.content-block h2,
.transparency-card h2,
.contact-form h2 {
  color: var(--green-900);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.section-heading.centered {
  display: block;
  max-width: 680px;
  margin: 46px auto 28px;
  text-align: center;
}

.section-heading.centered p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.text-link {
  color: var(--green-800);
  font-weight: 900;
}

.news-section {
  background: white;
}

.home-news-section {
  padding-top: 48px;
  padding-bottom: 96px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 32px rgba(0, 84, 78, 0.08);
}

.news-card-link {
  display: block;
  line-height: 0;
}

.news-card-link img,
.news-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
}

.news-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 20px 22px;
}

.news-card time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.news-card h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 20px;
  line-height: 1.16;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
  font-weight: 600;
  line-height: 1.62;
}

.news-card-arrow {
  display: inline-flex;
  margin-top: auto;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.srf-medic-banner-section {
  position: relative;
  z-index: 2;
  margin-top: -76px;
  margin-bottom: 46px;
  padding: 0;
  background: transparent;
}

.srf-medic-banner {
  display: block;
  overflow: visible;
}

.srf-medic-banner img {
  width: 100%;
  height: auto;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.pagination .page-numbers,
.pagination-link {
  display: inline-flex;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--green-900);
  font-weight: 900;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current,
.pagination-link:hover,
.pagination-link.is-active {
  border-color: var(--green-800);
  background: var(--green-800);
  color: white;
}

.pagination .page-numbers.dots {
  min-width: 32px;
  padding: 0 6px;
  border-color: transparent;
  background: transparent;
}

.pagination-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.hospital-section {
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 177, 51, 0.18), transparent 24%),
    linear-gradient(135deg, var(--green-50), white);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 52px;
}

.hospital-section .two-column {
  position: relative;
  top: -100px;
  margin-bottom: -100px;
}

.content-block {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 18px;
}

.content-block h2 {
  max-width: 620px;
}

.content-block p:not(.eyebrow) {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hospital-features {
  display: grid;
  align-content: start;
  gap: 28px;
}

.hospital-history-button {
  justify-self: start;
}

.feature-list article {
  min-height: 206px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(0, 84, 78, 0.08);
}

.feature-list span {
  color: var(--orange-600);
  font-weight: 900;
}

.feature-list h3 {
  margin: 18px 0 10px;
  color: var(--green-900);
  font-size: 23px;
  line-height: 1.1;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.transparency-section {
  padding-block: 56px;
  background: var(--green-900);
  color: white;
}

.transparency-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr auto;
  align-items: center;
  gap: 42px;
}

.transparency-card .eyebrow,
.transparency-card h2 {
  color: white;
}

.transparency-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-section {
  background: linear-gradient(180deg, white, var(--green-50));
  padding-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-form {
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  line-height: 1.4;
}

textarea {
  resize: vertical;
}

.location-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #eaf3f0;
}

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.site-footer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: 0;
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
  color: white;
}

.site-footer .footer-shell.footer-inner {
  position: relative;
  display: grid;
  width: min(100% - 72px, var(--shell-max));
  max-width: none;
  margin-inline: auto;
  padding: 34px 20px 26px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-content: initial;
  flex-wrap: nowrap;
  column-gap: 40px;
  row-gap: 24px;
}

.footer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
  z-index: -1;
}

.footer-inner > div > img,
.footer-brand-logo {
  width: 170px;
  max-width: 170px;
  height: auto;
  padding: 3px;
  background: #ffffff;
  border-radius: var(--radius);
}

.footer-inner > div:first-child {
  justify-self: start;
}

.footer-inner p,
.footer-inner address {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 700;
}

.footer-inner address {
  max-width: 430px;
  justify-self: center;
  text-align: center;
}

.footer-address {
  max-width: none;
  margin-top: 6px;
  align-self: center;
  line-height: 1.45;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-weight: 900;
  justify-self: end;
}

.footer-social a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer-social img {
  filter: brightness(0) invert(1);
}

.copyright {
  margin: 0;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 35;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 4px solid white;
  border-radius: 999px;
  background: #25d366;
  box-shadow: var(--shadow);
  color: white;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.page-hero {
  padding: calc(var(--header-height) + 96px) 0 88px;
  background:
    linear-gradient(135deg, rgba(0, 86, 79, 0.96), rgba(0, 120, 110, 0.9)),
    url("../images/hero-photo.png") right center / cover;
  color: white;
}

.news-page-hero,
.history-page-hero,
.article-page-hero {
  padding-bottom: 20px;
}

.article-page-hero {
  padding-top: calc(var(--header-height) + 40px);
}

.article-hero-shell,
.article-content-shell {
  padding-inline: 20px;
}

.news-listing {
  padding-top: 20px;
  padding-bottom: 20px;
  background: white;
}

.news-listing .shell {
  background: transparent;
}

.news-listing .news-grid {
  margin-top: 0;
}

.page-hero .eyebrow {
  color: var(--green-100);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.02;
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.news-page-hero p:last-child {
  max-width: none;
  white-space: nowrap;
}

.article-hero-deck {
  max-width: none;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.article-section,
.documents-section,
.institutional-section,
.timeline-section {
  background: white;
}

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

.article-main {
  min-width: 0;
  max-width: 880px;
}

.article-cover {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-main h2 {
  margin: 0 0 18px;
  color: var(--green-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.article-main p,
.article-main blockquote {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.article-main blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--green-50);
  color: var(--green-900);
  font-weight: 900;
}

.article-footer-action {
  margin-top: 20px;
  padding-top: 20px;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  justify-self: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--green-50);
}

.article-sidebar h3 {
  margin: 0 0 6px;
  color: var(--green-900);
  font-size: 24px;
}

.article-sidebar a {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
}

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

.metric-grid article {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(0, 84, 78, 0.08);
  text-align: center;
}

.metric-grid strong {
  color: var(--green-900);
  font-size: 50px;
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-weight: 900;
}

.timeline-section {
  background: var(--green-50);
}

.support-page-hero {
  padding-bottom: 20px;
}

.support-page-shell {
  padding-inline: 20px;
}

.support-intro-section {
  background: white;
  padding-top: 40px;
  padding-bottom: 0;
}

.support-intro-grid {
  display: block;
}

.support-methods-section {
  background: linear-gradient(180deg, white, var(--green-50));
  padding-top: 40px;
}

.page-id-150 .support-methods-section,
.page-id-150 .support-contact-section {
  background: white;
}

.support-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.support-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: start;
  column-gap: 22px;
  row-gap: 10px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 14px 34px rgba(0, 84, 78, 0.08);
}

.support-card-media {
  display: grid;
  width: min(100%, 180px);
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, white, var(--green-50));
  grid-row: 1 / span 4;
}

.support-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.support-card span {
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-card h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 28px;
  line-height: 1.14;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.support-card .button {
  margin-top: 6px;
  justify-self: start;
}

.support-contact-section {
  background: linear-gradient(180deg, var(--green-50), white);
  padding-top: 40px;
}

.amigos-project-detail-section,
.amigos-support-methods-section,
.amigos-support-contact-section {
  background: transparent;
}

.support-contact-panel {
  display: grid;
  gap: 24px;
}

.support-contact-summary {
  max-width: 1000px;
  margin-inline: auto;
  padding: 32px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
  box-shadow: var(--shadow);
  color: white;
  text-align: center;
}

.support-contact-summary .eyebrow,
.support-contact-summary h2 {
  color: white;
}

.support-contact-summary h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.02;
}

.support-contact-summary p {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.support-contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.support-contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.support-contact-cards article {
  min-height: 100%;
}

.support-logo-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.support-logo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 28px rgba(0, 84, 78, 0.08);
}

.project-detail-grid {
  align-items: center;
}

.project-figure-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.project-figure-card img {
  width: 100%;
  height: auto;
  display: block;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.timeline-grid article,
.documents-list article,
.documents-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(0, 84, 78, 0.08);
}

.timeline-grid article {
  padding: 28px;
}

.timeline-grid span,
.documents-list span {
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-grid h3,
.documents-list h3 {
  margin: 12px 0 10px;
  color: var(--green-900);
  font-size: 24px;
  line-height: 1.12;
}

.timeline-grid p,
.documents-list p,
.documents-summary p,
.documents-summary li {
  color: var(--muted);
  font-weight: 700;
}

.documents-section {
  background: linear-gradient(180deg, white, var(--green-50));
}

.documents-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.documents-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 28px;
}

.documents-summary h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 32px;
  line-height: 1.06;
}

.documents-summary ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.documents-list {
  display: grid;
  gap: 16px;
}

.documents-list article {
  padding: 24px;
}

.documents-list p {
  margin: 0 0 14px;
}

.documents-list a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--green-800);
  font-weight: 900;
}

.partners-hero {
  background:
    linear-gradient(135deg, rgba(0, 86, 79, 0.94), rgba(0, 120, 110, 0.88)),
    url("../images/medic-banner.png") center / cover;
}

.partners-page-section {
  background: linear-gradient(180deg, white, var(--green-50));
}

.partners-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.partners-intro h2 {
  max-width: 720px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.partners-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
}

.partner-summary-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 42px;
}

.partner-summary-grid a {
  display: grid;
  min-height: 118px;
  place-items: center;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(0, 84, 78, 0.08);
  text-align: center;
}

.partner-summary-grid strong {
  color: var(--orange-600);
  font-size: 38px;
  line-height: 1;
}

.partner-summary-grid span {
  color: var(--green-900);
  font-size: 14px;
  font-weight: 900;
}

.partner-category {
  padding: 34px 0 10px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.partner-category + .partner-category {
  border-top: 1px solid var(--line);
}

.partner-category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.partner-category-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.partner-category-heading span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 900;
}

.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.partner-card-grid article {
  display: grid;
  gap: 14px;
  min-height: 132px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(0, 84, 78, 0.08);
}

.partner-card-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.18;
}

.partner-card-grid a {
  color: var(--green-800);
  font-weight: 900;
}

@media (max-width: 1180px) {
  :root {
    --shell-guide-max: 1060px;
    --shell-outer-gap: 21px;
  }

  .shell {
    width: min(100% - 42px, 1060px);
    padding-inline: 20px;
  }

  .header-shell,
  .footer-shell {
    width: min(100% - 42px, 1060px);
    padding-inline: 20px;
  }

  .main-nav {
    font-size: 13px;
  }

  .brand img {
    width: 178px;
  }

  .site-header .header-shell.header-inner {
    width: min(100% - 42px, 1060px);
    padding-inline: 20px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 20px;
  }

  .site-footer .footer-shell.footer-inner {
    width: min(100% - 42px, 1060px);
    padding-inline: 20px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 28px;
  }

  .header-actions .social-link {
    display: none;
  }

  .hero-content {
    grid-template-columns: minmax(0, 560px) 180px;
  }

  .stats-panel article {
    padding: 24px;
  }

  .stats-panel {
    width: calc(100% - 40px);
    max-width: calc(1060px - 40px);
  }

}

@media (max-width: 900px) {
  :root {
    --shell-guide-max: 720px;
    --shell-outer-gap: 14px;
    --shell-padding-inline: 0px;
  }

  .main-nav .menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  :root {
    --header-height: 76px;
  }

  .shell {
    width: min(100% - 28px, 720px);
    padding-inline: 0;
  }

  .header-shell,
  .footer-shell {
    width: min(100% - 28px, 720px);
    padding-inline: 0;
  }

  .site-header .header-shell.header-inner {
    width: min(100% - 28px, 720px);
    padding-inline: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 16px;
  }

  .site-footer .footer-shell.footer-inner {
    width: min(100% - 28px, 720px);
    padding-inline: 0;
  }

  .article-hero-shell,
  .article-content-shell {
    padding-inline: 0;
  }

  .support-page-shell {
    padding-inline: 0;
  }

  .footer-address {
    white-space: normal;
  }

  .news-page-hero p:last-child {
    white-space: normal;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand img {
    width: 168px;
  }

  .brand {
    min-width: 0;
  }

  .nav-button {
    display: grid;
    justify-self: end;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-900);
  }

  .main-nav,
  .header-actions {
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    background:
      linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
      url("../images/hero-photo1080.png") center top / cover no-repeat;
  }

  .main-nav {
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 14px 0;
    border: 1px solid var(--line);
    border-radius: 16px 16px 0 0;
    box-shadow: var(--shadow);
  }

  .main-nav a {
    padding: 14px 10px;
  }

  .menu-item-mobile-help {
    display: list-item;
  }

  .menu-item-mobile-help a {
    display: flex;
    justify-content: center;
    margin: 12px 0 2px;
    border-radius: 999px;
    background: var(--orange);
    color: white;
    font-weight: 900;
  }

  .header-actions {
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 14px 14px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow);
    transform: translateY(100%);
  }

  .header-actions .help-button {
    display: none;
  }

  .header-socials {
    justify-content: center;
  }

  .nav-toggle:checked ~ .main-nav,
  .nav-toggle:checked ~ .header-actions {
    display: flex;
  }

  .fold {
    min-height: auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-image: var(--hero-mobile-image);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 86, 79, 0.96), rgba(0, 86, 79, 0.74));
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 250px;
  }

  .hero-copy {
    inset: 0 auto auto 0;
    align-content: start;
    padding-inline-start: 0;
    padding-top: 24px;
    max-width: 100%;
  }

  .sus-card {
    width: min(100%, 260px);
    margin: 0;
  }

  .stats-panel {
    grid-template-columns: 1fr;
    bottom: 24px;
    width: 100%;
    max-width: none;
  }

  .stats-panel article {
    grid-template-columns: 48px 1fr;
    padding: 16px 20px;
  }

  .stats-panel article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-left: 0;
  }

  .stats-panel .icon {
    width: 48px;
    height: 48px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading,
  .two-column,
  .contact-grid,
  .transparency-card,
  .support-intro-grid,
  .support-contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .news-grid,
  .feature-list,
  .support-methods-grid,
  .support-contact-cards,
  .support-logo-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .support-card {
    grid-template-columns: 1fr;
  }

  .support-card-media {
    grid-row: auto;
  }

  .partners-intro,
  .partner-summary-grid,
  .partner-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-shell.footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 18px;
  }

  .footer-inner > div:first-child,
  .footer-inner address,
  .footer-social {
    justify-self: center;
    text-align: center;
  }

  .footer-address {
    margin-top: 0;
    white-space: normal;
  }

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

  .article-layout,
  .documents-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar,
  .documents-summary {
    position: static;
  }

  .support-contact-summary,
  .project-figure-card {
    order: initial;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 820px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .button,
  .help-button,
  .wide {
    width: 100%;
  }

  .stats-panel {
    width: 100%;
  }

  .news-grid,
  .feature-list,
  .form-grid,
  .metric-grid,
  .support-methods-grid,
  .support-contact-cards,
  .support-logo-gallery,
  .partners-intro,
  .partner-summary-grid,
  .partner-card-grid {
    grid-template-columns: 1fr;
  }

  .support-card-media {
    width: min(100%, 160px);
  }

  .srf-medic-banner-section {
    margin-top: 20px;
    margin-bottom: 26px;
  }

  .partner-category-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-section {
    padding-bottom: 16px;
  }

  .support-contact-summary {
    padding: 24px;
  }

  .support-contact-actions {
    flex-direction: column;
  }

  .support-contact-actions .button {
    width: 100%;
  }

  .location-card {
    min-height: 420px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 60px;
    height: 60px;
  }
}
