/* ============================================================
   CLÍNICA DO BEM — STYLES.CSS
   Estilos compartilhados para todas as páginas
   ============================================================ */

:root {
  --azul: #184F82;
  --azul-escuro: #0E3960;
  --azul-medio: #2E6BA0;
  --azul-claro: #E8F0F9;
  --azul-clarinho: #F5F9FD;
  --amarelo: #FAC10F;
  --amarelo-escuro: #D9A50A;
  --amarelo-claro: #FFF5D1;

  --vermelho: #E11D48;
  --vermelho-claro: #FEE2E8;
  --laranja: #EA8A1F;
  --laranja-claro: #FEF0DC;
  --verde: #16A34A;
  --verde-claro: #DCFCE7;

  --branco: #FFFFFF;
  --bg: #FAFBFC;
  --texto: #1A2B3C;
  --texto-suave: #4A5A6C;
  --texto-claro: #8A98A8;
  --linha: #E2E8EE;

  --shadow-sm: 0 2px 8px rgba(24, 79, 130, 0.06);
  --shadow-md: 0 8px 24px rgba(24, 79, 130, 0.10);
  --shadow-lg: 0 20px 48px rgba(24, 79, 130, 0.15);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; color: var(--azul-escuro); letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}
.wizard-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-lg { padding: 16px 30px; font-size: 16px; }

