/* ==========================================================
   LABBH — Landing Desktop Fix
   HTML + CSS + JS puro. Publicacao habilitada.
   ========================================================== */
@import url("tokens.css");

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: #fffdf9;
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.62;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--color-primary-dark);
}
p { color: var(--color-muted); }
address { font-style: normal; }

/* ── ACESSIBILIDADE ─────────────────────────────────────── */
.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 999;
  transform: translateY(-160%);
  background: var(--color-primary-dark); color: #fff;
  padding: .7rem 1rem; border-radius: 999px;
  transition: transform .2s;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(31,185,120,.75); outline-offset: 3px; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { width: min(100% - 48px, 1240px); margin-inline: auto; }
.section { padding: clamp(72px, 7vw, 104px) 0; }
.section-light { background: #f3fbf6; }
.section-head { max-width: 760px; margin: 0 auto 2.8rem; text-align: center; }
.section-head h2 { margin-top: .6rem; font-size: clamp(2.3rem, 4vw, 4rem); }
.section-head p  { margin-top: .9rem; font-size: 1.1rem; }

/* ── BADGES / TAGS ──────────────────────────────────────── */
.eyebrow, .section-tag {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(20,134,95,.18); border-radius: 999px;
  background: rgba(233,248,240,.96); color: var(--color-primary-soft);
  font-size: .76rem; font-weight: 800; letter-spacing: .08em;
  padding: .48rem .82rem; text-transform: uppercase; white-space: nowrap;
}
.section-tag.light {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.13);
  color: rgba(201,240,222,.95);
}

/* ── BOTÕES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 50px; border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font-body); font-size: .98rem; font-weight: 900;
  line-height: 1; padding: 0 26px; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }

.btn-primary {
  background: #05241f; color: #fff;
  box-shadow: 0 18px 40px rgba(5,36,31,.20);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(5,36,31,.28); }

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), #16a36a); color: #fff;
  box-shadow: 0 16px 36px rgba(31,185,120,.26);
}
.btn-accent:hover { box-shadow: 0 20px 44px rgba(31,185,120,.34); }

.btn-outline {
  background: rgba(255,255,255,.85);
  color: #0b4e3d;
  border-color: rgba(11,78,61,.35);
}
.btn-ghost {
  border-color: rgba(11,78,61,.18); background: rgba(255,255,255,.8);
  color: var(--color-primary-dark); box-shadow: var(--shadow-soft);
}
.btn-glass {
  border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.14);
  color: #fff;
}
.btn-partner {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #05241f;
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
.btn-results {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, color .18s;
}
.btn-results:hover { background: var(--color-primary); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.note-muted { margin-top: .8rem; font-size: .9rem; color: var(--color-muted); }
.note-light { margin-top: .9rem; font-size: .88rem; color: rgba(255,255,255,.65); }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: #05241f;
  color: #fff;
  font-size: .86rem;
  font-weight: 500;
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr .8fr;
  align-items: center;
  min-height: 34px;
  gap: 24px;
  white-space: nowrap;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 800; }
.topbar a:hover { text-decoration: underline; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.topbar-ico { flex: 0 0 auto; width: 15px; height: 15px; color: var(--color-accent); }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(5,36,31,.08);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  transition: box-shadow .22s ease, border-color .22s ease;
}
.site-header.is-scrolled {
  border-color: var(--color-line);
  box-shadow: 0 8px 28px rgba(5,36,31,.08);
}
.header-inner {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img {
  width: 165px; height: auto;
  display: block;
  object-fit: contain; border-radius: 10px;
  background: #fff; padding: 0;
}

/* nav: mobile = dropdown, desktop = flex */
.nav {
  position: fixed; inset: 80px 1rem auto;
  display: grid; max-height: calc(100dvh - 104px); overflow-y: auto;
  background: #fff; border: 1px solid var(--color-line);
  border-radius: 24px; box-shadow: var(--shadow-float);
  opacity: 0; pointer-events: none;
  transform: translateY(-10px); visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav.open { opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
.nav a {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary-dark); font-weight: 800;
  padding: 1rem 1.1rem;
}
.nav a:last-child { border-bottom: 0; }
.nav a[aria-current="page"] { color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.nav-toggle {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--color-line); border-radius: 13px; background: #fff;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 3px auto;
  background: var(--color-primary-dark); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── VISUALLY HIDDEN (oculto visualmente, indexável) ─────── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 58px 0 0;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 14% 20%, rgba(201,240,222,.78), transparent 35%),
    linear-gradient(90deg, #effaf3 0%, #fbfaf7 44%, #f8fbf8 100%);
}
.hero-grid {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy { display: grid; gap: 0; align-self: center; }
.hero-copy .eyebrow {
  min-height: 38px;
  padding: 0 20px;
  border-color: rgba(11,78,61,.20);
  background: rgba(255,255,255,.45);
  color: #0b4e3d;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .09em;
  margin-bottom: 26px;
}
.hero-title {
  margin: 0;
  max-width: 560px;
  color: #05241f;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: .98;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
}
.hero-title .hero-brand {
  display: block;
  color: #0b4e3d;
  font-size: clamp(2.7rem, 4.6vw, 3.9rem);
  line-height: .9;
  margin-bottom: 10px;
}
.hero-subtitle {
  max-width: 470px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #66756f;
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  max-width: 520px;
  margin-top: 28px;
}
.hero-benefit {
  display: flex; align-items: center; gap: 11px; min-width: 0;
  color: #14231d;
}
.hero-benefit-ico {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: #e9f8f0;
  border: 1px solid rgba(11,78,61,.12);
  color: #0b4e3d;
}
.hero-benefit-ico svg { width: 22px; height: 22px; }
.hero-benefit strong {
  color: #14231d; font-size: .9rem; font-weight: 800; line-height: 1.2;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px;
  margin-top: 30px;
}
.hero-actions .btn-primary { min-height: 50px; padding: 0 26px; font-size: 1rem; }
.hero-actions .btn-outline,
.hero-actions .btn-ghost { min-height: 50px; }
.hero-actions .btn-outline { background: rgba(255,255,255,.85); color: #0b4e3d; border-color: rgba(11,78,61,.35); }
.hero-whatsapp { gap: .6rem; }
.wa-ico {
  width: 21px; height: 21px; flex: 0 0 auto;
  color: #26d07c;
}
/* hero-media: imagem real com floating card */
.hero-media {
  position: relative;
  height: 560px;
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
  margin-right: 0;
  background: #eaf6ef;
  box-shadow: none;
}
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(239,250,243,.98) 0%,
    rgba(239,250,243,.90) 28%,
    rgba(239,250,243,.55) 48%,
    rgba(239,250,243,.08) 66%,
    transparent 82%);
  pointer-events: none;
}
.hero-floating-card {
  position: absolute;
  right: 56px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 260px;
  background: rgba(255,255,255,.96);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 22px 60px rgba(5,36,31,.18);
}
.hero-floating-ico {
  flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--color-accent), #16a36a);
  color: #fff;
}
.hero-floating-ico svg { width: 24px; height: 24px; }
.hero-floating-text { display: grid; gap: 2px; }
.hero-floating-text strong {
  color: #0b4e3d;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-floating-text span {
  color: #66756f;
  font-size: .82rem;
  line-height: 1.25;
}

/* ── FAIXA VERDE DE DIFERENCIAIS ────────────────────────── */
.trust-strip {
  background: #0b4e3d;
  color: white;
  padding: 24px 0;
  margin: 0;
}
.trust-strip-grid {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 13px; min-width: 0;
  color: #fff; font-size: .96rem; line-height: 1.25; font-weight: 800;
}
.trust-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.12);
  color: var(--color-mint);
  border: 1px solid rgba(255,255,255,.20);
}
.trust-ico svg { width: 23px; height: 23px; }

/* ── SEÇÃO O QUE VOCÊ PROCURA? ──────────────────────────── */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.quick-card {
  display: grid; gap: .5rem;
  background: #fff; border: 1px solid var(--color-line);
  border-radius: 24px; box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.35rem; min-height: 140px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31,185,120,.35);
  box-shadow: var(--shadow-md);
}
.quick-num {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 12px;
  background: rgba(233,248,240,.9); color: var(--color-primary);
  font-size: .8rem; font-weight: 900;
}
.quick-card strong { color: var(--color-primary-dark); font-size: 1rem; font-weight: 800; }
.quick-card small  { color: var(--color-muted); font-size: .86rem; line-height: 1.45; }

