/* ============================================================
   UNIMED INVERNO
   Inspirado no layout Unimed Rio Preto: cards arredondados,
   sobreposições, paleta só de verdes.
   ============================================================ */

/* ============================================================
   FONTES UNIMED SANS
   ============================================================ */
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-LightItalic.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-Book.woff2') format('woff2'); font-weight: 350; font-style: normal; font-display: swap; }
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-RegularItalic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'UnimedSans'; src: url('../font/subset-UnimedSans-2020-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --verde: #00995C;
  --verde-amarelado: #A7CE4C;
  --verde-escuro: #004D49;

  --texto: #1F2937;
  --texto-muted: #6B7280;
  --bg: #F1F3F5;
  --bg-soft: #F7F8F9;
  --branco: #ffffff;

  --container: 1200px;

  --radius-pill: 999px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .07);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .09);

  --header-h: 76px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html { overflow-x: hidden; }
body {
  margin: 0;
  padding-top: var(--header-h); /* compensa header fixo */
  font-family: 'UnimedSans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--texto);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 800;
  color: var(--verde-escuro);
}
p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 12px;
}

.brk-desktop { display: none; }
@media (min-width: 981px) { .brk-desktop { display: inline; } }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 700;
}
.section-head h2 strong { font-weight: 900; }
.section-head p {
  color: var(--texto-muted);
  font-size: 16px;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--green { background: var(--verde); color: #fff; }
.btn--green:hover { background: #007a4a; }
.btn--lime { background: var(--verde-amarelado); color: var(--verde-escuro); }
.btn--lime:hover { background: #95bd3b; }
.btn--dark { background: var(--verde-escuro); color: #fff; }
.btn--outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--verde-escuro); }
.btn--outline-dark { background: #fff; color: var(--verde-escuro); border-color: #fff; }
.btn--outline { background: transparent; color: var(--verde); border-color: var(--verde); }
.btn--outline:hover { background: var(--verde); color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--verde);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.site-nav a:hover { color: var(--verde-amarelado); }

.nav-toggle {
  display: none;
  background: none; border: 0;
  font-size: 26px; color: #fff;
  cursor: pointer; margin-left: auto;
}

/* ============================================================
   HERO — moldura verde escuro + imagem grande arredondada
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  padding-bottom: 120px; /* espaço pro card flutuante */
}

/* ============================================================
   PAGE HERO — versão compacta para páginas internas
   (sem imagem, fundo verde escuro, conteúdo centralizado)
   ============================================================ */
.page-hero {
  background: var(--verde-escuro);
  color: #fff;
  text-align: center;
  padding: 80px 24px 64px;
}
.page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  color: var(--verde-amarelado);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, .92);
  max-width: 580px;
  margin: 0 auto 14px;
  text-wrap: pretty;
}
.page-hero .btn { margin-top: 18px; }

/* ============================================================
   CHECK LIST — lista com bullets de check verde-amarelado
   ============================================================ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  font-size: 15px;
  color: var(--texto);
  line-height: 1.5;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--verde-amarelado) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004D49' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 14px;
}

/* ============================================================
   UNIT CARDS — cards de unidade com endereço e horários
   ============================================================ */
.unit-list { display: grid; gap: 14px; }
.unit-card {
  padding: 4px 0 4px 16px;
  border-left: 3px solid var(--verde-amarelado);
}
.unit-card h4 {
  color: var(--verde-escuro);
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 800;
}
.unit-card .address {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--texto);
  font-weight: 600;
}
.unit-card .hours {
  margin: 0;
  font-size: 13px;
  color: var(--texto-muted);
  line-height: 1.5;
}

