/* ============================================================
   Inklo + Mater Dei — Design System v3
   Princípios:
   - 1 assinatura visual: linha bicolor no topo do site
   - 1 gradient: caixa do final CTA
   - Paleta reduzida: 4 cores de marca + 3 neutros
   - Cards com shadow para destaque, sem ornamentos decorativos
   - Border-radius com 3 valores: 8 / 16 / pill
   Mobile-first | Cross-browser
   ============================================================ */

:root {
  /* Marca */
  --md-green: #038E83;        /* Verde Mater Dei — brandbook (PANTONE 3285 U) */
  --md-green-dark: #026B62;   /* verde escurecido p/ texto/métricas (AA) */
  --md-mint: #E6F4F1;         /* tint do verde novo */
  --md-mint-soft: #D2ECE6;

  --inklo-purple: #79577A;       /* Roxo Inklo 500 — brandbook */
  --inklo-purple-dark: #553D55;  /* Roxo Inklo 700 */
  --inklo-tint: #F2EEF2;         /* Roxo Inklo 50 */

  --gold: #79577A;        /* gold removido do core -> dobrado no roxo Inklo */
  --gold-soft: #F2EEF2;
  --gold-dark: #553D55;

  /* Neutros */
  --bg-white: #FFFFFF;
  --bg-soft: #F5F5F5;          /* Cinza 96 — neutro Inklo */
  --bg-md: var(--md-mint);
  --surface: #FFFFFF;

  /* Texto */
  --text: #1F1B24;            /* Tinta — neutro Inklo */
  --text-muted: #403B47;      /* Texto 25 — neutro Inklo */
  --text-soft: #8A9893;

  /* Borda */
  --border: #E7E7E7;          /* Cinza 91 — neutro Inklo */
  --border-strong: #C8CCC4;

  /* Radius */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-pill: 999px;

  /* Sombras (neutras, sem cor) */
  --shadow-card: 0 1px 2px rgba(20, 30, 28, 0.04), 0 8px 24px rgba(20, 30, 28, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(20, 30, 28, 0.06), 0 16px 40px rgba(20, 30, 28, 0.10);
  --shadow-lg: 0 14px 40px rgba(20, 30, 28, 0.10);

  /* Estados utilitários */
  --whatsapp: #25D366;
  --whatsapp-dark: #1DAE51;

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container-max: 1180px;
  --header-h-mobile: 60px;
  --header-h-desktop: 76px;
}

/* -------- Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--inklo-purple); text-decoration: none; }
a:hover { color: var(--inklo-purple-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
:focus-visible { outline: 3px solid var(--inklo-purple); outline-offset: 2px; border-radius: var(--radius-sm); }

/* Ícones SVG line-style */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--lg { width: 28px; height: 28px; }
.icon--sm { width: 20px; height: 20px; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 24px; } }

/* ============================================================
   ASSINATURA — Linha bicolor no topo do site
   ============================================================ */
.topline {
  height: 3px;
  background-color: var(--md-green);
  background-image: -webkit-linear-gradient(90deg, var(--md-green) 0%, var(--inklo-purple) 100%);
  background-image: linear-gradient(90deg, var(--md-green) 0%, var(--inklo-purple) 100%);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h-mobile);
}
@media (min-width: 768px) { .site-header__inner { min-height: var(--header-h-desktop); gap: 24px; } }

.site-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: inline-block;
  height: 26px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 768px) { .brand-logo { height: 30px; } }

.brand-logo--inklo { height: 22px; }
@media (min-width: 768px) { .brand-logo--inklo { height: 26px; } }

.brand-logo--md { height: 30px; }
@media (min-width: 768px) { .brand-logo--md { height: 36px; } }

.site-header__divider {
  width: 1px;
  height: 22px;
  background: var(--border-strong);
}
@media (min-width: 768px) { .site-header__divider { height: 26px; } }

.site-header__partnership-label {
  display: none;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 1024px) { .site-header__partnership-label { display: inline-block; } }

.site-header__nav {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 1024px) { .site-header__nav { display: -webkit-box; display: -ms-flexbox; display: flex; } }
.site-header__nav a { color: var(--text); transition: color 0.18s; }
.site-header__nav a:hover { color: var(--inklo-purple); }

.site-header__cta { display: none; }
@media (min-width: 768px) { .site-header__cta { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; } }