/* ── TOXICOLÓGICO ───────────────────────────────────────── */
.section-dark {
  background:
    radial-gradient(circle at 88% 10%, rgba(31,185,120,.24), transparent 32%),
    linear-gradient(135deg, #07312a, var(--color-primary-dark));
  color: #fff;
}
.section-dark h2, .section-dark p, .section-dark h3 { color: #fff; }
/* ── SEÇÃO 3 — EXAME TOXICOLÓGICO (Imagem 3) ───────────────── */
/* ── TOXICOLÓGICO (home) — painel branco + banner caminhão ── */
.section-tox {
  position: relative;
  overflow: visible;
  margin: 0;
  padding: clamp(1.4rem, 2.4vw, 2.4rem) 1rem clamp(1.6rem, 2.8vw, 2.6rem);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
  scroll-margin-top: 96px;
}
.tox-wrap {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  display: block;
}
.tox-panel {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(6, 64, 48, .12);
  box-shadow: 0 18px 42px rgba(4, 35, 27, .11);
}
.tox-banner {
  position: relative;
  min-height: clamp(450px, 38vw, 520px);
  padding: clamp(2.7rem, 4.8vw, 4rem) clamp(2.2rem, 5vw, 4.2rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg,
      rgba(0, 70, 52, .98) 0%,
      rgba(0, 78, 58, .94) 32%,
      rgba(0, 78, 58, .68) 50%,
      rgba(0, 0, 0, .05) 72%,
      rgba(0, 0, 0, 0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.12)),
    url("../img/toxicologico-caminhao.png");
  background-size: cover;
  background-position: center right;
}
.tox-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 58%);
  display: block;
}
.tox-badge { display: none !important; }
.tox-copy h2 {
  margin: 0 0 .65rem;
  color: #fff;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -0.045em;
}
@media (min-width: 1080px) {
  .tox-copy h2 { white-space: nowrap; }
}
.tox-lead {
  margin: 0 0 .82rem;
  color: #fff;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 850;
  line-height: 1.2;
}
.tox-lead::after {
  content: "";
  display: block;
  width: 42px; height: 3px;
  margin-top: .6rem;
  border-radius: 999px;
  background: #22c77a;
}
.tox-desc {
  max-width: 50ch;
  margin: 0 0 1.18rem;
  color: rgba(255,255,255,.9);
  font-size: .98rem;
  line-height: 1.55;
}
.section-tox .check-list {
  list-style: none;
  display: grid;
  gap: .62rem;
  margin: 0 0 1.35rem;
  padding: 0;
}
.section-tox .check-list li {
  display: flex;
  align-items: center;
  gap: .68rem;
  padding-left: 0;
  color: #fff;
  font-weight: 800;
  font-size: .96rem;
}
.section-tox .check-list li::before {
  content: "✓";
  position: static;
  transform: none;
  flex: 0 0 auto;
  width: 23px; height: 23px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(34,199,122,.92);
  border: 1px solid rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 900;
}
.section-tox .check-list li::after { content: none; }
.section-tox .btn-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .15rem;
}
.section-tox .btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 0 1.45rem;
  font-size: .92rem;
  font-weight: 850;
}
.section-tox .btn-accent,
.section-tox .tox-wa {
  background: #00a86b;
  color: #fff;
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: none;
}
.tox-wa { display: inline-flex; align-items: center; gap: .55rem; }
.tox-wa .wa-ico { width: 17px; height: 17px; color: #fff; }
.section-tox .btn-glass {
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.82);
  box-shadow: none;
}
.section-tox .btn-glass:hover { background: rgba(255,255,255,.14); }

.tox-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.85rem, 1.2vw, 1.1rem);
  padding: clamp(1.3rem, 2.2vw, 1.85rem) clamp(1.5rem, 3vw, 2.8rem) .85rem;
  background: #fff;
}
.tox-feature {
  min-height: 112px;
  padding: 1rem .95rem;
  border-radius: 11px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: #f7f8f8;
  border: 1px solid rgba(6,64,48,.07);
  color: #10261d;
  box-shadow: 0 8px 20px rgba(4,35,27,.035);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tox-feature:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 14px 30px rgba(4,35,27,.08);
}
.tox-feature-ico {
  width: 40px; height: 40px;
  margin-bottom: .55rem;
  color: #00865f;
  background: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 14px rgba(4,35,27,.075);
}
.tox-feature strong { color: #111; font-size: .95rem; line-height: 1.15; font-weight: 850; }
.tox-feature span { margin-top: .32rem; color: #525f5b; font-size: .8rem; line-height: 1.25; }

.tox-strip {
  margin: .25rem clamp(1.5rem, 3vw, 2.8rem) clamp(1.2rem, 2vw, 1.55rem);
  padding: .55rem .85rem;
  border-radius: 7px;
  background: #f5f6f6;
  border: 1px solid rgba(6,64,48,.06);
  color: #45524e;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3rem .95rem;
  font-size: .76rem;
  line-height: 1.18;
}
.tox-strip span { position: relative; color: inherit; font-weight: 600; }
.tox-strip span + span::before {
  content: "|";
  position: static;
  margin-right: .85rem;
  height: auto; width: auto;
  transform: none;
  background: none;
  color: rgba(69,82,78,.45);
}

/* Tablet */
@media (max-width: 980px) {
  .tox-banner {
    min-height: auto;
    padding: 3rem 1.5rem;
    background-position: center right;
  }
  .tox-copy { width: min(620px, 100%); }
  .tox-copy h2 { white-space: normal; }
  .tox-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* Mobile */
@media (max-width: 620px) {
  .section-tox { padding: 1.8rem .85rem; }
  .tox-wrap { width: 100%; }
  .tox-panel { border-radius: 14px; }
  .tox-banner {
    min-height: auto;
    padding: 2.4rem 1.15rem;
    background-image:
      linear-gradient(90deg,
        rgba(0,70,52,.98) 0%,
        rgba(0,78,58,.94) 58%,
        rgba(0,78,58,.66) 100%),
      linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.18)),
      url("../img/toxicologico-caminhao.png");
    background-position: center right;
  }
  .tox-copy { width: 100%; }
  .tox-copy h2 { font-size: clamp(1.95rem, 9.5vw, 2.65rem); white-space: normal; }
  .tox-lead { font-size: 1.05rem; }
  .tox-desc { font-size: .94rem; }
  .section-tox .btn-row { align-items: stretch; }
  .section-tox .btn-row .btn { width: 100%; justify-content: center; }
  .tox-features { grid-template-columns: 1fr; padding: 1rem; gap: .75rem; }
  .tox-feature {
    min-height: auto;
    padding: .95rem;
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
    column-gap: .8rem;
  }
  .tox-feature-ico { grid-row: span 2; margin-bottom: 0; }
  .tox-strip {
    margin: 0 1rem 1rem;
    border-radius: 10px;
    display: grid;
    gap: .45rem;
    text-align: center;
  }
  .tox-strip span + span::before { display: none; }
}

/* ── EXAMES LABORATORIAIS ───────────────────────────────── */
.exams-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-bottom: 1.8rem;
}
.exam-card {
  display: flex; align-items: center; gap: .7rem;
  background: #fff; border: 1px solid var(--color-line);
  border-radius: 20px; box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
  transition: transform .2s, box-shadow .2s;
}
.exam-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.exam-dot {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 12px;
  background: rgba(233,248,240,.9);
  display: grid; place-items: center;
}
.exam-dot::after {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: var(--color-accent);
}
.exam-card strong { color: var(--color-primary-dark); font-size: 1rem; }
.section-cta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

