/* ========== TOKENS ========== */
:root {
  --orange-700: rgb(186, 89, 28);
  --orange-600: rgb(237, 112, 30);
  --orange-500: rgb(247, 141, 78);
  --orange-200: rgb(255, 198, 165);
  --orange-100: rgb(255, 226, 209);
  --orange-50:  rgb(255, 241, 232);
  --cream:      rgb(252, 246, 238);

  --blue-900:   rgb(27, 35, 63);
  --blue-800:   rgb(34, 50, 94);
  --blue-700:   rgb(43, 81, 162);
  --blue-500:   rgb(0, 170, 232);
  --blue-100:   rgb(221, 237, 251);
  --blue-50:    rgb(238, 246, 253);
  --blue-25:    rgb(235, 250, 255);
  --blue-light-text: rgb(185, 220, 246);
  --blue-muted: rgb(177, 181, 218);

  --green-500:  rgb(140, 198, 63);

  --gray-900:   rgb(31, 31, 31);
  --gray-800:   rgb(37, 37, 37);
  --gray-700:   rgb(64, 64, 64);
  --gray-600:   rgb(75, 75, 75);
  --white:      rgb(255, 255, 255);

  --shadow-card: 3px 4px 18px 0 rgba(85,85,85,0.10);

  --max-content: 1440px;
}

/* ========== RESET ========== */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media (max-width: 720px) {
  html { scroll-padding-top: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--gray-800);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; }

/* ========== TYPE ========== */
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", "DM Sans", sans-serif; margin: 0; line-height: 1.15; letter-spacing: 0.2px; }
p { margin: 0; line-height: 1.45; }

.eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--gray-800);
  opacity: 0.7;
  text-transform: uppercase;
  font-weight: 400;
}

/* ========== LAYOUT HELPERS ========== */
.container { width: 100%; max-width: var(--max-content); margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }

/* ========== NAV BAR ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--white);
  border-bottom: 0.5px solid var(--orange-50);
  border-radius: 0 0 12px 12px;
}
.nav__inner {
  max-width: 1796px;
  margin: 0 auto;
  height: 92px;
  padding: 8px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 8px; }
.nav__logo { width: 44px; height: 44px; flex-shrink: 0; }
.nav__brand-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: rgb(0, 99, 157);
  line-height: 1.1;
  max-width: 160px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__link {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--orange-600); background: var(--orange-50); }
.nav__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.nav__menu-btn:hover { background: var(--orange-50); }
.nav__menu-btn svg { width: 28px; height: 28px; color: var(--gray-700); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 55px;
  padding: 0 28px;
  border-radius: 52px;
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--cta {
  background: var(--orange-50);
  color: var(--orange-700);
  border: 1px solid var(--orange-100);
}
.btn--cta:hover { background: var(--orange-100); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(237,112,30,0.18); }
.btn--ghost {
  background: transparent;
  color: var(--blue-700);
  height: auto;
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--blue-700);
}
.btn--ghost:hover { color: var(--blue-700); opacity: 0.85; }
.btn--icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--orange-200);
  color: var(--orange-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.copy-feedback {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  animation: copy-feedback-in 0.18s ease-out;
}
.copy-feedback::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--green-500);
}
@keyframes copy-feedback-in {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.btn--icon:hover { background: var(--orange-50); }
.btn--icon svg { width: 18px; height: 18px; }
.btn .icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 720px;
  padding: 100px 24px 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, rgba(252,246,238,0) 0%, rgba(252,246,238,0.6) 50%, var(--cream) 80%),
    url("assets/banner-hero.jpg") center / cover no-repeat,
    var(--cream);
}
.hero__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 560px;
}
.hero__content { max-width: 600px; display: flex; flex-direction: column; gap: 24px; }
.hero__title-block { display: flex; flex-direction: column; gap: 16px; }
.hero__title-stack { display: flex; flex-direction: column; gap: 8px; }
.hero__eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--gray-600);
}
.hero__big {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1.05;
  color: var(--orange-600);
  margin: 0;
}
.hero__big sup { font-size: 0.4em; vertical-align: super; }
.hero__sub {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--orange-600);
  margin: 0;
}
.hero__desc {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--gray-600);
  max-width: 560px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ========== SECTION TITLES ========== */