.btn-primary { background: var(--amarelo); color: var(--azul-escuro); }
.btn-primary:hover:not(:disabled) {
  background: var(--amarelo-escuro);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(250, 193, 15, 0.35);
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-secondary { background: var(--azul); color: var(--branco); }
.btn-secondary:hover {
  background: var(--azul-escuro);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(24, 79, 130, 0.30);
}

.btn-ghost { background: transparent; color: var(--azul); border-color: var(--azul); }
.btn-ghost:hover {
  background: var(--azul);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-ghost-light { background: transparent; color: var(--branco); border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover {
  background: var(--branco);
  color: var(--azul);
  transform: translateY(-2px);
}

.btn-back {
  background: transparent;
  color: var(--texto-suave);
  border-color: var(--linha);
}
.btn-back:hover { border-color: var(--azul); color: var(--azul); }

.btn-whatsapp { background: #25D366; color: var(--branco); }
.btn-whatsapp:hover {
  background: #1FB855;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

/* ===== UTILITÁRIOS ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--azul-claro);
  color: var(--azul);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow-yellow { background: var(--amarelo); color: var(--azul-escuro); }

.marca-texto {
  position: relative;
  display: inline-block;
  color: var(--azul-medio);
  z-index: 1;
}
.marca-texto::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 38%;
  background: var(--amarelo);
  opacity: 0.5;
  z-index: -1;
  border-radius: 2px;
}
.marca-texto-light { color: var(--amarelo); }
.marca-texto-light::after { display: none; }

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}
.section-head .lead {
  font-size: 17px;
  color: var(--texto-suave);
  line-height: 1.6;
}

section { padding: 96px 0; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--azul-escuro);
  color: var(--branco);
  font-size: 13px;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a {
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: var(--amarelo); }
.topbar-right { color: rgba(255, 255, 255, 0.75); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linha);
  height: 86px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img { height: 52px; width: auto; }
.header-nav { display: flex; gap: 32px; }
.header-nav a {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  color: var(--texto);
  padding: 8px 0;
  transition: color 0.2s ease;
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--amarelo);
  transition: width 0.3s ease;
}
.header-nav a:hover { color: var(--azul); }
.header-nav a:hover::after,
.header-nav a[aria-current="page"]::after { width: 100%; }
.header-nav a[aria-current="page"] { color: var(--azul); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--azul-claro);
  color: var(--azul);
  align-items: center;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--azul-escuro);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 360px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social:hover {
  background: var(--amarelo);
  color: var(--azul-escuro);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--branco);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a, .footer-col li {
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--amarelo); }
.footer-bottom {
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.6;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.40);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  80% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   HERO PADRÃO (Quem Somos / página inicial)
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 110px;
  background: linear-gradient(180deg, var(--branco) 0%, var(--azul-clarinho) 100%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  width: 480px;
  height: 480px;
  background: var(--amarelo);
  top: -120px;
  right: -120px;
  opacity: 0.35;
}
.hero::after {
  width: 520px;
  height: 520px;
  background: var(--azul-claro);
  bottom: -160px;
  left: -160px;
  opacity: 0.85;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--branco);
  border: 1px solid var(--linha);
  box-shadow: var(--shadow-sm);
  color: var(--azul-escuro);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 28px;
}
.hero-eyebrow .pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amarelo);
  flex-shrink: 0;
}
.hero-eyebrow .pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--amarelo);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.7; }
  75%, 100% { transform: scale(2.4); opacity: 0; }
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--texto-suave);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-divider { height: 1px; background: var(--linha); margin-bottom: 32px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--azul-medio);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-stat .num em { color: var(--amarelo); font-style: normal; }
.hero-stat .label {
  font-size: 13px;
  color: var(--texto-claro);
  font-weight: 600;
}

.hero-visual { position: relative; aspect-ratio: 4 / 5; }
.hero-visual-bg-circle {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--amarelo);
  z-index: 0;
}
.hero-visual-bg-square {
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: var(--azul);
  opacity: 0.12;
  transform: rotate(-12deg);
  border-radius: 14px;
  z-index: 0;
}
.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--azul-claro) 0%, #C8DBED 50%, #A4C2DD 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--azul-claro);
  isolation: isolate;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 8s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-slide figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 8px 16px;
  background: rgba(14, 57, 96, 0.85);
  color: var(--branco);
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.carousel-slide.active figcaption {
  opacity: 1;
  transform: translateY(0);
}
/* gradiente sutil pra legibilidade da legenda */
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 57, 96, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.carousel-dots {
  position: absolute;
  bottom: 18px;
  right: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.carousel-dot {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot:hover { background: rgba(255, 255, 255, 0.8); }
.carousel-dot.active {
  background: var(--amarelo);
  width: 36px;
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--amarelo);
  outline-offset: 3px;
}
.hero-badge {
  position: absolute;
  z-index: 2;
  background: var(--branco);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--azul-claro);
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-icon.yellow { background: var(--amarelo-claro); color: var(--amarelo-escuro); }
.hero-badge .title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--azul-escuro);
  line-height: 1.2;
}
.hero-badge .sub {
  font-size: 12px;
  color: var(--texto-claro);
  font-weight: 500;
  line-height: 1.3;
}
.hero-badge.top { top: 24px; left: -28px; }
.hero-badge.bottom { bottom: 32px; right: -28px; }

/* HERO COMPACTO (subpáginas) */
.page-hero {
  position: relative;
  padding: 72px 0 64px;
  background: linear-gradient(180deg, var(--branco) 0%, var(--azul-clarinho) 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--amarelo);
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin: 18px 0 18px;
  letter-spacing: -0.02em;
}
.page-hero p.lead {
  font-size: 17px;
  color: var(--texto-suave);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ============================================================
   ATALHOS RÁPIDOS (Quem Somos)
   ============================================================ */
.quick-bar {
  position: relative;
  background: var(--azul);
  padding: 32px 0;
  overflow: hidden;
}
.quick-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(250, 193, 15, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.quick-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--branco);
  transition: all 0.3s ease;
}
.quick-card:hover {
  background: var(--branco);
  color: var(--azul-escuro);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.quick-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--amarelo);
  color: var(--azul-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.quick-card:hover .quick-icon { transform: rotate(-5deg) scale(1.1); }
.quick-text { flex: 1; }
.quick-text .title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 2px;
}
.quick-text .sub { font-size: 13px; opacity: 0.8; }
.quick-arrow { flex-shrink: 0; transition: transform 0.3s ease; }
.quick-card:hover .quick-arrow { transform: translateX(4px); }

/* ============================================================
   ESPECIALIDADES (Consultas)
   ============================================================ */
.especialidades { background: var(--branco); }
.esp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.esp-loading,
.esp-empty {
  grid-column: 1 / -1;
  padding: 56px 24px;
  text-align: center;
  color: var(--texto-claro);
  font-size: 15px;
  border: 2px dashed var(--linha);
  border-radius: var(--radius-md);
}
.esp-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--linha);
  background: var(--branco);
  transition: all 0.3s ease;
  cursor: pointer;
}
.esp-card:hover {
  border-color: var(--azul);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.esp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--azul-claro);
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.esp-card:hover .esp-icon { background: var(--azul); color: var(--branco); }
.esp-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.esp-card p {
  font-size: 14px;
  color: var(--texto-suave);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}
.esp-card .price-line {
  border-top: 1px solid var(--linha);
  padding-top: 14px;
  font-size: 14px;
  color: var(--texto-suave);
  font-weight: 500;
}
.esp-card .price-line .price {
  color: var(--azul);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}
.esp-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--azul-claro);
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.esp-card:hover .esp-arrow {
  background: var(--amarelo);
  color: var(--azul-escuro);
  transform: rotate(45deg);
}
.esp-card.featured {
  background: var(--azul-claro);
  border-color: var(--azul);
}
.esp-card.featured .esp-icon { background: var(--azul); color: var(--branco); }
.esp-card.featured h3 { color: var(--azul-escuro); }
.esp-card.featured .featured-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--azul);
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
}