.site-header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 22px;
  color: var(--text);
  border-radius: var(--radius-sm);
}
@media (min-width: 768px) { .site-header__menu-toggle { display: none; } }

/* Mobile menu aberto */
@media (max-width: 767px) {
  .site-header.menu-open .site-header__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .site-header.menu-open .site-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
    width: 100%;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
    gap: 0;
  }
  .site-header.menu-open .site-header__nav a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
  .site-header.menu-open .site-header__nav a:last-child { border-bottom: none; }
  .site-header.menu-open .site-header__cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 12px 0 8px;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.18s, color 0.18s, border-color 0.18s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-decoration: none;
  cursor: pointer;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--inklo-purple); color: #FFFFFF; }
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--inklo-purple-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
  color: #FFFFFF;
}

.btn--secondary {
  background: transparent;
  color: var(--inklo-purple);
  border-color: var(--inklo-purple);
}
.btn--secondary:hover { background: var(--inklo-tint); color: var(--inklo-purple-dark); }

.btn--whatsapp { background: var(--whatsapp); color: #FFFFFF; }
.btn--whatsapp:hover { background: var(--whatsapp-dark); color: #FFFFFF; }

@media (max-width: 479px) { .btn--block-mobile { width: 100%; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg-md);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 64px;
}
@media (min-width: 768px) { .hero { padding: 72px 0 80px; } }
@media (min-width: 1024px) { .hero { padding: 88px 0 96px; } }

.hero--md { background: var(--bg-md); }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.1fr 1fr; gap: 56px; } }

.hero__partnership-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.hero__partnership-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--md-green);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 18px;
  letter-spacing: -0.025em;
}
.hero h1 .accent-md { color: var(--md-green); }
.hero h1 .accent-inklo { color: var(--inklo-purple); }

.hero__subhead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 540px;
}

.hero__chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.hero__chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.hero__chip::before { content: '✓'; color: var(--md-green); font-weight: 800; }
.hero__chip--gold {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.hero__chip--gold::before { content: '★'; color: var(--gold); }

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-bottom: 26px;
}
.hero__highlights .hero__metric {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero__highlights .hero__metric-value {
  font-size: 19px;
  font-weight: 700;
  color: var(--inklo-purple-dark);
  letter-spacing: 0;
  margin-top: 0;
}
.hero__highlights .hero__metric-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0;
}
.hero__highlights .hero__metric-divider {
  width: 1px;
  height: 30px;
  background: var(--border-strong);
}
@media (max-width: 480px) { .hero__highlights .hero__metric-divider { display: none; } }

.hero__ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 479px) { .hero__ctas .btn { width: 100%; } }

.hero__microcopy {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 540px;
  margin: 0;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero__visual { max-width: none; margin: 0; } }

.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 96px 0; } }

.section--alt { background: var(--bg-soft); }
.section--md { background: var(--bg-md); }

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
@media (min-width: 768px) { .section__header { margin-bottom: 56px; } }

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--inklo-purple);
  margin-bottom: 12px;
}
.section__eyebrow--md { color: var(--md-green); }

.section__title {
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   SPECIALTY CARDS — com mini imagem no topo + ícone + tag
   ============================================================ */
.specialty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .specialty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .specialty-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.specialty-grid + .specialty-grid { margin-top: 20px; }
@media (min-width: 1024px) {
  .specialty-grid + .specialty-grid { margin-top: 24px; }
}

.specialty-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s, box-shadow 0.18s;
}
.specialty-card:hover, .specialty-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.specialty-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
}

.specialty-card__body {
  padding: 22px 24px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.specialty-card__icon-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.specialty-card__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--md-mint);
  color: var(--md-green);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.specialty-card__icon-wrap--ink {
  background: var(--inklo-tint);
  color: var(--inklo-purple);
}

.specialty-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.specialty-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.specialty-card__copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.specialty-card__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--inklo-purple);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.specialty-card__cta-arrow { transition: transform 0.18s; }
.specialty-card:hover .specialty-card__cta-arrow { transform: translateX(4px); }

/* ============================================================
   PARTNERSHIP BLOCK
   ============================================================ */
.partnership-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) { .partnership-block { grid-template-columns: 1fr 1fr; gap: 24px; } }

.partnership-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .partnership-card { padding: 36px 32px; } }