.sec-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--gray-800);
}
.sec-title--white { color: var(--white); }
.sec-title__accent { color: var(--orange-600); }
.sec-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gray-600);
}
.sec-desc--soft { color: var(--orange-50); }

/* ========== 460 ANOS ========== */
.years {
  padding: 60px 24px;
  text-align: center;
}
.years__inner { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; align-items: center; }
.years__title { text-align: center; }
.years__desc { text-align: center; color: var(--gray-600); }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  align-items: center;
}
.badge-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--orange-600);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--orange-600);
}
.badge::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500);
}

/* ========== PORTA QUE NUNCA FECHA ========== */
.porta {
  padding: 60px 24px 70px;
  position: relative;
}
.porta__grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.photo-frame {
  width: 100%;
  max-width: 540px;
  position: relative;
}
.photo-frame img { width: 100%; height: auto; display: block; }
.photo-credit {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-50);
  color: var(--orange-600);
  font-size: 8px;
  letter-spacing: 0.3px;
  padding: 4px 8px;
  white-space: nowrap;
}

.porta__text { display: flex; flex-direction: column; gap: 15px; position: relative; z-index: 2;margin: -150px 0 0 0; }
.title-marked { display: flex; flex-direction: column; gap: 6px; position: relative; }
.title-marked .marker {
  display: inline-block;
  width: 98px; height: 4px;
  background: var(--blue-500);
  opacity: 0.4;
  margin-top: 4px;
}
.title-marked--center { align-items: center; text-align: center; }
.marker--center {
  display: block;
  width: 98px; height: 4px;
  background: var(--blue-500);
  opacity: 0.4;
  margin: 0 auto;
}
.porta__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.icon-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 0;
}
.icon-card__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  margin-left: 0;
  color: var(--blue-50);
}
.icon-card__icon svg { width: 14px; height: 14px; }
.icon-card__icon--orange { background: var(--orange-500); }
.icon-card__text {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: var(--gray-800);
}
.banner-thin {
  background: var(--blue-500);
  color: var(--blue-50);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 24px;
  margin: 0 -100vw;
  padding-left: calc(100vw - (100% / 2 - 12px));
  /* fallback simple */
}
/* simpler full-bleed strip */
.fullbleed-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--blue-500);
  color: var(--blue-50);
  padding: 22px 24px;
}
.fullbleed-strip__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.fullbleed-strip--porta {
  position: absolute;
  bottom: 160px;
  left: calc(50% - 50vw);
  width: 100vw;
  margin: 0;
  padding: 28px 24px;
  background: transparent;
  z-index: 1;
  /* corta a parte à esquerda da foto + ~205px de offset (faixa começa ~41% dentro da foto) */
  clip-path: inset(0 0 0 max(229px, calc(25vw - 48px), calc(50vw - 420px)));
}
.fullbleed-strip__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.fullbleed-strip--porta .fullbleed-strip__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px 0 calc(50% + 30px);
}

/* ========== IMPACTO + ORANGE BANNER (combined section) ========== */
.impact-block { padding: 60px 24px 0; }
.impact-block__inner { max-width: var(--max-content); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; align-items: center; }
.impact-block__title { text-align: left; width: 100%; }
.impact-block__title .marker { width: 239px; }
.numbers-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}
.num {
  position: relative;
  padding: 16px 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.num::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 4px; height: calc(100% - 24px);
  background: var(--blue-500);
  border-radius: 4px;
}
.num__value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--gray-800);
  letter-spacing: -1px;
}
.num__label {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: var(--gray-800);
  line-height: 1.2;
}

/* Orange wide block after numbers */
.orange-banner {
  background: transparent;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 90px 24px;
  margin-top: 60px;
  position: relative;
}
.orange-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.orange-banner__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.chip {
  background: var(--orange-50);
  color: var(--orange-700);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: 1px solid var(--orange-100);
}

/* ========== SUS SECTION ========== */
.sus {
  position: relative;
  padding: 60px 24px;
  overflow: hidden;
}
.sus__bg {
  position: absolute; inset: 0;
  background: url("assets/hospital-bg.png") center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.sus__grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.sus__text { display: flex; flex-direction: column; gap: 24px; }
.sus__intro {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-700);
  white-space: pre-line;
}
.sus__intro b { font-weight: 700; color: var(--gray-800); }
.sus__box {
  background: var(--blue-700);
  color: var(--blue-50);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sus__box-title {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  white-space: pre-line;
  line-height: 1.45;
}
.sus__list { display: flex; flex-direction: column; gap: 10px; }
.sus__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--white);
}
.sus__list-item::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-500);
  flex-shrink: 0;
}