/* ===== MODAL ESPECIALIDADE ===== */
.esp-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.esp-modal[data-open="true"] { opacity: 1; pointer-events: auto; }
.esp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 57, 96, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.esp-modal-card {
  position: relative;
  background: var(--branco);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.esp-modal[data-open="true"] .esp-modal-card { transform: translateY(0); }
.esp-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--azul-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
  cursor: pointer;
  border: none;
}
.esp-modal-close:hover { background: var(--linha); transform: rotate(90deg); }
.esp-modal-hero {
  position: relative;
  padding: 40px 40px 24px;
  background: linear-gradient(135deg, var(--azul-clarinho) 0%, var(--azul-claro) 100%);
  display: flex;
  gap: 24px;
  align-items: center;
}
.esp-modal-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  background: var(--branco);
  border: 4px solid var(--branco);
}
.esp-modal-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--branco);
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  border: 4px solid var(--branco);
}
.esp-modal-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: var(--branco);
  color: var(--azul);
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.esp-modal-hero h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}
.esp-modal-doctor { font-size: 15px; color: var(--texto-suave); font-weight: 600; }
.esp-modal-doctor span { color: var(--azul); }
.esp-modal-body { padding: 28px 40px 8px; }
.esp-modal-desc {
  font-size: 16px;
  color: var(--texto-suave);
  line-height: 1.6;
  margin-bottom: 24px;
}
.esp-modal-section { margin-bottom: 24px; }
.esp-modal-section h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 10px;
}
.esp-modal-section p {
  color: var(--texto);
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-line;
}
.esp-modal-empty {
  padding: 24px;
  background: var(--azul-clarinho);
  border-radius: var(--radius-md);
  color: var(--texto-suave);
  font-size: 14px;
  text-align: center;
  margin-bottom: 24px;
}
.esp-modal-foot {
  padding: 20px 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--linha);
  margin-top: 12px;
  padding-top: 24px;
}
.esp-modal-price { font-size: 14px; color: var(--texto-suave); }
.esp-modal-price strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--azul);
  margin-left: 4px;
}
body.modal-open { overflow: hidden; }

/* ============================================================
   POR QUE / VALORES (Quem Somos)
   ============================================================ */