/* ============================================================
   ACCORDION — usa <details name="grupo"> nativo (1 aberto por vez)
   Usado dentro de .layered__card
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 8px; margin: 18px 0 6px; }
.accordion__item {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: background .25s ease, border-color .25s ease;
}
.accordion__item[open] {
  background: var(--verde-amarelado);
  border-color: var(--verde-amarelado);
}
.accordion__head {
  list-style: none;
  cursor: pointer;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--texto);
  user-select: none;
}
.accordion__head::-webkit-details-marker { display: none; }
.accordion__head::marker { content: ''; }
.accordion__item[open] .accordion__head { color: var(--verde-escuro); }
.accordion__chevron {
  width: 20px; height: 20px;
  flex: none;
  color: var(--texto-muted);
  transition: transform .25s ease, color .25s ease;
}
.accordion__item[open] .accordion__chevron {
  transform: rotate(180deg);
  color: var(--verde-escuro);
}
.accordion__body {
  padding: 0 20px 14px;
  font-size: 14px;
  color: var(--verde-escuro);
  line-height: 1.55;
}
.accordion__body p { margin: 0 0 8px; }
.accordion__body p:last-child { margin: 0; }

/* ============================================================
   BUSCAR PROFISSIONAL — seção verde com filtros + lista
   ============================================================ */
.buscar-profissional {
  background: var(--verde);
  color: #fff;
  padding: 64px 0;
}
.buscar-profissional__head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 28px;
}
.buscar-profissional__head h2 {
  color: var(--verde-amarelado);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
  font-weight: 900;
}
.buscar-profissional__head p {
  color: rgba(255, 255, 255, .95);
  font-size: 15.5px;
}
.buscar-profissional__cta { text-align: center; margin-top: 36px; }
.buscar-profissional__cta .btn--green { border-color: #fff; }
.buscar-profissional__cta .btn--green:hover { border-color: #fff; }

.buscar-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.buscar-form__row { display: flex; gap: 12px; }
.buscar-form__field { display: flex; flex-direction: column; flex: 1; }
.buscar-form__field--cidade { flex: 1.5; }
.buscar-form__field label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}
.buscar-form select {
  height: 46px;
  padding: 0 38px 0 14px;
  font-size: 14.5px;
  border: 0;
  border-radius: var(--radius-sm);
  background-color: #fff;
  color: var(--verde);
  font-weight: 500;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300995C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}
.buscar-form__btn-wrap { display: flex; flex-direction: column; justify-content: flex-end; }
.buscar-form__btn {
  height: 46px;
  padding: 0 28px;
  background: var(--verde-amarelado);
  color: var(--verde-escuro);
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}
.buscar-form__btn:hover { background: #94bc3a; }

.medicos-lista { max-width: 600px; margin: 28px auto 0; }
.medicos-lista__msg {
  text-align: center;
  color: rgba(255, 255, 255, .95);
  font-size: 14.5px;
  padding: 16px;
}
.medico-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .92);
}
.medico-item:last-child { border-bottom: 0; }
.medico-item .nome {
  color: var(--verde-amarelado);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 4px;
}
.medico-item div { margin: 2px 0; }

/* ============================================================
   PLANOS — grid de 3 cards (Unimax / Unipart / Unifácil)
   ============================================================ */
.planos-block { padding: 64px 0 32px; }
.planos-block__head { max-width: 720px; margin: 0 auto 32px; text-align: center; }
.planos-block__head h2 {
  color: var(--verde);
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 8px;
}
.planos-block__head p { color: var(--texto); font-size: 15.5px; }

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plano-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plano-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plano-card__head {
  padding: 30px 28px 24px;
  text-align: center;
  color: #fff;
}
.plano-card__head h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 8px;
}
.plano-card__head p {
  margin: 0;
  font-size: 14px;
  opacity: .95;
  line-height: 1.45;
}

.plano-card--unimax .plano-card__head { background: var(--verde-escuro); }
.plano-card--unipart .plano-card__head { background: var(--verde); }
.plano-card--unifacil .plano-card__head { background: var(--verde-amarelado); color: var(--verde-escuro); }
.plano-card--unifacil .plano-card__head h3 { color: var(--verde-escuro); }