/* ========== DESAFIO ========== */
.desafio { padding: 60px 24px; }
.desafio__inner { max-width: var(--max-content); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; align-items: center; }
.desafio__cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.desafio-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--orange-50);
  border: 1px solid var(--orange-200);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.desafio-card__num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--gray-600);
}
.desafio-card hr {
  width: 100px;
  height: 2px;
  border: 0;
  background: var(--blue-500);
  margin: 4px auto;
}
.desafio-card__doam {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: var(--gray-900);
}
.desafio__or {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--gray-800);
  padding: 0 4px;
  align-self: center;
}
.desafio__close {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-700);
}

.desafio__cta-banner {
  background: var(--blue-700);
  color: var(--white);
  border-radius: 22px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.desafio__cta-text { display: flex; flex-direction: column; gap: 6px; flex: 1 1 320px; }
.desafio__cta-text h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.desafio__cta-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

/* ========== MILHARES (Image + numbers card) ========== */
.milhares { padding: 60px 24px; }
.milhares__grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.milhares__text { display: flex; flex-direction: column; gap: 24px; }
.milhares__title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 32px; color: var(--gray-800); }
.milhares__box {
  background: var(--blue-500);
  color: var(--white);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.milhares__nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.milhares__nums .num__value { color: var(--white); }
.milhares__nums .num__label { color: var(--white); opacity: 0.95; }
.milhares__nums .num::before { background: var(--white); }
.milhares__box-foot {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.4;
}
.milhares__cta-text { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; text-align: right; }
.milhares__cta-text h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--gray-800);
}
.milhares__cta-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: var(--gray-600);
}

/* ========== DOE AGORA (orange) ========== */
.doe {
  background: var(--orange-600);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 60px 24px;
}
.doe__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.doe__text { color: var(--white); display: flex; flex-direction: column; gap: 16px; }
.doe__text h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
}
.doe__text > p { font-family: "DM Sans", sans-serif; font-size: 18px; }
.doe__topics { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.doe-topic {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.doe-topic__check {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-50);
  flex-shrink: 0;
}
.doe-topic__check svg { width: 14px; height: 14px; }
.doe-topic__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--orange-50);
}
.doe__bank {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bank-card {
  background: var(--cream);
  border: 1px solid var(--orange-200);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bank-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--gray-900);
  text-align: center;
}
.qr-shell {
  width: 204px;
  height: 204px;
  border-radius: 18px;
  background: var(--white);
  border: 1px dashed rgba(26,23,20,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  padding: 16px;
}
.qr-shell img { width: 170px; height: 170px; image-rendering: pixelated; }
.pix-key {
  border-radius: 12px;
  background: rgba(247,141,78,0.18);
  border: 1px solid var(--orange-500);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pix-key__label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 1.7px;
  color: var(--gray-600);
  text-transform: lowercase;
}
.pix-key__val {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-900);
  flex: 1;
}
.bank-card__note {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: var(--gray-600);
}
.bank-list { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.bank-line {
  border-radius: 12px;
  background: rgba(247,141,78,0.18);
  border: 1px solid var(--orange-500);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bank-line__text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.bank-line__label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 1.7px;
  color: var(--gray-600);
  text-transform: uppercase;
}
.bank-line__val {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-900);
}

/* ========== COMPARTILHAR ========== */
.share { padding: 60px 24px; text-align: center; }
.share__inner { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; align-items: center; }
.share__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: 40px;
  background: var(--orange-600);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: transform 0.15s, background 0.2s;
}
.share-btn:hover { background: var(--orange-700); transform: translateY(-1px); }
.share-btn svg { width: 22px; height: 22px; }