.why { background: var(--azul-clarinho); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  padding: 40px 36px;
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: var(--amarelo);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 56px;
  color: var(--amarelo);
  line-height: 1;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}
.why-card p {
  color: var(--texto-suave);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================================
   VACINAÇÃO (bloco "tipos")
   ============================================================ */
.vacinacao {
  position: relative;
  background: var(--azul);
  color: var(--branco);
  padding: 96px 0;
  overflow: hidden;
}
.vacinacao::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 193, 15, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.vacinacao::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 107, 160, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.vacinacao-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vacinacao h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--branco);
  margin: 24px 0 18px;
}
.vacinacao-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.vacinacao-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.vac-type {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}
.vac-type:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.vac-type-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(250, 193, 15, 0.18);
  color: var(--amarelo);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vac-type .title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}
.vac-type .sub { font-size: 12px; opacity: 0.75; margin-top: 2px; }
.vacinacao-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(250, 193, 15, 0.25) 0%, rgba(255, 255, 255, 0.18) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  isolation: isolate;
}

/* Slides do mini-carousel da seção vacinas */
.vac-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 8s ease;
  pointer-events: none;
}
.vac-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.vac-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vac-slide figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 7px 14px;
  background: rgba(14, 57, 96, 0.85);
  color: var(--branco);
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.vac-slide.active figcaption {
  opacity: 1;
  transform: translateY(0);
}
.vac-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 3;
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vac-dot {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.vac-dot:hover { background: rgba(255, 255, 255, 0.85); }
.vac-dot.active {
  background: var(--amarelo);
  width: 30px;
}
.vac-dot:focus-visible {
  outline: 2px solid var(--amarelo);
  outline-offset: 3px;
}

/* ============================================================
   DEPOIMENTOS (Quem Somos)
   ============================================================ */
.testimonials { background: var(--branco); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  position: relative;
  padding: 36px 32px;
  background: var(--azul-clarinho);
  border-radius: var(--radius-lg);
}
.test-stars {
  display: flex;
  gap: 2px;
  color: var(--amarelo);
  margin-bottom: 16px;
}
.test-quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 70px;
  line-height: 1;
  color: var(--azul);
  opacity: 0.18;
  font-weight: 800;
}
.test-quote {
  font-size: 16px;
  font-weight: 500;
  color: var(--texto);
  line-height: 1.6;
  margin-bottom: 24px;
}
.test-divider {
  height: 1px;
  background: rgba(24, 79, 130, 0.12);
  margin-bottom: 18px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.test-author .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--azul-escuro);
  line-height: 1.2;
}
.test-author .meta {
  font-size: 13px;
  color: var(--texto-claro);
  margin-top: 2px;
}
.google-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 56px auto 0;
  padding: 14px 26px;
  background: var(--branco);
  border: 1px solid var(--linha);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  color: var(--texto-suave);
}
.google-pill strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--azul-escuro);
  font-size: 18px;
}
.google-pill .stars { color: var(--amarelo); letter-spacing: 1px; }

/* ============================================================
   CONVÊNIOS PARCEIROS
   ============================================================ */
.convenios {
  background: var(--branco);
}
.conv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.conv-card {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  border: 2px solid var(--linha);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.conv-card:hover {
  border-color: var(--azul);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.conv-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
}
/* Placeholders coloridos com cores distintas pra cada parceiro
   — substitua por <img> quando tiver logos reais */
.conv-logo-ducash {
  background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-clarinho) 100%);
  color: var(--azul);
}
.conv-logo-emaissaude {
  background: linear-gradient(135deg, var(--amarelo-claro) 0%, #FFFCF0 100%);
  color: var(--amarelo-escuro);
}
.conv-logo-cdc {
  background: linear-gradient(135deg, #DCFCE7 0%, #F0FDF4 100%);
  color: var(--verde);
}
.conv-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.conv-info p {
  color: var(--texto-suave);
  font-size: 14.5px;
  line-height: 1.55;
}
.conv-aviso {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 18px 22px;
  background: var(--azul-clarinho);
  border: 1.5px solid var(--azul-claro);
  border-radius: 14px;
  font-size: 14.5px;
  color: var(--texto-suave);
  text-align: center;
  line-height: 1.6;
}
.conv-aviso strong { color: var(--azul-escuro); font-weight: 800; }

/* ============================================================
   UNIDADES (Quem Somos)
   ============================================================ */
.unidades { background: var(--azul-clarinho); }
.uni-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.uni-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.uni-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.uni-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--azul-claro) 0%, #B7CFE6 50%, #88AED1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.uni-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--amarelo);
  color: var(--azul-escuro);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}