.plano-features {
  list-style: none;
  padding: 4px 26px 24px;
  margin: 0;
  flex: 1;
}
.plano-features li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.plano-features li:last-child { border-bottom: 0; }
.plano-features strong {
  display: block;
  color: var(--verde);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.plano-features p { margin: 0; font-size: 13.5px; color: var(--texto); line-height: 1.5; }

.planos-block__cta { text-align: center; margin-top: 36px; }

/* ============================================================
   CONTATO — Fale conosco (cards 2x2)
   ============================================================ */
.contato-section { padding: 64px 0; background: var(--bg-soft); }
.contato-section__layered { margin-bottom: 40px; }
.contato-section__head { max-width: 720px; margin: 0 auto 32px; text-align: center; }
.contato-section__head h2 {
  color: var(--verde);
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 8px;
}
.contato-section__head p { color: var(--texto); font-size: 15.5px; }
.contato-section__subtitle {
  text-align: center;
  font-weight: 800;
  color: var(--verde-escuro);
  font-size: 18px;
  margin: 0 0 18px;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contato-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--verde);
}
.contato-card h4 {
  color: var(--verde-escuro);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
}
.contato-card p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--texto-muted);
  line-height: 1.5;
}
.contato-card__phone {
  display: inline-block;
  color: var(--verde);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .5px;
}
.contato-card__phone:hover { color: var(--verde-escuro); }
.contato-card__note { display: block; font-size: 12.5px; color: var(--texto-muted); margin-top: 4px; }

/* ============================================================
   QUANDO IR AO MÉDICO — tabela comparativa de doenças
   ============================================================ */
.quando-medico { padding: 64px 0 16px; }
.quando-medico h2 {
  color: var(--verde);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}
.quando-medico__intro {
  color: var(--texto);
  max-width: 820px;
  margin: 0 0 28px;
  font-size: 15.5px;
}
.quando-medico__intro strong { color: var(--verde); font-weight: 700; }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
}
.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  font-size: 14.5px;
  line-height: 1.55;
  border-radius: var(--radius-sm);
}
.compare-table thead th {
  background: var(--verde-escuro);
  color: var(--verde-amarelado);
  font-weight: 800;
  font-size: 14px;
}
.compare-table tbody th {
  background: rgba(167, 206, 76, .32);
  color: var(--verde);
  font-weight: 800;
  font-size: 16px;
}
.compare-table tbody td {
  background: rgba(167, 206, 76, .22);
  color: var(--verde-escuro);
}

/* ============================================================
   FEBRE LIST — 3 níveis de severidade (paleta coral semântica)
   ============================================================ */
.febre-list { display: grid; gap: 10px; margin: 16px 0 6px; }
.febre-row {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: #2A1F1E;
}
.febre-row__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.febre-row__label {
  font-weight: 800;
  font-size: 14.5px;
}
.febre-row__temp {
  font-weight: 700;
  font-size: 13px;
  opacity: .75;
}
.febre-row p { margin: 0; font-size: 13.5px; line-height: 1.5; }

.febre-row--alta { background: #E0746E; }
.febre-row--moderada { background: #F0A28A; }
.febre-row--baixa { background: #FADCCB; }

/* ============================================================
   BENEFITS — encerramento: fundo lime + card dark teal à direita
   ============================================================ */
.benefits {
  background: var(--verde-amarelado);
  padding: 64px 0;
  margin-top: 32px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.benefits__text h2 {
  color: var(--verde-escuro);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.25;
}
.benefits__text p {
  color: var(--verde-escuro);
  font-size: 15.5px;
  margin-bottom: 14px;
}
.benefits__text p:last-child { margin-bottom: 0; }
.benefits__text strong { font-weight: 800; }

.benefits__card {
  background: var(--verde-escuro);
  color: #fff;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.benefits__card-title {
  color: var(--verde-amarelado);
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 18px;
}
.benefits__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits__card li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14.5px;
  line-height: 1.5;
}
.benefits__card li + li { margin-top: 2px; }
.benefits__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--verde-amarelado);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: var(--verde-escuro);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 32px;
}
.hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,77,73,.78) 0%, rgba(0,77,73,.45) 40%, rgba(0,77,73,0) 70%);
}