/* ========== ACOMPANHE ========== */
.acompanhe {
  position: relative;
  padding: 60px 24px;
  overflow: hidden;
  background: url("assets/bg-progress.png") center / cover no-repeat;
}
.acompanhe::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(252,246,238,0.85), rgba(255,241,232,0.7));
  z-index: 0;
}
.acompanhe__grid {
  position: relative; z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.acompanhe__col { display: flex; flex-direction: column; gap: 24px; }
.progress-card {
  background: var(--blue-100);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.progress-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--gray-800);
  line-height: 1.05;
}
.progress-card__values {
  display: flex; align-items: baseline; gap: 8px;
}
.progress-card__values .a {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue-500);
}
.progress-card__values .b {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--gray-600);
}
.progress-bar {
  width: 100%;
  height: 16px;
  border-radius: 16px;
  background: var(--white);
  border: 4px solid var(--white);
  overflow: hidden;
}
.progress-bar__fill {
  width: 9.5%;
  height: 100%;
  background: var(--blue-500);
  border-radius: 16px;
}
.progress-card__foot {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--gray-800);
}
.history-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.history-card h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--gray-800);
  line-height: 1.3;
}
.history-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gray-800);
}
.acompanhe__photo {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: url("assets/foto-medicos.png") center / cover no-repeat;
  border-radius: 24px;
}

/* ========== FOOTERS ========== */
.foot1 {
  background: var(--blue-900);
  padding: 32px 24px;
}
.foot1__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.foot1__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
}
.foot1__brand img { width: 60px; height: 60px; }
.foot1__icons { display: flex; gap: 28px; align-items: center; }
.foot1__icons a {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue-light-text);
  transition: color 0.2s;
}
.foot1__icons a:hover { color: var(--white); }
.foot1__icons svg { width: 24px; height: 24px; }

.foot2 {
  background: var(--blue-800);
  padding: 24px;
}
.foot2__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--blue-light-text);
}

/* ========== TABLET ========== */
@media (max-width: 1100px) {
  .nav__inner { padding: 8px 24px; }
  .porta { padding-bottom: 0; }
  .fullbleed-strip--porta {
    position: static;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 40px;
    clip-path: none;
  }
  .fullbleed-strip--porta .fullbleed-strip__inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 24px;
  }
  .porta__grid,
  .sus__grid,
  .milhares__grid,
  .acompanhe__grid,
  .doe__inner { grid-template-columns: 1fr; }
  .numbers-row { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .doe__bank { grid-template-columns: 1fr 1fr; }
  .acompanhe__photo { min-height: 360px; }
  .doe__text h2 { font-size: 40px; }
  .hero { min-height: 640px; }
}

/* ========== MOBILE ========== */
@media (max-width: 720px) {
  .nav__inner { padding: 8px 16px; height: 72px; }
  .nav__brand-text { display: none; }
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .nav__doe-mobile { display: none; }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--orange-100);
    padding: 16px;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav.is-open .nav__link { padding: 12px; border-radius: 12px; }

  .hero { padding: 60px 16px 40px; min-height: auto; }
  .hero__big { font-size: 44px; }
  .hero__sub { font-size: 22px; }
  .hero__desc { font-size: 18px; }
  .hero__actions { gap: 12px; }
  .btn { height: 50px; font-size: 16px; padding: 0 22px; }

  .section, .years, .porta, .desafio, .milhares, .share, .acompanhe { padding-left: 16px; padding-right: 16px; padding-top: 48px; padding-bottom: 48px; }
  .impact-block { padding: 48px 16px 0; }
  .doe { padding: 48px 16px; }
  .orange-banner { padding: 48px 16px; margin-top: 48px; }

  .sec-title { font-size: 26px; }
  .doe__text h2 { font-size: 32px; }
  .progress-card { padding: 24px; }
  .progress-card h3 { font-size: 26px; }
  .milhares__title { font-size: 28px; }

  .numbers-row { grid-template-columns: repeat(2, 1fr); }
  .porta__cards { grid-template-columns: 1fr; }
  .doe__bank { grid-template-columns: 1fr; }
  .milhares__nums { grid-template-columns: 1fr; }

  .desafio__cta-banner { flex-direction: column; align-items: stretch; padding: 20px; }
  .desafio__cta-text { text-align: left; }
  .desafio__cta-banner .btn { align-self: flex-start; }
  .desafio__cards { flex-wrap: wrap; }
  .desafio-card { flex: 1 1 100%; }
  .desafio__or { flex-basis: 100%; text-align: center; }

  .milhares__cta-text { align-items: flex-start; text-align: left; }

  .foot1__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .foot1__brand { font-size: 16px; }
}