.uni-body { padding: 36px 32px; }
.uni-tag-inline {
  display: inline-block;
  background: var(--amarelo);
  color: var(--azul-escuro);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.uni-body h3 { font-size: 26px; font-weight: 800; margin-bottom: 4px; }
.uni-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 20px;
}
.uni-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.uni-info-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--texto-suave);
  line-height: 1.5;
}
.uni-info-line svg {
  flex-shrink: 0;
  color: var(--azul);
  margin-top: 2px;
}
.uni-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   CTA FINAL (compartilhado)
   ============================================================ */
.cta-final {
  position: relative;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  padding: 96px 0;
  color: var(--branco);
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(250, 193, 15, 0.15);
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.cta-final h2 {
  color: var(--branco);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   COMO FUNCIONA (Consultas/Exames)
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-row-card {
  padding: 32px 28px;
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--linha);
  text-align: center;
  transition: all 0.3s ease;
}
.step-row-card:hover {
  border-color: var(--azul);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-row-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--amarelo-escuro);
  margin-bottom: 6px;
}
.step-row-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-row-card p {
  font-size: 14.5px;
  color: var(--texto-suave);
  line-height: 1.55;
}

/* ============================================================
   EXAMES — categorias e listas
   ============================================================ */
.exames-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exam-cat {
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 2px solid var(--linha);
  padding: 32px 30px;
  transition: all 0.3s ease;
}
.exam-cat:hover {
  border-color: var(--azul);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.exam-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--azul-claro);
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.exam-cat h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.exam-cat .sub {
  font-size: 14px;
  color: var(--texto-claro);
  margin-bottom: 18px;
}
.exam-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.exam-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--texto-suave);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px dashed var(--linha);
}
.exam-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amarelo);
  flex-shrink: 0;
}
.exam-list li:last-child { border-bottom: none; }

/* ============================================================
   CALCULADORA — Catálogo + Wizard + Resultado
   (todos os estilos da calculadora-vacinas)
   ============================================================ */

/* INTRO calc */
.calc-intro {
  padding: 56px 0 32px;
  text-align: center;
}
.calc-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--branco);
  box-shadow: var(--shadow-sm);
  color: var(--azul-escuro);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 22px;
}
.calc-intro h2 {
  font-size: clamp(30px, 4.5vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.calc-intro-lead {
  max-width: 580px;
  margin: 0 auto 22px;
  font-size: 17px;
  color: var(--texto-suave);
  line-height: 1.6;
}
.calc-intro-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--texto-claro);
  font-weight: 600;
  margin-bottom: 28px;
}
.calc-intro-cta-secondary {
  margin-top: 14px;
  font-size: 13px;
  color: var(--texto-claro);
  font-weight: 500;
}

/* CATÁLOGO */
.catalogo {
  padding: 64px 0;
  background: var(--branco);
  border-top: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
}
.catalogo-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.catalogo-head .eyebrow { margin-bottom: 18px; }
.catalogo-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 14px;
}
.catalogo-head p {
  color: var(--texto-suave);
  font-size: 16px;
  line-height: 1.55;
}
.filtros {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--branco);
  border: 1.5px solid var(--linha);
  color: var(--texto-suave);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.chip:hover { border-color: var(--azul); color: var(--azul); }