.hero__content {
  position: absolute;
  z-index: 2;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #fff;
}
.hero__content h1 {
  color: var(--verde-amarelado);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero__content p {
  font-size: 16px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.92);
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__features {
  display: flex; gap: 32px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.9);
}
.hero__features div { display: flex; align-items: center; gap: 10px; }
.hero__features .feat-text { line-height: 1.2; display: inline-block; }
.hero__features .ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--verde-amarelado);
  color: var(--verde-escuro);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.hero__features .ico svg { width: 15px; height: 15px; }


/* ============================================================
   CARD FLUTUANTE — Atendimento ideal
   ============================================================ */
.floating-section {
  margin-top: -100px;
  position: relative;
  z-index: 5;
  padding-bottom: 80px;
}
.floating-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}
.floating-card .section-head { margin-bottom: 36px; }

.atendimento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.atendimento-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.04);
}
.atendimento-card__head {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 28px;
  color: #fff;
}
.atendimento-card__head img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,.18);
  flex: none;
}
.atendimento-card__head h3 { color: #fff; font-size: 24px; margin: 0; }
.atendimento-card--adultos .atendimento-card__head { background: var(--verde-escuro); }
.atendimento-card--criancas .atendimento-card__head { background: var(--verde); }

.atendimento-card__body { padding: 28px; }
.symptom { padding: 18px 0; border-top: 1px solid rgba(0,0,0,.06); }
.symptom:first-child { padding-top: 0; border-top: 0; }
.symptom h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--verde-escuro);
  margin-bottom: 10px;
}
.symptom h4 .sub { display: block; font-weight: 400; color: var(--texto-muted); font-size: 13.5px; margin-top: 2px; }
.symptom p { font-size: 14.5px; color: var(--texto); margin: 0 0 6px; }
.symptom p strong { color: var(--verde); }

/* ============================================================
   FACILIDADES — grid 6 cards com ícones
   ============================================================ */
.facilidades { padding: 80px 0; }
.facilidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.facilidade-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.facilidade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.facilidade-card--link { color: inherit; text-decoration: none; display: block; }
.facilidade-card--link:hover .facilidade-card__icon { background: var(--verde-amarelado); color: var(--verde-escuro); }

/* Pill verde dentro do card pra deixar claro que clica */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 22px;
  background: var(--verde);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}
.card-cta svg { width: 16px; height: 16px; }
.facilidade-card--link:hover .card-cta { background: var(--verde-escuro); transform: translateY(-1px); }

/* Linha de CTAs (botão primário + secundário lado a lado) */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.facilidade-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: rgba(167,206,76,.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--verde);
}
.facilidade-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--verde-escuro);
  margin-bottom: 6px;
}
.facilidade-card p {
  font-size: 14px;
  color: var(--texto-muted);
  margin: 0;
}

/* ============================================================
   BLOCO IMAGEM + PAINEL VERDE ESCURO COM CARD BRANCO
   (estilo "Sorrir com saúde")
   ============================================================ */
.layered-block { padding: 80px 0; }
.layered {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow-md);
}
.layered__image {
  position: relative;
  min-height: 320px;
}
.layered__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.layered__panel {
  background: var(--verde-escuro);
  position: relative;
  display: flex;
  align-items: center;
  padding: 48px;
}
.layered__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  margin-left: -120px; /* sobreposição na imagem */
  position: relative;
  z-index: 2;
}
.layered__card h2 { color: var(--verde-escuro); font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 12px; }
.layered__card h2 strong { font-weight: 900; }
.layered__card p { font-size: 15px; color: var(--texto); }

/* variante invertida — texto à esquerda, imagem à direita */
.layered--reverse .layered__image { order: 2; }
.layered--reverse .layered__panel { order: 1; justify-content: flex-end; }
.layered--reverse .layered__card { margin-left: 0; margin-right: -120px; }

/* variante simples — usado em médicos cooperados (sem painel escuro,
   só imagem + card branco) */
.layered--light .layered__panel { background: var(--verde); }

/* ============================================================
   PRONTO ATENDIMENTO — fundo verde escuro, 2 cards à direita
   ============================================================ */