.partnership-card__role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.partnership-card--md .partnership-card__role { background: var(--md-mint); color: var(--md-green-dark); }
.partnership-card--inklo .partnership-card__role { background: var(--inklo-tint); color: var(--inklo-purple-dark); }

.partnership-card__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
}

.partnership-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.partnership-card li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--text);
}
.partnership-card li::before {
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 9px;
}
.partnership-card--md li::before { background: var(--md-green); }
.partnership-card--inklo li::before { background: var(--inklo-purple); }

/* ============================================================
   STEPS — número em círculo conectado por linha
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
}
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: var(--border);
    z-index: 0;
  }
}

.steps--3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
}
@media (min-width: 768px) {
  .steps--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
  }
  .steps--3::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: var(--border);
    z-index: 0;
  }
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.step__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--inklo-purple);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 800;
  margin: -46px 0 14px;
  box-shadow: 0 0 0 6px var(--bg-white);
}
.section--alt .step__number { box-shadow: 0 0 0 6px var(--bg-soft); }
.section--md .step__number { box-shadow: 0 0 0 6px var(--bg-md); }

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

.step__copy {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   BENEFITS — Cards com SVG icons + metric badges
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .benefits { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(5, 1fr); } }

.benefits--2 { max-width: 720px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .benefits--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits--2 { grid-template-columns: repeat(2, 1fr); } }

.benefits--3 { max-width: 920px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .benefits--3 { grid-template-columns: repeat(3, 1fr); } }

.benefits--4 { max-width: 1080px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .benefits--4 { grid-template-columns: repeat(4, 1fr); } }

.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--md-mint);
  color: var(--md-green-dark);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit__icon--ink {
  background: var(--inklo-tint);
  color: var(--inklo-purple-dark);
}
.section--md .benefit__icon:not(.benefit__icon--metric) {
  background: var(--inklo-tint);
  color: var(--inklo-purple);
}
.benefit__icon--metric {
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 18px;
  font-weight: 800;
  padding: 0 14px;
  width: auto;
  min-width: 56px;
  letter-spacing: -0.02em;
}

.benefit__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

.benefit__copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   FEATURE CARDS — bloco visual com imagem + copy (sem CTA)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.feature-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
}
.feature-card__body {
  padding: 22px 24px 26px;
  text-align: center;
}
.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.feature-card__copy {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   CTA CALLOUT — banner inline mid-page (3º momento de CTA)
   ============================================================ */
.cta-callout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: var(--md-mint);
  border: 1px solid var(--md-mint-soft);
  border-radius: var(--radius);
  max-width: 920px;
  margin: 40px auto 0;
}
@media (min-width: 768px) { .cta-callout { padding: 28px 36px; } }

.cta-callout__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.cta-callout__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}
.cta-callout__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.cta-callout .btn { -ms-flex-negative: 0; flex-shrink: 0; }

@media (max-width: 639px) {
  .cta-callout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-align: center;
    padding: 24px;
  }
  .cta-callout__text { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
  .cta-callout .btn { width: 100%; }
}

/* Metric inline para hero (ex: "+2.000 leitos") */
.hero__metrics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero__metric { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.hero__metric-value { font-size: 22px; font-weight: 800; color: var(--md-green); letter-spacing: -0.02em; line-height: 1.1; }
.hero__metric-label { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--inklo-tint);
  color: var(--inklo-purple);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item__answer-inner {
  padding: 0 0 20px 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.is-open .faq-item__answer { max-height: 520px; }

/* ============================================================
   FINAL CTA — única caixa com gradient
   ============================================================ */
.final-cta {
  background-color: var(--inklo-purple);
  background-image: -webkit-linear-gradient(135deg, var(--inklo-purple) 0%, var(--inklo-purple-dark) 100%);
  background-image: linear-gradient(135deg, var(--inklo-purple) 0%, var(--inklo-purple-dark) 100%);
  padding: 48px 24px;
  border-radius: var(--radius);
  text-align: center;
  color: #FFFFFF;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) { .final-cta { padding: 64px 32px; } }

.final-cta--mixed {
  background-color: var(--md-green);
  background-image: -webkit-linear-gradient(135deg, var(--md-green) 0%, var(--inklo-purple) 100%);
  background-image: linear-gradient(135deg, var(--md-green) 0%, var(--inklo-purple) 100%);
}

.final-cta h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.final-cta p {
  font-size: clamp(14px, 1.3vw, 16px);
  margin: 0 0 26px;
  opacity: 0.88;
}

.final-cta__ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 479px) { .final-cta__ctas .btn { width: 100%; } }

/* Informativos complementares dentro do final-cta — sutis, não competem com CTAs */
.final-cta__chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin-top: 20px;
}
.final-cta__chips .hero__chip,
.final-cta__chips .hero__chip--gold {
  background: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0;
}
.final-cta__chips .hero__chip::before,
.final-cta__chips .hero__chip--gold::before {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.final-cta .btn--primary {
  background: var(--inklo-purple);
  color: #FFFFFF;
  border-color: transparent;
}
.final-cta .btn--primary:hover {
  background: var(--inklo-purple-dark);
  color: #FFFFFF;
}

.final-cta .btn--secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}
.final-cta .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #FFFFFF;
}