.chip.active { background: var(--azul); border-color: var(--azul); color: var(--branco); }
.chip .count { opacity: 0.7; font-weight: 600; margin-left: 4px; }

.vac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.vac-card {
  position: relative;
  background: var(--branco);
  border: 2px solid var(--linha);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
}
.vac-card:hover {
  border-color: var(--azul);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.vac-card.filtered-out { display: none; }
.vac-card-icons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 4px;
}
.vac-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--azul-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}
.vac-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--azul-escuro);
  line-height: 1.25;
  padding-right: 80px;
}
.vac-comercial {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--amarelo-claro);
  color: var(--amarelo-escuro);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-top: -4px;
}
.vac-divider { height: 1px; background: var(--linha); margin: 4px 0; }
.vac-meta-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--texto-claro);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vac-meta-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--texto-suave);
  line-height: 1.5;
}
.vac-card .btn-whatsapp {
  margin-top: auto;
  padding: 10px 18px;
  font-size: 13.5px;
  width: 100%;
}

.catalogo-cta {
  max-width: 680px;
  margin: 16px auto 0;
  padding: 36px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--azul-clarinho) 0%, var(--branco) 100%);
  border: 1.5px solid var(--azul-claro);
  border-radius: 24px;
}
.catalogo-cta h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.catalogo-cta p {
  color: var(--texto-suave);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 22px;
}

/* WIZARD */
.progress-section {
  position: sticky;
  top: 86px;
  z-index: 40;
  background: var(--bg);
  padding: 14px 0;
  border-bottom: 1px solid var(--linha);
}
.progress-bar {
  height: 6px;
  background: var(--linha);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-fill {
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--azul-medio) 0%, var(--azul) 100%);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--texto-suave);
}

.wizard { padding: 32px 0 56px; }
.step {
  display: none;
  background: var(--branco);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.step.active { display: block; animation: slideIn 0.4s ease; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-pill {
  display: inline-block;
  padding: 5px 14px;
  background: var(--azul-claro);
  color: var(--azul);
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.step h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.step-help {
  font-size: 14px;
  color: var(--texto-claro);
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* idade */
.idade-display { text-align: center; margin-bottom: 28px; }
.idade-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--azul);
  letter-spacing: -0.03em;
}
.idade-num-label {
  font-size: 16px;
  color: var(--texto-claro);
  font-weight: 600;
  margin-left: 6px;
}
.idade-pills {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.idade-pill {
  padding: 11px 10px;
  border: 1.5px solid var(--linha);
  border-radius: 12px;
  background: var(--branco);
  color: var(--texto);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
}
.idade-pill:hover { border-color: var(--azul); color: var(--azul); }
.idade-pill.active { background: var(--azul); border-color: var(--azul); color: var(--branco); }
.idade-input-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--texto-suave);
  font-weight: 500;
}
.idade-input-wrap input {
  width: 80px;
  padding: 10px 14px;
  border: 1.5px solid var(--linha);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--azul-escuro);
}
.idade-input-wrap input:focus { outline: none; border-color: var(--azul); }

/* options */
.options-grid { display: grid; gap: 12px; }
.options-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.options-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--branco);
  border: 2px solid var(--linha);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.option-card:hover { border-color: var(--azul); background: var(--azul-clarinho); }
.option-card.selected { background: var(--azul-claro); border-color: var(--azul); }
.option-indicator {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--linha);
  background: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.option-indicator.square { border-radius: 6px; }