.pronto {
  background: var(--verde-escuro);
  color: #fff;
  padding: 80px 0;
  position: relative;
}
.pronto__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.pronto h2 { color: #fff; font-size: clamp(28px, 2.8vw, 36px); }
.pronto .lead { color: var(--verde-amarelado); font-weight: 700; font-size: 18px; margin-bottom: 16px; }
.pronto p { color: rgba(255,255,255,.88); font-size: 15px; }
.pa-cards { display: grid; gap: 18px; }
.pa-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--texto);
  box-shadow: var(--shadow-md);
}
.pa-card h3 {
  color: var(--verde-escuro);
  font-size: 18px;
  margin-bottom: 4px;
}
.pa-card .city {
  display: inline-block;
  background: var(--verde-amarelado);
  color: var(--verde-escuro);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pa-card ul { padding-left: 18px; margin: 0 0 14px; }
.pa-card li { font-size: 14px; margin-bottom: 6px; color: var(--texto); }
.pa-card .endereco { font-size: 13px; color: var(--texto-muted); margin: 0; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.06); }

/* ============================================================
   CTA NÃO É CLIENTE — banner verde escuro
   ============================================================ */
.cta-banner {
  margin: 60px 0;
}
.cta-banner__inner {
  background: var(--verde-escuro);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: '';
  position: absolute;
  left: -40px; top: 50%;
  transform: translateY(-50%);
  width: 200px; height: 200px;
  background: var(--verde-amarelado);
  opacity: .12;
  border-radius: 50%;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(20px, 2vw, 24px);
  margin: 0 0 4px;
  position: relative;
  z-index: 1;
}
.cta-banner p { margin: 0; opacity: .9; position: relative; z-index: 1; }

/* ============================================================
   INSTAGRAM — carrossel com setas + lightbox
   ============================================================ */
.insta { padding: 80px 0; }
.insta-carousel {
  position: relative;
  margin-top: 8px;
}
.insta-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge antigo */
}
.insta-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.insta-track img {
  flex: 0 0 280px;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}
.insta-track img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.insta-track img:focus-visible { outline: 3px solid var(--verde); outline-offset: 4px; }