/* ============================================================
   FOOTER — verde escuro sólido
   ============================================================ */
.site-footer {
  background: var(--md-green-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 24px;
  font-size: 14px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }

.site-footer__brand .brand-logo {
  height: 32px;
  margin-bottom: 16px;
}
.site-footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  max-width: 300px;
  margin: 0;
}

.site-footer__title {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li, .site-footer p { margin-bottom: 8px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); transition: color 0.18s; }
.site-footer a:hover { color: #FFFFFF; }

.site-footer__disclaimers {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 18px;
}
.site-footer__disclaimers p { margin: 0 0 10px; }
.site-footer__disclaimers strong { color: #FFFFFF; }

.site-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0;
}

/* ============================================================
   STICKY CTA mobile + WhatsApp flutuante
   ============================================================ */
.sticky-cta-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  box-shadow: 0 -4px 14px rgba(20, 30, 28, 0.10);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta-mobile .btn { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
@media (min-width: 768px) { .sticky-cta-mobile { display: none; } body { padding-bottom: 0; } }
@media (max-width: 767px) { body { padding-bottom: 76px; } }

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 88px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 98;
  transition: transform 0.18s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #FFFFFF; }
@media (min-width: 768px) { .whatsapp-float { bottom: 24px; right: 24px; width: 56px; height: 56px; } .whatsapp-float svg { width: 28px; height: 28px; } }
/* No mobile a barra fixa já oferece WhatsApp; evita botão flutuante redundante e sobreposto. */
@media (max-width: 767px) { .whatsapp-float { display: none; } }

/* ============================================================
   VACINAS — tabela e formulário
   ============================================================ */
.vacinas-table {
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 8px;
  border-collapse: collapse;
  border: 1px solid var(--border);
}
.vacinas-table thead { background: var(--md-mint); }
.vacinas-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  color: var(--md-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.vacinas-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  vertical-align: top;
}
.vacinas-table td:last-child { color: var(--text-muted); font-size: 13px; }
@media (max-width: 639px) {
  .vacinas-table, .vacinas-table thead, .vacinas-table tbody, .vacinas-table tr, .vacinas-table th, .vacinas-table td { display: block; }
  .vacinas-table thead { display: none; }
  .vacinas-table tr { border-bottom: 1px solid var(--border); padding: 12px 4px; }
  .vacinas-table td { border: none; padding: 4px 14px; }
  .vacinas-table td:first-child { font-weight: 700; color: var(--md-green-dark); }
}

/* ============================================================
   VACCINE LIST — glossário de vacinas (lista limpa, sem tabela)
   ============================================================ */
.vaccine-block {
  max-width: 820px;
  margin: 0 auto;
}
.vaccine-block + .vaccine-block { margin-top: 56px; }

.vaccine-block__header { margin-bottom: 24px; text-align: center; }
.vaccine-block__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--md-green);
  display: inline-block;
  margin-bottom: 8px;
}
.vaccine-block__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.vaccine-block__intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 680px;
}

.vaccine-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--md-bg-soft);
  border: 1px solid var(--md-mint);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.vaccine-list__item {
  padding: 18px 22px;
  border-top: 1px solid var(--md-mint);
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
}
.vaccine-list__item:first-child { border-top: none; }
.vaccine-list__item:hover { background: var(--md-mint); }
.vaccine-list__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--md-green-dark);
  margin: 0 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.vaccine-list__name::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--md-green);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.vaccine-list__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  padding-left: 16px;
}