.option-card.selected .option-indicator { background: var(--azul); border-color: var(--azul); }
.option-card.selected .option-indicator::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--branco);
  border-bottom: 2px solid var(--branco);
  transform: rotate(-45deg) translate(1px, -1px);
}
.option-content { flex: 1; }
.option-emoji { font-size: 22px; line-height: 1; margin-right: 4px; }
.option-card-row { display: flex; align-items: center; gap: 10px; }
.option-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--azul-escuro);
  line-height: 1.2;
}
.option-sub {
  font-size: 13px;
  color: var(--texto-claro);
  margin-top: 3px;
  font-weight: 500;
  line-height: 1.4;
}
.option-card-centered {
  flex-direction: column;
  text-align: center;
  padding: 22px 16px;
  gap: 10px;
}
.option-card-centered .option-emoji { font-size: 30px; margin: 0; }

.disclaimer {
  margin: 22px 0 4px;
  padding: 16px 20px;
  background: var(--amarelo-claro);
  border: 1.5px solid var(--amarelo);
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--azul-escuro);
}
.disclaimer strong { font-weight: 700; }

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--linha);
}

/* RESULT */
.result { padding: 24px 0 80px; }
.result-hero {
  position: relative;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  border-radius: 24px;
  padding: 48px 36px;
  color: var(--branco);
  overflow: hidden;
  margin-bottom: 32px;
}
.result-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 193, 15, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.result-hero-content { position: relative; z-index: 1; }
.result-hero h2 {
  color: var(--branco);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.result-hero-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}