.insta-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--verde);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background .2s ease, transform .2s ease;
}
.insta-arrow svg { width: 22px; height: 22px; }
.insta-arrow:hover { background: var(--verde-escuro); transform: translateY(-50%) scale(1.05); }
.insta-arrow--prev { left: -24px; }
.insta-arrow--next { right: -24px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px 80px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
body.lightbox-open { overflow: hidden; }

.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  cursor: default;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lightbox__close svg,
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, .25); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--verde);
  color: #fff;
  padding: 56px 24px 48px;
  margin-top: 60px;
  text-align: center;
}
.site-footer__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.site-footer__logo img { height: 56px; display: block; }
.site-footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  opacity: .95;
  margin: 0;
}
.site-footer__social-block { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.site-footer__social-title { margin: 0; font-size: 15px; font-weight: 600; opacity: .95; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.site-footer__social a:hover { background: rgba(255, 255, 255, .28); }
.site-footer__social svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .site-header .btn { display: none; }
  .nav-toggle { display: block; }

  /* Menu mobile: dropdown abaixo do header fixo */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--verde);
    padding: 8px 24px 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .15);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .site-nav li { border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
  }

  /* HEADER mobile */
  .site-header__inner { padding: 0 16px; gap: 12px; }
  .site-header__logo img { height: 40px; }

  /* PAGE HERO mobile */
  .page-hero { padding: 56px 22px 48px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .page-hero p { font-size: 15.5px; }

  /* PLANOS / CONTATO mobile */
  .planos-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }

  /* BUSCAR PROFISSIONAL mobile */
  .buscar-form__row { flex-direction: column; gap: 12px; }
  .buscar-form__field--cidade { flex: 1; }
  .buscar-form__btn { width: 100%; }

  /* COMPARE TABLE mobile — vira cards empilhados */
  .quando-medico { padding: 48px 0 8px; }
  .compare-table { border-spacing: 0; display: block; }
  .compare-table thead { display: none; }
  .compare-table tbody, .compare-table tr { display: block; }
  .compare-table tr {
    background: rgba(167, 206, 76, .22);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 12px;
  }
  .compare-table tbody th,
  .compare-table tbody td { display: block; background: transparent; padding: 0; }
  .compare-table tbody th {
    color: var(--verde);
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 77, 73, .15);
  }
  .compare-table tbody td { padding: 8px 0 0; }
  .compare-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-weight: 800;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--verde);
    margin-bottom: 3px;
  }

  /* BENEFITS mobile */
  .benefits { padding: 48px 0; }
  .benefits__grid { grid-template-columns: 1fr; gap: 28px; }
  .benefits__card { padding: 24px 26px; }

  /* HERO */
  .hero { padding-bottom: 80px; }
  .hero::before { height: 120px; }
  .hero__inner { padding: 16px 16px 0; }
  .hero__media {
    aspect-ratio: auto;
    min-height: 0;
    border-radius: var(--radius-lg);
  }
  .hero__media::after {
    background: linear-gradient(180deg, rgba(0, 77, 73, .8) 0%, rgba(0, 77, 73, .72) 50%, rgba(0, 77, 73, .6) 100%);
  }
  /* Conteúdo solta do absolute pra container crescer com o texto */
  .hero__content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    max-width: none;
    padding: 56px 22px;
  }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .hero__content p { font-size: 16.5px; line-height: 1.55; margin-bottom: 22px; }
  .hero__features { gap: 14px; flex-wrap: wrap; }
  .hero__features > div { flex: 1 1 140px; }

  /* CARD FLUTUANTE */
  .floating-section { margin-top: -80px; padding-bottom: 60px; }
  .floating-card { padding: 32px 24px; }
  .atendimento-grid { grid-template-columns: 1fr; gap: 20px; }

  /* FACILIDADES */
  .facilidades { padding: 60px 0; }
  .facilidades-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* LAYERED — imagem em cima, card abaixo sem painel escuro */
  .layered-block { padding: 50px 0; }
  .layered {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .layered__image {
    min-height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .layered__panel,
  .layered--light .layered__panel {
    background: transparent;
    padding: 0;
    order: 1;
  }
  .layered__card,
  .layered--reverse .layered__card {
    margin: -40px 16px 0;
    padding: 28px 24px;
  }
  .layered--reverse .layered__image { order: 0; }

  /* PRONTO */
  .pronto { padding: 60px 0; }
  .pronto__grid { grid-template-columns: 1fr; gap: 32px; }

  /* CTA banner */
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 16px;
  }

  /* INSTA */
  .insta { padding: 60px 0; }
  .insta-arrow--prev { left: 4px; }
  .insta-arrow--next { right: 4px; }
  .insta-arrow { width: 40px; height: 40px; opacity: .92; }

  /* LIGHTBOX em mobile */
  .lightbox { padding: 16px 8px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }

  .section-head h2 { font-size: clamp(22px, 5.5vw, 28px); }

  .hero__features { gap: 12px; }
  .hero__content h1 { font-size: clamp(26px, 8vw, 34px); }

  .facilidades-grid { grid-template-columns: 1fr; }
  .insta-track img { flex-basis: 220px; height: 280px; }

  .floating-card { padding: 28px 20px; }
  .floating-section { margin-top: -60px; padding-bottom: 60px; }
}

@media (max-width: 400px) {
  .site-header__inner { padding: 0 12px; }
  .site-header__logo img { height: 34px; }
  .hero__inner { padding: 12px 12px 0; }
  .hero__content { padding: 44px 18px; }
  .hero__content h1 { font-size: 26px; line-height: 1.2; }
  .hero__content p { font-size: 15px; }
  .hero__features { font-size: 12.5px; gap: 10px; }
  .hero__features .ico { width: 24px; height: 24px; }
  .hero__features .ico svg { width: 13px; height: 13px; }
  .floating-card { padding: 24px 18px; }
  .layered__card,
  .layered--reverse .layered__card { margin: -32px 12px 0; padding: 24px 20px; }
}