/* ── RESULTADOS + EMPRESAS / COLETA + CONCURSOS ─────────── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
.col-card {
  background: #fff; border: 1px solid var(--color-line);
  border-radius: 28px; box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 4vw, 2.2rem); display: grid; gap: .8rem;
}
.col-card h2 { margin-top: .5rem; font-size: clamp(2rem, 3.8vw, 3rem); }
.col-card .btn { margin-top: .4rem; }
.col-card-green {
  background:
    radial-gradient(circle at 90% 10%, rgba(31,185,120,.22), transparent 30%),
    var(--color-primary-dark);
  border-color: transparent; color: #fff;
}
.col-card-green h2, .col-card-green p { color: #fff; }
.col-card-green p { color: rgba(255,255,255,.82); }

.secure-box {
  background: rgba(233,248,240,.9); border: 1px solid rgba(20,134,95,.18);
  border-radius: 18px; padding: 1rem;
}
.secure-box strong {
  display: block; color: var(--color-primary-dark);
  font-size: .98rem; font-weight: 800;
}
.secure-box span { display: block; margin-top: .35rem; color: var(--color-muted); font-size: .9rem; }

.chips-wrap { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-light {
  border: 1px solid rgba(255,255,255,.24); border-radius: 999px;
  background: rgba(255,255,255,.13); color: rgba(255,255,255,.9);
  font-size: .82rem; font-weight: 800; padding: .35rem .85rem;
}

.steps-list { display: grid; gap: 1rem; }
.step {
  display: flex; gap: .9rem; align-items: flex-start;
}
.step > span {
  flex: 0 0 auto; width: 38px; height: 38px;
  border-radius: 13px; background: var(--color-primary-dark);
  color: #fff; font-weight: 900; font-size: .95rem;
  display: grid; place-items: center;
}
.step strong { color: var(--color-primary-dark); font-size: .98rem; }
.step p { margin-top: .25rem; font-size: .9rem; }

.contest-list {
  list-style: none; display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}
.contest-list li {
  background: rgba(233,248,240,.9); border: 1px solid rgba(20,134,95,.14);
  border-radius: 14px; color: var(--color-primary-dark);
  font-size: .9rem; font-weight: 800; padding: .65rem .9rem;
}

/* ── CTA FINAL / CONTATO ────────────────────────────────── */
.section-cta-final {
  background:
    radial-gradient(circle at 90% 0%, rgba(31,185,120,.22), transparent 30%),
    var(--color-primary-dark);
  color: #fff;
}
.section-cta-final h2, .section-cta-final p { color: #fff; }
.section-cta-final p { color: rgba(255,255,255,.8); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.cta-copy h2 { margin-top: .5rem; font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.contact-box {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px; padding: 1.4rem 1.6rem;
  display: grid; gap: .5rem;
}
.contact-box strong {
  color: #fff; font-family: var(--font-title); font-size: 1.5rem;
  margin-bottom: .2rem;
}
.contact-box span { color: rgba(255,255,255,.8); font-size: .96rem; }
.contact-box a { color: #fff; font-weight: 800; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #031a16; color: rgba(255,255,255,.7);
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand { font-weight: 800; font-size: .96rem; color: rgba(255,255,255,.86); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .9rem; font-weight: 800; }
.footer-links a:hover { color: #fff; }

/* ── FLOATING WHATSAPP ──────────────────────────────────── */
.floating-whatsapp {
  display: none;
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 85;
  min-height: 52px; padding: 0 1.2rem; border-radius: 999px;
  background: linear-gradient(135deg, #25d366, var(--color-accent));
  color: #fff; font-weight: 900;
  box-shadow: 0 14px 36px rgba(37,211,102,.32);
  align-items: center; justify-content: center;
}

/* ── MOBILE BOTTOM BAR — oculta por padrão (desktop first) */
.mobile-bottom-bar { display: none !important; }

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible, .reveal.in { opacity: 1; transform: none; }

/* ==========================================================
   DESKTOP ≥ 1024px
   ========================================================== */
@media (min-width: 1024px) {
  .nav {
    position: static; display: flex; justify-content: center; align-items: center;
    max-height: none; overflow: visible;
    border: 0; border-radius: 0; background: transparent; box-shadow: none;
    opacity: 1; pointer-events: auto; transform: none; visibility: visible;
    gap: 26px;
  }
  .nav a {
    border-bottom: 0; color: #24352f;
    text-decoration: none; font-weight: 800; font-size: .96rem;
    padding: 5px 10px; border-radius: 8px;
    transition: background .18s, color .18s;
  }
  .nav a:hover { background: var(--color-primary); color: #fff; }
  .nav a[aria-current="page"] { background: var(--color-primary); color: #fff; }
  .nav a[aria-current="page"]:hover { background: var(--color-primary-dark); }
  .nav-toggle { display: none !important; }
  .btn-partner { display: inline-flex; }
  .btn-results { display: inline-flex; }

  .header-inner {
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 28px;
  }

  .hero { padding: 58px 0 0; }
  .hero-grid {
    grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
    align-items: center;
    gap: 42px;
    min-height: 560px;
  }
  .hero-copy { padding-bottom: 42px; }
  .hero-title { max-width: 560px; font-size: clamp(3.05rem, 4.1vw, 4.75rem); }
  .hero-title .hero-brand { font-size: clamp(4rem, 5.4vw, 6.1rem); }
  .hero-media { margin-right: calc((100vw - 1240px) / -2); }
  .trust-strip-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }

  .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tox-grid { grid-template-columns: minmax(0, 1fr) minmax(440px, 1.05fr); }
  .tox-features { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .exams-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .two-col-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-grid { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); }

  .floating-whatsapp { display: none !important; }
  .mobile-bottom-bar { display: none !important; }
}

/* ==========================================================
   ≤ 1180px — evitar menu espremido e imagem estourando
   ========================================================== */
@media (max-width: 1180px) {
  .container,
  .hero-grid,
  .trust-strip-grid { width: min(100% - 36px, 1080px); }

  .header-inner { grid-template-columns: 180px 1fr auto; gap: 20px; }
  .brand img { width: 148px; }
  .nav { gap: 18px; }
  .nav a { font-size: .9rem; }

  .hero-grid { grid-template-columns: minmax(0, .45fr) minmax(0, .55fr); gap: 32px; }
  .hero-title { font-size: clamp(2.8rem, 4vw, 4.2rem); }
  .hero-title .hero-brand { font-size: clamp(3.5rem, 5vw, 5.4rem); }
  .hero-media { margin-right: -18px; }
}

/* ==========================================================
   ≤ 980px — tablet: hero em coluna única
   ========================================================== */
@media (max-width: 980px) {
  .topbar { display: none; }

  .header-inner { min-height: 74px; grid-template-columns: 160px 1fr auto; }

  .nav { display: none; }
  .nav.open {
    display: grid; position: fixed; inset: 74px 1rem auto;
    max-height: calc(100dvh - 96px); overflow-y: auto;
    background: #fff; border: 1px solid var(--color-line);
    border-radius: 24px; box-shadow: var(--shadow-float);
    opacity: 1; pointer-events: auto; transform: none; visibility: visible;
  }
  .nav-toggle { display: grid !important; }

  .hero { padding: 42px 0 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-copy { padding-bottom: 0; }
  .hero-title { max-width: 720px; font-size: clamp(2.6rem, 7vw, 4.2rem); }
  .hero-title .hero-brand { font-size: clamp(3.2rem, 8vw, 5rem); }
  .hero-subtitle { max-width: 680px; }
  .hero-benefits { max-width: 680px; }

  .hero-media {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    height: 420px;
    min-height: 420px;
    border-radius: 26px 26px 0 0;
  }
  .hero-floating-card { right: 24px; bottom: 24px; }
  .trust-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .tox-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .exams-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   ≤ 767px — mobile
   ========================================================== */
@media (max-width: 767px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

  .container,
  .hero-grid,
  .trust-strip-grid { width: min(100% - 32px, 100%); }

  .site-header { position: sticky; top: 0; }
  .header-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }
  .brand img { width: 128px; }
  .btn-partner { min-height: 42px; padding: 0 16px; font-size: .86rem; }
  .nav-toggle { width: 44px; height: 44px; border-radius: 14px; }

  .hero { padding: 32px 0 0; }
  .hero-copy .eyebrow {
    min-height: 34px; padding: 0 14px;
    font-size: .68rem; max-width: 100%;
  }
  .hero-title { font-size: clamp(2.35rem, 11vw, 3.3rem); line-height: 1; letter-spacing: -0.04em; }
  .hero-title .hero-brand { font-size: clamp(3rem, 14vw, 4.1rem); margin-bottom: 8px; }
  .hero-subtitle { font-size: 1rem; line-height: 1.55; }
  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }
  .hero-benefit-ico { width: 40px; height: 40px; }
  .hero-benefit strong { font-size: .82rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .btn { width: 100%; min-height: 52px; white-space: normal; }

  .hero-media {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    height: 330px;
    min-height: 330px;
    border-radius: 24px 24px 0 0;
  }
  .hero-floating-card {
    left: auto; right: 16px; bottom: 16px;
    width: auto; padding: 14px 16px; border-radius: 18px;
  }
  .hero-floating-text strong { font-size: 1.35rem; }
  .hero-floating-text span { font-size: .78rem; }

  .trust-strip { padding: 18px 0; }
  .trust-strip-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-item { font-size: .9rem; }

  .mobile-bottom-bar {
    display: flex !important;
    align-items: center;
    position: fixed;
    left: .75rem; right: .75rem;
    bottom: calc(.7rem + env(safe-area-inset-bottom));
    z-index: 90;
    gap: .4rem;
    border: 1px solid rgba(255,255,255,.5); border-radius: 22px;
    background: rgba(255,255,255,.95); box-shadow: var(--shadow-float);
    padding: .45rem; backdrop-filter: blur(14px);
  }
  .mobile-bottom-bar a {
    display: grid; place-items: center;
    flex: 1 1 0;
    min-height: 44px; border-radius: 16px;
    color: var(--color-primary-dark); font-size: .86rem; font-weight: 900;
  }
  .mobile-bottom-bar a:first-child {
    flex-grow: 1.25;
    background: linear-gradient(135deg, #25d366, var(--color-accent));
    color: #fff;
  }

  main, .footer { padding-bottom: 86px; }
  .footer-inner { flex-direction: column; }

  .quick-grid { grid-template-columns: 1fr; }
  .exams-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   ≤ 430px — celular pequeno
   ========================================================== */
@media (max-width: 430px) {
  .brand img { width: 116px; }
  .btn-partner { padding: 0 12px; font-size: .8rem; }
  .hero-title { font-size: clamp(2.1rem, 10.5vw, 2.85rem); }
  .hero-title .hero-brand { font-size: clamp(2.8rem, 13vw, 3.55rem); }
  .hero-media { height: 300px; min-height: 300px; }
}

/* ==========================================================
   PRINT
   ========================================================== */
@media print {
  .mobile-bottom-bar,
  .floating-whatsapp,
  .nav-toggle { display: none !important; }
  body { background: #fff !important; }
  section { break-inside: avoid; }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   Topo desktop - ajuste visual mockup aprovado
   ========================================================== */
@media (min-width: 1024px) {
  .container,
  .hero-grid,
  .trust-strip-grid {
    width: min(100% - 48px, 1240px);
  }

  .topbar {
    background: #05241f;
    color: #fff;
    font-size: .82rem;
    font-weight: 650;
    letter-spacing: -.01em;
    line-height: 1;
  }

  .topbar-inner {
    grid-template-columns: minmax(285px, 1.45fr) minmax(128px, .68fr) minmax(215px, .95fr) minmax(170px, .72fr);
    min-height: 32px;
    gap: 22px;
    align-items: center;
  }

  .site-header {
    background: rgba(255,255,255,.98);
    border-bottom-color: rgba(5,36,31,.075);
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: 202px minmax(0, 1fr) auto;
    gap: 24px;
  }

  .brand img {
    width: 174px;
    border-radius: 0;
  }

  .nav {
    gap: clamp(2px, 1vw, 14px);
  }

  .nav a {
    color: #23362f;
    font-size: .88rem;
    font-weight: 850;
    padding: 5px 9px;
    border-radius: 8px;
    transition: background .18s, color .18s;
  }
  .nav a:hover { background: var(--color-primary); color: #fff; }

  .btn-partner {
    min-height: 36px;
    padding: 0 18px;
    font-size: .9rem;
    box-shadow: 0 8px 20px rgba(5,36,31,.14);
  }
  .btn-results { min-height: 34px; padding: 0 14px; font-size: .88rem; }

  .hero {
    padding: 0;
  }

  .hero-grid {
    grid-template-columns: min(56%, 660px);
    gap: 0;
    min-height: 580px;
    align-items: start;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
    align-self: start;
    padding: 46px 0 40px;
  }

  .hero-title {
    max-width: 580px;
    font-size: clamp(2.72rem, 3.55vw, 4.18rem);
  }

  .hero-subtitle {
    max-width: 460px;
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-benefits {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 580px;
    margin-top: 22px;
    padding: 12px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 8px 28px rgba(5,36,31,.11);
  }

  .hero-benefit {
    flex-direction: row;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.7);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(11,78,61,.07);
    box-shadow: 0 2px 8px rgba(5,36,31,.05);
    transition: transform .18s, box-shadow .18s;
    animation: labbhFadeUp .55s var(--ease) both;
  }
  .hero-benefit:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(5,36,31,.10); }
  .hero-benefit:nth-child(1) { animation-delay: .38s; }
  .hero-benefit:nth-child(2) { animation-delay: .44s; }
  .hero-benefit:nth-child(3) { animation-delay: .50s; }
  .hero-benefit:nth-child(4) { animation-delay: .56s; }
  .hero-benefit:nth-child(5) { animation-delay: .62s; }
  .hero-benefit:nth-child(6) { animation-delay: .68s; }

  .hero-benefit-ico {
    flex: 0 0 auto;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: #fff;
    transition: transform .2s, background .2s;
  }
  .hero-benefit:hover .hero-benefit-ico { transform: scale(1.08); background: var(--color-accent); }
  .hero-benefit-ico svg { width: 22px; height: 22px; }
  .hero-benefit strong { font-size: .82rem; line-height: 1.2; color: #0b3d2e; }

  .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 22px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .btn-ghost {
    min-height: 44px;
  }

  .hero-actions .btn-primary {
    padding: 0 22px;
    font-size: .95rem;
    box-shadow: 0 12px 32px rgba(5,36,31,.26);
  }
  .hero-actions .btn-outline { padding: 0 18px; font-size: .93rem; }
  .hero-tel {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 0 16px; min-height: 44px; border-radius: 999px;
    color: var(--color-primary); font-weight: 700; font-size: .88rem;
    text-decoration: none; white-space: nowrap;
    border: 1.5px solid rgba(11,78,61,.22);
    transition: border-color .18s, color .18s;
  }
  .hero-tel:hover { border-color: var(--color-primary); color: var(--color-primary-dark); }
  .hero-tel svg { width: 16px; height: 16px; flex: 0 0 auto; }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    margin-right: 0;
    border-radius: 0;
  }

  .hero-media img {
    object-fit: cover;
    object-position: right center;
  }

  .hero-floating-card {
    right: 48px;
    bottom: 96px;
    width: 280px;
    padding: 18px 20px;
    z-index: 2;
    box-shadow: 0 24px 64px rgba(5,36,31,.22);
  }

  .trust-strip {
    padding: 22px 0;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
  }

  .trust-item {
    font-size: .95rem;
    line-height: 1.22;
  }

  .floating-whatsapp,
  .mobile-bottom-bar {
    display: none !important;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .container,
  .hero-grid,
  .trust-strip-grid {
    width: min(100% - 36px, 1080px);
  }

  .topbar {
    font-size: .76rem;
  }

  .topbar-inner {
    gap: 16px;
  }

  .header-inner {
    grid-template-columns: 172px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .brand img {
    width: 154px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: .86rem;
  }

  .btn-partner {
    min-height: 44px;
    padding: 0 18px;
    font-size: .88rem;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .43fr) minmax(0, .57fr);
    gap: 28px;
    min-height: 520px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 3.7vw, 3.65rem);
  }

  .hero-title .hero-brand {
    font-size: clamp(3.45rem, 5vw, 5.05rem);
  }

  .hero-subtitle {
    font-size: .99rem;
  }

  .hero-benefits { gap: 12px; }
  .hero-benefit-ico { width: 38px; height: 38px; }
  .hero-benefit strong { font-size: .74rem; }

  .hero-media {
    width: calc(100% + 18px);
    height: 520px;
    min-height: 520px;
    margin-right: -18px;
  }

  .hero-floating-card {
    right: 28px;
    bottom: 32px;
    width: 300px;
  }
}

/* ==========================================================
   SEÇÕES FULL-PAGE + ANIMAÇÕES (ajuste solicitado)
   Cada seção ocupa a altura da viewport, com conteúdo
   centralizado — leitura "hermética", sem cortes.
   ========================================================== */
html { scroll-padding-top: 96px; }

/* Seções da home: altura natural (sem "ilha" de tela cheia).
   Apenas o hero mantém a primeira dobra. */
.section {
  min-height: 0;
  display: block;
  scroll-margin-top: 96px;
}

/* Toxicológico da home: altura natural e compacta (sem espaço morto) */
.section.section-tox,
.section.section-exames {
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
  align-items: initial !important;
  justify-content: initial !important;
  position: relative;
  overflow: visible;
}
.section-tox + .section-exames,
.section.section-tox + .section.section-exames {
  margin-top: 0 !important;
}
.section-exames { clear: both; padding-top: clamp(1.6rem, 2.8vw, 2.4rem); }
.section-tox, .section-exames { scroll-margin-top: 96px; }
/* seções curtas não devem forçar snap (evita "invasão" da próxima seção) */
.section.section-tox, .section.section-exames { scroll-snap-align: none !important; }
.tox-wrap, .tox-panel { position: relative; z-index: 1; }
.section-exames .container, .exames-full { position: relative; z-index: 1; }

/* Hero (primeira página) preenche a viewport, deixando a
   faixa de diferenciais logo abaixo do dobra. */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 118px);
  min-height: calc(100dvh - 118px);
}

/* Rolagem: snap desativado (causava salto/sobreposição entre seções de alturas mistas) */
@media (min-width: 1024px) {
  html { scroll-snap-type: none; }
  .hero { min-height: calc(100vh - 210px); }
}

/* ── Animação de entrada do hero (ao carregar) ── */
@keyframes labbhFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes labbhFloatIn {
  from { opacity: 0; transform: translateY(18px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
@keyframes labbhFadeSide {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-copy .eyebrow,
.hero-title,
.hero-subtitle,
.hero-benefits,
.hero-actions { animation: labbhFadeUp .72s var(--ease) both; }

.hero-copy .eyebrow { animation-delay: .05s; }
.hero-title        { animation-delay: .14s; }
.hero-subtitle     { animation-delay: .24s; }
.hero-benefits     { animation-delay: .34s; }
.hero-actions      { animation-delay: .44s; }

.hero-media { animation: labbhFadeSide .85s var(--ease) both; animation-delay: .2s; }
.hero-floating-card { animation: labbhFloatIn .7s var(--ease) both; animation-delay: .72s; }

.trust-item { animation: labbhFadeUp .6s var(--ease) both; }
.trust-item:nth-child(1) { animation-delay: .5s; }
.trust-item:nth-child(2) { animation-delay: .58s; }
.trust-item:nth-child(3) { animation-delay: .66s; }
.trust-item:nth-child(4) { animation-delay: .74s; }

/* Em telas curtas, não forçar 100vh (evita cortes/rolagem presa) */
@media (max-height: 720px) and (min-width: 1024px) {
  .section { min-height: auto; padding: clamp(64px, 8vh, 96px) 0; }
  .hero { min-height: auto; }
  html { scroll-snap-type: none; }
}
@media (max-width: 767px) {
  html { scroll-snap-type: none; scroll-padding-top: 0; }
  .section { min-height: auto; }
  .hero { min-height: auto; }
}

/* ==========================================================
   SEÇÃO 2 — EXAMES COMPLETOS + CONVÊNIOS + NÚMEROS (Imagem 2)
   ========================================================== */

/* ── Exames completos ── */
.exames-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.exames-intro { display: grid; gap: 1rem; align-content: center; }
.exames-intro h2 { margin-top: .3rem; font-size: clamp(2rem, 3.6vw, 3.2rem); }
.exames-intro p { font-size: 1.05rem; max-width: 420px; }
.exames-intro .btn { margin-top: .6rem; justify-self: start; }

.exames-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.exame-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.exame-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31,185,120,.35);
}
.exame-card-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.exame-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.exame-card:hover .exame-card-media img { transform: scale(1.06); }
.exame-card-label {
  display: block;
  padding: 14px 14px 16px;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--color-primary-dark);
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
}

/* ── Convênios e parceiros (faixa) ── */
.convenios-band { padding: clamp(52px, 7vw, 88px) 0; }
.convenios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.convenios-intro h2 {
  margin-top: .5rem;
  font-size: clamp(1.7rem, 2.9vw, 2.5rem);
  max-width: 520px;
}
.convenios-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.convenio-card {
  min-height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 16px 38px rgba(5,36,31,.20);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.convenio-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(5,36,31,.28); }
.convenio-name {
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--color-primary);
  font-size: .98rem;
  line-height: 1.25;
  letter-spacing: .01em;
}

/* ── LABBH em números (faixa) ── */
.stats-band {
  background: #f3fbf6;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(40px, 5vw, 64px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1rem;
  text-align: center;
}
.stat { display: grid; justify-items: center; gap: .3rem; }
.stat-ico {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: #e9f8f0;
  color: var(--color-primary);
  border: 1px solid rgba(11,78,61,.12);
  margin-bottom: .35rem;
}
.stat-ico svg { width: 26px; height: 26px; }
.stat strong {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
}
.stat-label { color: var(--color-muted); font-size: .9rem; font-weight: 600; }

/* ── Responsivo Seção 2 ── */
@media (min-width: 640px) {
  .exames-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .convenios-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .exames-full {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.65fr);
    gap: 3rem;
  }
  .exames-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .convenios-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 2.5rem;
  }
  .stats-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
  .stat + .stat { border-left: 1px solid var(--color-border); }
}

/* ═══════════════════════════════════════════════════════════
   Atendimento Laboratorial section (V5 — ajuste fino compacto)
   ═══════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.section-atendimento-lab {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 3vw, 3rem) 1.25rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(14,126,89,.06), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(14,126,89,.05), transparent 30%),
    linear-gradient(180deg, #f7fcf9 0%, #ffffff 48%, #f2faf5 100%);
  scroll-margin-top: 92px;
}

.atendimento-shell {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  padding: clamp(1.65rem, 2.6vw, 2.65rem) clamp(1.2rem, 2.8vw, 2.6rem) clamp(1.75rem, 2.8vw, 2.75rem);
  border-radius: clamp(1.45rem, 2.2vw, 2rem);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(6,64,48,.08);
  box-shadow: 0 18px 48px rgba(4,35,27,.07);
  overflow: hidden;
}

.atendimento-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(1.35rem, 2.2vw, 2.05rem);
}
.atendimento-title {
  margin: 0;
  color: #06382d;
  font-size: clamp(2.25rem, 3.05vw, 3.55rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.atendimento-subtitle {
  max-width: 720px;
  margin: .65rem auto 0;
  color: #53645f;
  font-size: clamp(.92rem, 1vw, 1.02rem);
  line-height: 1.45;
}

.atendimento-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.9rem, 1.35vw, 1.25rem);
}

.lab-service-card {
  position: relative;
  min-height: 190px;
  height: 190px;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  display: block;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(6,64,48,.10);
  box-shadow: 0 12px 28px rgba(4,35,27,.075);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lab-service-card__media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 54%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform .28s ease;
}
.lab-service-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -24%;
  left: -30%;
  width: 75%;
  height: 154%;
  border-radius: 50%;
  background: rgba(255,255,255,.97);
  box-shadow: 18px 0 30px rgba(255,255,255,.72);
  pointer-events: none;
}
.lab-service-card__content {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 245px;
  height: 100%;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.lab-service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: .65rem;
  color: #006b4d;
  background: rgba(0,128,91,.10);
  border: 1px solid rgba(0,128,91,.12);
}
.lab-service-card__icon svg { width: 22px; height: 22px; }
.lab-service-card__title {
  display: block;
  color: #06382d;
  font-size: clamp(1.08rem, 1.12vw, 1.32rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: .45rem;
}
.lab-service-card__text {
  display: block;
  max-width: 190px;
  color: #4f625d;
  font-size: .84rem;
  line-height: 1.34;
}
.lab-service-card__arrow {
  position: absolute;
  z-index: 3;
  right: .85rem;
  bottom: .85rem;
  left: auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,89,65,.14);
  color: #006b4d;
  box-shadow: 0 8px 18px rgba(4,35,27,.08);
  transition: transform .22s ease, background .22s ease;
}
.lab-service-card__arrow svg { width: 16px; height: 16px; }
.lab-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,111,78,.20);
  box-shadow: 0 18px 40px rgba(4,35,27,.12);
}
.lab-service-card:hover .lab-service-card__media { transform: scale(1.03); }
.lab-service-card:hover .lab-service-card__arrow {
  transform: translateX(3px);
  background: #fff;
}
.lab-service-card:focus-visible {
  outline: 3px solid rgba(0,128,91,.25);
  outline-offset: 4px;
}

/* Barra de confiança */
.atendimento-trust {
  max-width: 1040px;
  margin: clamp(1.15rem, 2vw, 1.75rem) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: .8rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(6,64,48,.09);
  box-shadow: 0 12px 28px rgba(4,35,27,.055);
}
.atendimento-trust__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .2rem .75rem;
}
.atendimento-trust__item + .atendimento-trust__item {
  border-left: 1px solid rgba(6,64,48,.10);
}
.atendimento-trust__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #006b4d;
  background: rgba(0,128,91,.08);
}
.atendimento-trust__icon svg { width: 18px; height: 18px; }
.atendimento-trust__meta { display: block; min-width: 0; }
.atendimento-trust__title {
  display: block;
  color: #06382d;
  font-weight: 850;
  line-height: 1.12;
  font-size: .78rem;
}
.atendimento-trust__text {
  display: block;
  margin-top: .12rem;
  color: #5b6b66;
  font-size: .68rem;
  line-height: 1.2;
}

/* Mobile */
@media (max-width: 900px) {
  .section-atendimento-lab { padding: 1.8rem .9rem; }
  .atendimento-shell {
    width: 100%;
    padding: 1.55rem .85rem 1rem;
    border-radius: 20px;
  }
  .atendimento-head { margin-bottom: 1.15rem; }
  .atendimento-title {
    font-size: clamp(1.85rem, 7.4vw, 2.45rem);
    line-height: 1.04;
  }
  .atendimento-subtitle {
    font-size: .86rem;
    line-height: 1.42;
    margin-top: .55rem;
  }
  .atendimento-grid {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .lab-service-card {
    height: 104px;
    min-height: 104px;
    border-radius: 16px;
  }
  .lab-service-card__media { width: 36%; }
  .lab-service-card::before {
    top: -42%;
    left: -32%;
    width: 88%;
    height: 185%;
  }
  .lab-service-card__content {
    width: 70%;
    max-width: none;
    padding: .7rem .8rem;
  }
  .lab-service-card__icon {
    width: 34px;
    height: 34px;
    margin-bottom: .35rem;
  }
  .lab-service-card__icon svg { width: 19px; height: 19px; }
  .lab-service-card__title {
    font-size: .92rem;
    margin-bottom: .12rem;
  }
  .lab-service-card__text {
    font-size: .74rem;
    line-height: 1.2;
    max-width: 170px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lab-service-card__arrow {
    width: 26px;
    height: 26px;
    right: .55rem;
    bottom: .55rem;
    left: auto;
  }
  .atendimento-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: .75rem;
    padding: .6rem;
    gap: .25rem;
    border-radius: 16px;
  }
  .atendimento-trust__item {
    border-left: 0 !important;
    padding: .35rem;
    gap: .4rem;
  }
  .atendimento-trust__icon { width: 28px; height: 28px; }
  .atendimento-trust__title { font-size: .66rem; }
  .atendimento-trust__text { display: none; }
}

@media (max-width: 460px) {
  .lab-service-card__media { width: 34%; }
  .lab-service-card__content { width: 72%; }
}

@media (prefers-reduced-motion: reduce) {
  .lab-service-card,
  .lab-service-card::before,
  .lab-service-card__media,
  .lab-service-card__arrow {
    transition: none !important;
    animation: none !important;
  }
}


/* =========================================================
   LABBH HOME — FLUXO NATURAL — SEÇÕES FINAIS
   Sem scroll-snap, sem height fixa, sem hiper espaço.
   ========================================================= */

/* Variáveis adicionais */
:root {
  --labbh-green-950: #062F28;
  --labbh-green-900: #073D34;
  --labbh-green-800: #075343;
  --labbh-green-600: #0D8B68;
  --labbh-mint: #E8F7F1;
  --labbh-bg-soft: #F4FBF7;
  --labbh-border: #DDEAE5;
  --labbh-shadow: 0 18px 50px rgba(6,47,40,.10);
  --labbh-header-offset: 96px;
}

/* Reset global de snap / seções */
html, body {
  scroll-snap-type: none !important;
  overflow-x: hidden;
}
html {
  scroll-padding-top: var(--labbh-header-offset);
  scroll-behavior: smooth;
}
main > section, main > div {
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}

/* ── SEÇÕES COM labbh-screen: só hero tem presença de tela ── */
body main > section.labbh-screen {
  scroll-margin-top: var(--labbh-header-offset);
}
@media (min-width: 981px) {
  body main > section#home.labbh-screen,
  body main > section.hero.labbh-screen {
    min-height: calc(100svh - var(--labbh-header-offset)) !important;
    height: auto !important;
    overflow: hidden !important;
  }
  body main > section.labbh-screen:not(#home):not(.hero) {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Seções sem labbh-screen: sempre naturais */
#exames, #resultados, #coleta, #contato,
.home-convenios-section {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

/* ── SEÇÃO EXAMES ── */
#exames.section-exames {
  background: var(--labbh-bg-soft);
  display: block !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
  padding: clamp(3.25rem,5vw,4.75rem) 0 clamp(4rem,6vw,6rem) !important;
}
#exames .exames-full {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto !important;
  display: grid;
  grid-template-columns: minmax(300px,.88fr) minmax(0,1.45fr);
  gap: clamp(2.6rem,4.5vw,4.75rem);
  align-items: start !important;
  transform: none !important;
}
#exames .exames-intro {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 460px;
  align-self: start !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#exames .exames-intro h2 {
  font-size: clamp(2.5rem,3vw,3.85rem) !important;
  line-height: 1 !important;
  color: var(--labbh-green-900);
  letter-spacing: -.045em;
  max-width: 540px;
  margin: 0 0 1.1rem 0 !important;
}
#exames .exames-intro p:not(.section-tag) { color: #63756F; max-width: 500px; font-size: clamp(1rem,1.05vw,1.1rem); line-height: 1.65; }
#exames .exames-cards { align-self: start !important; margin-top: 0 !important; }
.exames-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(16px,2vw,24px);
}
.exame-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--labbh-border);
  box-shadow: 0 8px 28px rgba(6,47,40,.07);
  text-decoration: none;
  color: var(--labbh-green-900);
  transition: transform .2s ease, box-shadow .2s ease;
}
.exame-card:hover { transform: translateY(-4px); box-shadow: var(--labbh-shadow); }
.exame-card-media { display: block; height: clamp(120px,14vw,155px); overflow: hidden; }
.exame-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.exame-card:hover .exame-card-media img { transform: scale(1.05); }
.exame-card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: .55rem .75rem;
  font-size: .94rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

/* ── MACROSEÇÃO CONVÊNIOS + NÚMEROS (fiel à referência) ── */
.home-convenios-section {
  background: var(--labbh-bg-soft);
  padding: clamp(56px,7vw,96px) 0;
}
.home-convenios-section > .container {
  display: flex;
  flex-direction: column;
  gap: clamp(28px,3.4vw,40px);
  width: min(1300px, calc(100% - 48px));
}

.convenios-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: clamp(460px,44vw,540px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  background:
    radial-gradient(120% 130% at 8% 20%, #00513f 0%, #003728 62%, #002a1f 100%);
  box-shadow: 0 30px 80px rgba(3,48,41,.18);
  color: #fff;
  isolation: isolate;
}
.convenios-hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(2.2rem,3.6vw,3.4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.convenios-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: max-content;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(120,230,170,.14);
  border: 1px solid rgba(160,255,210,.25);
  color: #bff3d4;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 800;
  text-transform: uppercase;
}
.convenios-eyebrow svg { width: 15px; height: 15px; }
.convenios-title {
  color: #fff;
  font-size: clamp(2.4rem,3.8vw,3.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
  max-width: 460px;
  margin: .2rem 0 0;
}
.convenios-title-accent { color: #8FF0B4; }
.convenios-lead {
  color: rgba(255,255,255,.88);
  max-width: 52ch;
  font-size: clamp(1rem,1.3vw,1.12rem);
  line-height: 1.55;
}
.convenios-proofline {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  font-weight: 600;
}
.convenios-proofline svg { width: 20px; height: 20px; flex: 0 0 auto; color: #8FF0B4; }
.convenios-logos-label {
  margin-top: .4rem;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(180,240,205,.8);
  font-weight: 800;
}
.convenios-logos {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.convenios-logos-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: convenios-marquee 32s linear infinite;
}
.convenios-logos:hover .convenios-logos-track { animation-play-state: paused; }
@keyframes convenios-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.convenio-logo-card {
  flex: 0 0 auto;
  min-width: 150px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 16px;
  background: #fff;
  color: #063b33;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.convenio-logo-more { background: rgba(255,255,255,.12); color: #eafff3; border: 1px dashed rgba(255,255,255,.4); }
.convenios-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: .6rem;
  max-width: 640px;
}
.convenios-audience-card {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 66px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(160,255,210,.28);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.convenios-audience-card svg { width: 22px; height: 22px; flex: 0 0 auto; color: #8FF0B4; }
.convenios-audience-card:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.convenios-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  z-index: 1;
}
.convenios-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  filter: saturate(1.03) contrast(1.02) brightness(1.04);
}
.convenios-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,42,31,.99) 46%, rgba(0,55,40,.78) 60%, rgba(0,55,40,.28) 76%, rgba(0,55,40,0) 100%);
}

/* Stats card */
.convenios-stats-card {
  background: #fff;
  border: 1px solid var(--labbh-border);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(2,40,34,.07);
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  padding: 34px 42px;
}
.convenios-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  min-height: 104px;
  justify-content: center;
  padding: .4rem 1rem;
  position: relative;
}
.convenios-stat + .convenios-stat::before {
  content: "";
  position: absolute;
  left: 0; top: 16%; height: 68%;
  width: 1px;
  background: rgba(5,61,52,.12);
}
.convenios-stat .stat-ico {
  width: 46px; height: 46px;
  background: var(--labbh-mint);
  border: 1px solid #c7eadf;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #00866f;
}
.convenios-stat .stat-ico svg { width: 22px; height: 22px; }
.convenios-stat strong {
  font-size: clamp(1.3rem,1.9vw,1.9rem);
  line-height: 1.05;
  color: #063b33;
  font-weight: 900;
  letter-spacing: -.03em;
}
.convenios-stat .stat-label {
  font-size: .8rem;
  color: #5f716d;
  font-weight: 600;
  line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
  .convenios-logos-track { animation: none; }
}

/* ── RESULTADOS + EMPRESAS ── */
#resultados .two-col-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.05fr);
  gap: clamp(24px,3vw,36px);
  align-items: stretch;
}
.col-card {
  border-radius: 28px;
  padding: clamp(2rem,3vw,2.8rem);
  box-shadow: var(--labbh-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.col-card:not(.col-card-green) {
  background: #fff;
  border: 1px solid var(--labbh-border);
}
.col-card-green {
  background:
    radial-gradient(circle at 90% 10%, rgba(0,168,120,.18), transparent 34%),
    linear-gradient(145deg, #062f28 0%, #003f34 100%);
  color: #fff;
}
.col-card h2 { margin-top: .5rem; font-size: clamp(1.85rem,3.2vw,2.6rem); line-height: 1.05; }
.col-card .btn { margin-top: .4rem; align-self: flex-start; }
.col-card-green h2, .col-card-green p { color: #fff; }
.col-card-green p { color: rgba(255,255,255,.82); }
.col-card-green .section-tag { color: rgba(255,255,255,.72); background: rgba(255,255,255,.1); }

/* ── RESPONSIVIDADE FINAL ── */
@media (max-width: 1100px) {
  .exames-full { grid-template-columns: 1fr; gap: 2rem; }
  .exames-intro { max-width: 100%; }
}
@media (max-width: 980px) {
  :root { --labbh-header-offset: 78px; }
  .exames-cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .convenios-hero-card { grid-template-columns: 1fr; min-height: 0; }
  .convenios-hero-media { position: relative; inset: auto; width: 100%; height: 240px; order: -1; }
  .convenios-hero-card::after {
    background: linear-gradient(180deg, rgba(0,42,31,0) 0%, rgba(0,42,31,.4) 55%, rgba(0,42,31,.98) 100%);
  }
  .convenios-audience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .convenios-stats-card { grid-template-columns: repeat(3,minmax(0,1fr)); row-gap: 24px; }
  .convenios-stat:nth-child(4)::before,
  .convenios-stat:nth-child(1)::before { display: none; }
  #resultados .two-col-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 620px) {
  .exames-cards { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .convenios-hero-content { padding: 1.6rem 1.3rem; }
  .convenios-title { font-size: clamp(2.2rem,11vw,2.9rem); }
  .convenios-audience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .convenios-logos { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .convenios-logos-track { animation: none; }
  .convenios-stats-card { grid-template-columns: repeat(2,minmax(0,1fr)); padding: 1.2rem; row-gap: 20px; }
  .convenios-stat + .convenios-stat::before { display: none; }
  .col-card { padding: 1.4rem; }
  .col-card h2 { font-size: clamp(1.6rem,8vw,2.1rem); }
}

/* ── COL-CARD com mídia (Resultados + Empresas) ── */
.col-card.has-media {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.col-card.has-media .col-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(2rem,3vw,2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 68%;
}
.col-card.has-media .col-card-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  z-index: 0;
}
.col-card.has-media .col-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.col-card.has-media:not(.col-card-green)::after {
  content:"";
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(90deg,#fff 40%, rgba(255,255,255,.72) 58%, rgba(255,255,255,.1) 80%, transparent);
  pointer-events:none;
}
.col-card-green.has-media::after {
  content:"";
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(90deg, rgba(6,47,40,.98) 40%, rgba(6,47,40,.82) 58%, rgba(6,47,40,.2) 82%, transparent);
  pointer-events:none;
}

/* ── FAIXA DE CONFIANÇA ── */
.home-final-trust { background: var(--labbh-bg-soft); padding: clamp(24px,3vw,40px) 0 clamp(48px,5vw,72px); }
.home-final-trust-card {
  background:#fff;
  border:1px solid var(--labbh-border);
  border-radius:22px;
  box-shadow:0 18px 50px rgba(2,40,34,.07);
  padding: clamp(1.5rem,2.5vw,2rem) clamp(1.6rem,3vw,2.4rem);
  display:grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(1.5rem,3vw,2.4rem);
  align-items:center;
}
.home-final-trust .trust-lead { display:flex; gap:1rem; align-items:flex-start; }
.home-final-trust .trust-lead .trust-ico {
  flex:0 0 auto; width:48px; height:48px; border-radius:14px;
  background:var(--labbh-mint); color:var(--labbh-green-600);
  display:grid; place-items:center;
}
.home-final-trust .trust-lead strong { display:block; font-size:1.2rem; color:var(--labbh-green-900); margin-bottom:.3rem; }
.home-final-trust .trust-lead p { color:#5e716d; font-size:.92rem; line-height:1.5; }
.home-final-trust .trust-items { display:grid; grid-template-columns:repeat(2,1fr); gap:.8rem 1.4rem; }
.home-final-trust .trust-item {
  display:flex; align-items:center; gap:.7rem;
  font-weight:800; color:var(--labbh-green-900); font-size:.92rem;
}
.home-final-trust .trust-item span {
  flex:0 0 auto; width:34px; height:34px; border-radius:10px;
  background:var(--labbh-mint); color:var(--labbh-green-600);
  display:grid; place-items:center;
}
.home-final-trust .trust-item span svg { width:18px; height:18px; }

/* ── FOOTER INSTITUCIONAL ── */
.footer { background: linear-gradient(160deg,#062f28,#04241f); color:#fff; padding: clamp(48px,6vw,72px) 0 0; }
.footer-grid {
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(1.5rem,3vw,2.5rem);
  padding-bottom: clamp(2rem,4vw,3rem);
}
.footer-col h4 { font-size:.92rem; color:#fff; margin-bottom:.9rem; font-weight:800; }
.footer-col nav, .footer-col address { display:flex; flex-direction:column; gap:.55rem; font-style:normal; }
.footer-col a, .footer-col address span { color:rgba(255,255,255,.72); font-size:.9rem; transition:color .15s; }
.footer-col a:hover { color:#fff; }
.footer-brand { font-size:1.8rem; font-weight:900; letter-spacing:.02em; color:#fff; display:block; }
.footer-brand-sub { font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.6); display:block; margin-top:.2rem; }
.footer-brand-col p { margin-top:1rem; color:rgba(255,255,255,.72); font-size:.92rem; max-width:260px; line-height:1.5; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.12);
  padding: 1.2rem 0;
  font-size:.82rem; color:rgba(255,255,255,.6);
}

@media (max-width: 980px) {
  .col-card.has-media .col-card-body { width: 100%; }
  .col-card.has-media .col-card-media { position:relative; inset:auto; width:100%; height:180px; }
  .col-card.has-media::after, .col-card-green.has-media::after { display:none !important; }
  .home-final-trust-card { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .home-final-trust .trust-items { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Ajuste tipografia/posição (escopo controlado) ── */
@media (min-width: 981px) {
  .hero-grid { align-items: start; padding-top: clamp(1rem, 2.4vh, 2.4rem); }
  .hero-copy { transform: translateY(clamp(-2.5rem, -3vh, -1rem)); }
}
/* Títulos de seções finais alinhados à escala (não maiores que o hero) */
#resultados .col-card h2,
#coleta .col-card h2 {
  font-size: clamp(1.85rem, 2.6vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}


/* ═══════════════════════════════════════════════════════════
   LABBH HOME — ESCALA VISUAL DEFINITIVA
   Camada final: escala tipográfica/espacial única, escopada por ID
   (vence a cascata por especificidade, sem !important desnecessário).
   ═══════════════════════════════════════════════════════════ */
:root {
  --labbh-header-h: 96px;
  --labbh-container: 1180px;
  --labbh-page-x: clamp(20px, 4vw, 48px);
  --labbh-section-gap: clamp(56px, 7vw, 92px);
  --labbh-section-gap-sm: clamp(36px, 5vw, 64px);
  --labbh-title-hero: clamp(3.35rem, 4.15vw, 5.15rem);
  --labbh-title-section: clamp(2.35rem, 3vw, 3.8rem);
  --labbh-title-card: clamp(2rem, 2.35vw, 3.15rem);
  --labbh-title-small: clamp(1.65rem, 1.8vw, 2.25rem);
  --labbh-body-lg: clamp(1rem, 1vw, 1.12rem);
  --labbh-line-tight: .98;
  --labbh-line-title: 1.04;
  --labbh-line-body: 1.55;
}

/* Títulos por seção (escopados por ID) */
#home .hero-title { font-size: var(--labbh-title-hero); line-height: var(--labbh-line-tight); letter-spacing: -.055em; max-width: 620px; }
#servicos .atendimento-title { font-size: var(--labbh-title-section); line-height: var(--labbh-line-title); letter-spacing: -.045em; }
#toxicologico .tox-copy h2 { font-size: var(--labbh-title-section); line-height: var(--labbh-line-title); letter-spacing: -.045em; }
#exames .exames-intro h2 { font-size: var(--labbh-title-section); line-height: var(--labbh-line-title); letter-spacing: -.045em; max-width: 430px; }
#convenios .convenios-title { font-size: var(--labbh-title-card); line-height: var(--labbh-line-title); letter-spacing: -.045em; max-width: 520px; }
#resultados .col-card h2,
#empresas h2,
#coleta .col-card h2,
#contato .cta-copy h2 { font-size: var(--labbh-title-small); line-height: var(--labbh-line-title); letter-spacing: -.035em; }

/* Exames: layout de bloco natural, sem centralização vertical */
#exames.section-exames {
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
  padding: var(--labbh-section-gap) var(--labbh-page-x) var(--labbh-section-gap-sm) !important;
  overflow: visible !important;
  scroll-margin-top: var(--labbh-header-h);
}
#exames .exames-full {
  width: min(var(--labbh-container), 100%) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr) !important;
  gap: clamp(42px, 5vw, 76px) !important;
  align-items: start !important;
  transform: none !important;
}
#exames .exames-intro { align-self: start !important; padding-top: clamp(.25rem, 1vw, .85rem) !important; margin-top: 0 !important; }
#exames .exames-intro p:not(.section-tag) { font-size: var(--labbh-body-lg); line-height: var(--labbh-line-body); max-width: 430px; }
#exames .exames-cards { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: clamp(18px, 2vw, 26px) !important; align-items: start !important; margin-top: 0 !important; }
#exames .exame-card { min-height: 0 !important; border-radius: 18px; overflow: hidden; }
#exames .exame-card-media { height: clamp(130px, 13vw, 172px) !important; }
#exames .exame-card-label { font-size: clamp(.88rem, .86vw, 1.02rem) !important; line-height: 1.22 !important; }

/* Convênios: compacto e proporcional */
#convenios.home-convenios-section {
  padding: var(--labbh-section-gap-sm) var(--labbh-page-x) 0 !important;
  min-height: 0 !important; height: auto !important; overflow: visible !important;
}
#convenios > .container { width: min(var(--labbh-container), 100%) !important; margin-inline: auto !important; }
#convenios .convenios-hero-card { width: 100% !important; min-height: clamp(360px, 41vw, 520px) !important; border-radius: 28px !important; overflow: hidden !important; }
#convenios .convenios-hero-content { padding: clamp(32px, 4vw, 58px) !important; }
#convenios .convenios-lead,
#convenios .convenios-proofline { font-size: var(--labbh-body-lg); line-height: var(--labbh-line-body); max-width: 620px; }

/* Números: componente isolado .labbh-stats-card#numeros em home-lockdown.css */

/* Resultados / Coleta / Contato: bloco natural */
#resultados.section, #coleta.section, #contato.section {
  min-height: 0 !important; height: auto !important; display: block !important;
  padding: var(--labbh-section-gap-sm) var(--labbh-page-x) !important; overflow: visible !important;
}
#resultados .two-col-grid, #coleta .two-col-grid {
  width: min(var(--labbh-container), 100%) !important; margin: 0 auto !important;
  display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(24px, 3vw, 44px) !important; align-items: stretch !important;
}

/* Hero: conteúdo alto, não afundado */
#home.hero { min-height: calc(100svh - var(--labbh-header-h)); }
#home .hero-grid { align-items: center; padding-top: clamp(22px, 3vh, 44px); }

/* Responsividade */
@media (max-width: 1180px) {
  :root {
    --labbh-title-hero: clamp(3rem, 5vw, 4.4rem);
    --labbh-title-section: clamp(2.15rem, 4vw, 3.25rem);
    --labbh-title-card: clamp(1.95rem, 3.6vw, 2.85rem);
  }
  #exames .exames-full { grid-template-columns: minmax(260px, 380px) minmax(0, 1fr) !important; gap: 36px !important; }
}
@media (max-width: 920px) {
  #exames .exames-full,
  #resultados .two-col-grid,
  #coleta .two-col-grid { grid-template-columns: 1fr !important; }
  #exames .exames-cards { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  #convenios .convenios-hero-card { grid-template-columns: 1fr !important; }
  #convenios .convenios-audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px) {
  :root {
    --labbh-page-x: 18px;
    --labbh-section-gap: 44px;
    --labbh-section-gap-sm: 32px;
    --labbh-title-hero: clamp(2.45rem, 12vw, 3.35rem);
    --labbh-title-section: clamp(2rem, 9vw, 2.65rem);
    --labbh-title-card: clamp(1.9rem, 8vw, 2.45rem);
  }
  #exames .exames-cards { grid-template-columns: 1fr !important; }
  #convenios .convenios-audience-grid { grid-template-columns: 1fr !important; }
}
