/* ===== Tokens, reset e utilitários base ===== */
:root {
  --blue: #33699e;        /* fundo hero / contato */
  --navy: #1c406b;        /* títulos e navegação */
  --navy-dark: #163050;   /* rodapé */
  --green: #79bf42;       /* destaque / WhatsApp */
  --green-dark: #6aad38;
  --text: #5b6b7b;        /* corpo de texto */
  --bg-light: #f4f6f8;    /* seção clínicas */
  --map-bg: #e4eaf1;
  --white: #fff;

  --container: 1326px;    /* largura da grid — igual em todas as seções */
  --gutter: 24px;
  --radius: 20px;
  --shadow: 0 12px 30px rgba(28, 64, 107, .14);
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* sangria: distância da borda do container até a borda da viewport (seções full-bleed) */
  --bleed: calc(max(0px, (100vw - var(--container)) / 2) + var(--gutter));
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; font-weight: 700; }

/* container padrão da grid */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* blocos de cabeçalho de seção (rótulo + título) */
.section-head { display: flex; flex-direction: column; gap: 10px; }
.eyebrow {
  color: var(--green);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-title { font-size: clamp(30px, 4vw, 44px); }

/* botão pílula (WhatsApp / ação) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  border-radius: 100px;
  padding: 16px 32px;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn img { width: 26px; height: 26px; }
.btn--sm { padding: 12px 24px; font-size: 16px; gap: 8px; }
.btn--sm img { width: 18px; height: 18px; }