.interest-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .interest-form { padding: 32px; } }

.interest-form .field { margin-bottom: 14px; }
.interest-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.interest-form input,
.interest-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.18s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.interest-form input:focus, .interest-form select:focus {
  outline: none;
  border-color: var(--md-green);
}
.interest-form input[readonly] {
  background: var(--bg-soft);
  color: var(--text-muted);
  cursor: default;
}
.interest-form input[readonly]:focus { border-color: var(--border); }
.interest-form .btn { width: 100%; margin-top: 8px; }

/* Checkbox custom — ícone pequeno à esquerda do texto */
.interest-form .field--checkbox { margin-top: 18px; }
.interest-form .label--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
}
.interest-form .label--checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 2px solid var(--md-green);
  border-radius: 6px;
  background: var(--surface);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.interest-form .label--checkbox input[type="checkbox"]::before {
  content: "";
  width: 11px;
  height: 11px;
  transform: scale(0);
  transition: transform 0.12s ease-in-out;
  background: #FFFFFF;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}
.interest-form .label--checkbox input[type="checkbox"]:checked {
  background: var(--md-green);
  border-color: var(--md-green);
}
.interest-form .label--checkbox input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.interest-form .label--checkbox input[type="checkbox"]:focus-visible {
  outline: 3px solid var(--inklo-purple);
  outline-offset: 2px;
}
.interest-form .label--checkbox span { padding-top: 1px; }
.interest-form .label--checkbox a { color: var(--inklo-purple); text-decoration: underline; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.muted { color: var(--text-muted); font-size: 13px; line-height: 1.55; }
.disclaimer-note {
  font-size: 12px;
  color: var(--text-soft);
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.55;
}

.hidden { display: none !important; }
.wrap-narrow { max-width: 920px; margin-left: auto; margin-right: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   MODAL — Termos e condições (Consulta de Limite)
   ============================================================ */
.inklo-modal[hidden] { display: none; }
.inklo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.inklo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 28, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.inklo-modal.is-open .inklo-modal__backdrop { opacity: 1; }
.inklo-modal__dialog {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.inklo-modal.is-open .inklo-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.inklo-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--border);
}
.inklo-modal__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}
.inklo-modal__close {
  flex: 0 0 auto;
  appearance: none;
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  font-size: 24px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.inklo-modal__close:hover { background: var(--bg-soft); color: var(--text); }
.inklo-modal__body {
  padding: 8px 24px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.inklo-modal__terms {
  margin: 0;
  padding-left: 22px;
  counter-reset: termos;
  list-style: none;
}
.inklo-modal__terms > li {
  position: relative;
  margin-top: 22px;
  padding-left: 6px;
}
.inklo-modal__terms > li:first-child { margin-top: 8px; }
.inklo-modal__terms > li::before {
  counter-increment: termos;
  content: counter(termos) ".";
  position: absolute;
  left: -22px;
  top: 0;
  font-weight: 700;
  color: var(--md-green);
}
.inklo-modal__terms > li > h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.inklo-modal__terms p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.inklo-modal__terms p:last-child { margin-bottom: 0; }
.inklo-modal__terms strong { color: var(--text); font-weight: 600; }
.inklo-modal__terms ul {
  margin: 0 0 10px;
  padding-left: 20px;
}
.inklo-modal__terms ul li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 4px;
}
body.modal-open { overflow: hidden; }
@media (max-width: 600px) {
  .inklo-modal { padding: 0; align-items: stretch; }
  .inklo-modal__dialog { max-width: none; max-height: 100vh; border-radius: 0; }
}

/* ============================================================
   ACESSIBILIDADE — verde como TEXTO usa o tom escuro (AA)
   Verde Mater Dei #038E83 reprova AA em texto pequeno (~4:1);
   usa-se #026B62 (--md-green-dark, ~6.4:1) onde o verde é texto.
   ============================================================ */
.hero__chip::before,
.section__eyebrow--md,
.specialty-card__icon-wrap,
.hero__metric-value,
.vaccine-block__eyebrow,
.inklo-modal__terms > li::before {
  color: var(--md-green-dark);
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .sticky-cta-mobile, .whatsapp-float, .final-cta { display: none !important; }
  body { color: #000; background: #FFF; }
}