.result-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.result-stat {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  text-align: center;
}
.result-stat .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--amarelo);
  margin-bottom: 4px;
}
.result-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.result-group { margin-bottom: 36px; }
.group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.group-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.group-icon.atraso { background: var(--vermelho-claro); color: var(--vermelho); }
.group-icon.ano { background: var(--laranja-claro); color: var(--laranja); }
.group-icon.recom { background: var(--azul-claro); color: var(--azul); }
.group-head h3 { font-size: 19px; font-weight: 700; line-height: 1.2; }
.group-head .group-sub {
  display: block;
  font-size: 13px;
  color: var(--texto-claro);
  font-weight: 500;
  margin-top: 2px;
}
.vacina-card {
  background: var(--branco);
  border: 2px solid var(--linha);
  border-left-width: 4px;
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}
.vacina-card.atraso { border-left-color: var(--vermelho); }
.vacina-card.ano { border-left-color: var(--laranja); }
.vacina-card.recom { border-left-color: var(--azul); }
.vacina-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.vacina-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.vacina-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vacina-nome {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--azul-escuro);
  line-height: 1.2;
}
.vacina-comercial {
  padding: 3px 10px;
  background: var(--amarelo-claro);
  color: var(--amarelo-escuro);
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vacina-tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.vacina-tag.atraso { background: var(--vermelho-claro); color: var(--vermelho); }
.vacina-tag.ano { background: var(--laranja-claro); color: var(--laranja); }
.vacina-tag.recom { background: var(--azul-claro); color: var(--azul); }
.vacina-motivo {
  font-size: 14px;
  font-weight: 500;
  color: var(--texto-suave);
  line-height: 1.55;
  margin-bottom: 14px;
}
.vacina-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 12px;
  border-top: 1px solid var(--linha);
  font-size: 13px;
  color: var(--texto-suave);
  line-height: 1.5;
}
.vacina-meta span strong { color: var(--azul-escuro); font-weight: 700; }
.group-empty {
  padding: 22px 24px;
  background: var(--azul-clarinho);
  border-radius: 14px;
  color: var(--texto-suave);
  font-size: 14.5px;
  font-weight: 500;
}
.result-disclaimer {
  margin: 28px 0 32px;
  padding: 18px 22px;
  background: var(--azul-claro);
  border: 1.5px solid var(--azul-medio);
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--azul-escuro);
}
.result-cta {
  background: linear-gradient(135deg, var(--azul-clarinho) 0%, var(--branco) 100%);
  border: 1.5px solid var(--azul-claro);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
}
.result-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.result-cta p {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--texto-suave);
  font-size: 15px;
}
.result-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .vacinacao-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .header-nav { gap: 22px; }
  .vac-grid { grid-template-columns: repeat(2, 1fr); }
  .exames-cats { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .vacinacao, .cta-final { padding: 72px 0; }

  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .topbar-right { display: none; }
  .topbar-left { gap: 14px; }

  .header { height: 72px; }
  .header-logo img { height: 44px; }
  .header-nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 56px 0 80px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-badge { padding: 10px 14px; }
  .hero-badge .title { font-size: 13px; }
  .hero-badge .sub { font-size: 11px; }
  .hero-badge.top { top: 14px; left: 14px; }
  .hero-badge.bottom { bottom: 14px; right: 14px; }
  .hero-visual-bg-circle { width: 80px; height: 80px; top: -16px; right: -10px; }
  .hero-visual-bg-square { width: 70px; height: 70px; bottom: 24px; left: -16px; }

  .quick-grid { grid-template-columns: 1fr; gap: 12px; }
  .esp-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .conv-grid { grid-template-columns: 1fr; }
  .why-card { padding: 32px 28px; }
  .vacinacao-types { grid-template-columns: 1fr; }
  .uni-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .section-head { margin-bottom: 48px; }

  .progress-section { top: 72px; padding: 12px 0; }
  .vac-grid { grid-template-columns: 1fr; }

  .filtros {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 4px 8px;
    margin: 0 -20px 28px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .filtros::-webkit-scrollbar { height: 6px; }
  .filtros::-webkit-scrollbar-thumb { background: var(--linha); border-radius: 3px; }

  .wa-float { width: 58px; height: 58px; bottom: 20px; right: 20px; }
}

@media (max-width: 640px) {
  .calc-intro { padding: 32px 0 24px; }
  .calc-intro-meta { gap: 12px; font-size: 12.5px; }

  .step { padding: 28px 22px; border-radius: 18px; }
  .step h2 { font-size: 22px; }

  .idade-num { font-size: 48px; }
  .idade-pills { grid-template-columns: repeat(3, 1fr); }

  .options-grid.cols-2,
  .options-grid.cols-3 { grid-template-columns: 1fr; }

  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn { width: 100%; }

  .result-hero { padding: 36px 24px; }
  .result-summary { grid-template-columns: 1fr; }
  .result-stat .num { font-size: 30px; }

  .vacina-card { padding: 18px; }
  .result-cta { padding: 30px 22px; }
  .result-cta-actions .btn { width: 100%; }
  .catalogo { padding: 48px 0; }
  .catalogo-cta { padding: 28px 22px; margin-top: 8px; }

  .esp-modal { padding: 12px; }
  .esp-modal-hero {
    padding: 32px 24px 20px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .esp-modal-body { padding: 20px 24px 8px; }
  .esp-modal-foot { padding: 16px 24px 24px; flex-direction: column; align-items: stretch; }
  .esp-modal-foot .btn { width: 100%; justify-content: center; }
  .esp-modal-hero h3 { font-size: 24px; }
  .esp-modal-photo, .esp-modal-photo-placeholder { width: 96px; height: 96px; }
}

@media (max-width: 420px) {
  .container, .container-wide, .wizard-container { padding: 0 18px; }
  .hero h1 { font-size: 36px; }
  .uni-body { padding: 26px 22px; }
  .uni-actions { flex-direction: column; align-items: stretch; }
  .uni-actions .btn { width: 100%; }
}

/* CTA da calculadora em exames.html */
@media (max-width: 768px) {
  section .container > div[style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 24px !important;
  }
  section .container > div[style*="grid-template-columns: 1fr auto"] .btn {
    width: 100%;
    justify-content: center;
  }
  /* Coleta domiciliar grid 2-cols em mobile */
  .coleta-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* Bloco "ambiente" (foto + texto lado a lado em consultas/exames) */
@media (max-width: 768px) {
  .amb-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* Detalhes (FAQ) — animação suave */
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::before {
  content: '▸';
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.2s ease;
  color: var(--azul);
}
details[open] summary::before { transform: rotate(90deg); }
