/* ==========================================================================
   CLÍNICA ULTRA NOVO SORRISO — REDESIGN PROFISSIONAL & BOUTIQUE ODONTOLÓGICA
   Cores: Azul Oceano (#03588C), Azul Real Suavizado (#0E64A5), Terracota (#D95323)
   Background: Claro, Acolhedor (#F8FAFC / #FFFFFF)
   Tipografia: Plus Jakarta Sans (Interface & Corpo) + Outfit (Títulos)
   ========================================================================== */

:root {
  /* Paleta Oficial da Marca Suavizada para o Nicho Odontológico */
  --color-primary-blue: #03588C;
  --color-primary-blue-hover: #0E64A5;
  --color-primary-blue-light: #EBF3F8;
  --color-terracotta: #D95323;
  --color-terracotta-hover: #E26D42;
  --color-terracotta-light: #FFF4F0;
  
  /* Superfícies Claras e Limpas */
  --bg-main: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-soft-tint: #F1F6FA;
  --border-light: #E2E8F0;
  --border-blue-subtle: rgba(3, 88, 140, 0.12);
  
  /* Textos de Alta Legibilidade e Contraste Suave */
  --text-heading: #0F2232;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #FFFFFF;

  /* Cores de Ação e Prova Social */
  --gold-star: #FBBC05;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* Fontes do Google */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Formas e Sombras */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(15, 34, 50, 0.04);
  --shadow-card: 0 10px 30px rgba(3, 88, 140, 0.07);
  --shadow-hover: 0 16px 40px rgba(3, 88, 140, 0.12);
  --shadow-btn: 0 8px 24px rgba(3, 88, 140, 0.25);
  --shadow-wa: 0 8px 26px rgba(37, 211, 102, 0.4);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset & Estilos Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body.light-theme {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 76px;
}

img, picture, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Animação UI de Scroll Reveal (Suave ao rolar a página no mobile e desktop)
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   Barra Superior de Notificação (Status da Operação)
   -------------------------------------------------------------------------- */
.top-status-bar {
  background-color: #032C47;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.status-indicator strong {
  color: #FFC09F;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.top-status-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.top-cta-link {
  color: #FFC09F;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-cta-link:hover {
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   MENU FIXO NO TOPO EM TODO O PROJETO (Desktop & Mobile)
   -------------------------------------------------------------------------- */
.fixed-top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 34, 50, 0.05);
  transition: all var(--transition-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(3, 88, 140, 0.12));
  transition: transform var(--transition-fast);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.03);
}

.nav-links-center {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links-center a {
  color: var(--text-body);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-links-center a:hover {
  color: var(--color-primary-blue);
  background-color: var(--color-primary-blue-light);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-primary-blue), #02436A);
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-nav-schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(3, 88, 140, 0.35);
  color: var(--text-light);
}

.btn-pulse-mini {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  animation: pulseLive 2s infinite;
}

.btn-quick-wa-mobile {
  display: none;
}

.icon-arrow {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  cursor: pointer;
  padding: 1px;
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary-blue);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Badges Pílula com Micro-Animação UI
   -------------------------------------------------------------------------- */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  box-shadow: 0 2px 8px rgba(3, 88, 140, 0.06);
  cursor: default;
}

.pill-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(3, 88, 140, 0.14);
}

.pill-blue {
  background-color: var(--color-primary-blue-light);
  color: var(--color-primary-blue);
  border: 1px solid rgba(3, 88, 140, 0.22);
}

.pill-terracotta {
  background-color: var(--color-terracotta-light);
  color: var(--color-terracotta);
  border: 1px solid rgba(217, 83, 35, 0.28);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary-blue);
  animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(3, 88, 140, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(3, 88, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(3, 88, 140, 0); }
}

/* --------------------------------------------------------------------------
   1. HERO SECTION COM IMAGEM NO BACKGROUND (Fundo Claro)
   -------------------------------------------------------------------------- */
.hero-light-bg {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-main);
  padding: 70px 0 90px;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #F8FAFC 0%,
    rgba(248, 250, 252, 0.96) 42%,
    rgba(248, 250, 252, 0.6) 70%,
    rgba(248, 250, 252, 0.15) 100%
  );
  pointer-events: none;
}

.hero-content-relative {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-col {
  max-width: 680px;
}

#hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.15;
  color: var(--text-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

#hero-main-title em {
  font-style: italic;
  color: var(--color-primary-blue);
  font-weight: 700;
}

.hero-description {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 34px;
}

/* Card de Foto Hero Mobile (Oculto no Desktop) */
.hero-mobile-media-box {
  display: none;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-primary-blue), #02436A);
  color: var(--text-light);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(3, 88, 140, 0.35);
  color: var(--text-light);
}

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-white);
  color: var(--color-primary-blue);
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-subtle);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-secondary-light:hover {
  background-color: var(--color-primary-blue-light);
  border-color: rgba(3, 88, 140, 0.25);
  transform: translateY(-2px);
}

.icon-wa-btn {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-btn {
  width: 16px;
  height: 16px;
}

/* Cards Flutuantes Embutidos no Hero */
.hero-floating-cards-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-float-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast);
}

.hero-float-card:hover {
  transform: translateY(-3px);
}

.card-tech {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-primary-blue-light);
  color: var(--color-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon svg {
  width: 24px;
  height: 24px;
}

.float-card-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.float-card-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Card B: Badge Oficial Google Padrão do Print */
.card-google {
  display: flex;
  align-items: center;
}

.google-badge-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-google-g {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.score-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-line strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
}

.stars-gold {
  color: var(--gold-star);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.reviews-count-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   BANNER DE MÉTRICAS (Fundo Claro com Cards Elevados)
   -------------------------------------------------------------------------- */
.metrics-section-light {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 55px 0;
}

.metrics-light-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.metric-card {
  padding: 10px 16px;
  border-left: 3px solid var(--color-primary-blue);
}

.metric-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  font-weight: 800;
  color: var(--color-primary-blue);
  line-height: 1.1;
  margin-bottom: 6px;
}

.metric-number small {
  color: var(--color-terracotta);
}

.metric-label {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.metric-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Cabeçalhos de Seções
   -------------------------------------------------------------------------- */
section {
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading.center {
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.2;
  color: var(--text-heading);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

h2 em {
  font-style: italic;
  color: var(--color-primary-blue);
  font-weight: 700;
}

.section-subtext {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   2. BENTO GRID DE SOLUÇÕES (4 BLOCOS BALANCEADOS SEM BLOCO ÓRFÃO)
   -------------------------------------------------------------------------- */
.solutions-light-section {
  background-color: var(--bg-main);
}

.bento-balanced-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.bento-card-balanced {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.bento-card-balanced:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(3, 88, 140, 0.22);
}

.bento-card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: #E2E8F0;
}

.bento-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-balanced:hover .bento-media-img {
  transform: scale(1.05);
}

.bento-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-primary-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(3, 88, 140, 0.15);
}

.bento-card-body {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bento-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
  margin-bottom: 12px;
}

.bento-card-body p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.62;
  margin-bottom: 20px;
}

.bento-checklist {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.bento-checklist li svg {
  width: 17px;
  height: 17px;
  color: var(--whatsapp-green);
  flex-shrink: 0;
}

.bento-link-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  transition: color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.bento-link-action svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.bento-link-action:hover {
  color: var(--color-primary-blue-hover);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   3. SLIDER INTERATIVO ANTES & DEPOIS (Badges Externos & Zero Glitch)
   -------------------------------------------------------------------------- */
.slider-section-light {
  background-color: var(--bg-white);
}

.split-slider-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

/* BADGES EXTERNOS FORA DO COMPARADOR (ZERO BUGS VISUAIS) */
.comparison-status-bar-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.status-indicator-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.before-tag {
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.indicator-dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #EF4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.after-tag {
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.indicator-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-hint-center {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-light-card {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: ew-resize;
  background-color: #E2E8F0;
}

.split-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.layer-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--color-primary-blue);
  z-index: 2;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.16);
}

.layer-after .split-img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--slider-container-w, 960px);
  max-width: none;
  height: 100%;
}

/* Divisor Arrastável Ergonômico */
.slider-handle-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
}

.handle-stem {
  flex: 1;
  width: 3px;
  background-color: var(--color-primary-blue);
}

.handle-orb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-blue);
  border: 3px solid var(--bg-white);
  box-shadow: 0 4px 18px rgba(3, 88, 140, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.slider-handle-divider:hover .handle-orb {
  transform: scale(1.1);
}

.slider-hint {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.slider-hint span {
  color: var(--color-primary-blue);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   NOVA SEÇÃO: ESTRUTURA MODERNA & FACHADA DA CLÍNICA
   -------------------------------------------------------------------------- */
.structure-facade-section {
  background-color: var(--bg-soft-tint);
}

.facade-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 55px;
  align-items: center;
}

.facade-img-card-clean {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.facade-img-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.facade-clean-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.facade-img-card-clean:hover .facade-clean-img {
  transform: scale(1.03);
}

.facade-content-column p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
}

.facade-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 34px;
}

.facade-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-primary-blue-light);
  color: var(--color-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
}

.facade-highlight-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.facade-highlight-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. FERRAMENTA INTERATIVA DE DIAGNÓSTICO & WHATSAPP
   -------------------------------------------------------------------------- */
.diagnostic-section-light {
  background-color: var(--bg-white);
}

.diagnostic-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.diag-intro-copy p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 30px;
}

.diag-trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-heading);
  font-weight: 500;
}

.bullet-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary-blue);
}

/* Card do Diagnóstico */
.diagnostic-app-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.app-card-header {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.steps-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.step-progress-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.step-progress-item.active {
  opacity: 1;
}

.step-num-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-main);
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.step-progress-item.active .step-num-circle {
  background-color: var(--color-primary-blue);
  border-color: var(--color-primary-blue);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(3, 88, 140, 0.28);
}

.step-name-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.step-progress-item.active .step-name-label {
  color: var(--color-primary-blue);
  font-weight: 700;
}

.step-connector-line {
  flex: 1;
  height: 2px;
  background-color: var(--border-light);
  margin: 0 12px;
  min-width: 14px;
}

.step-pane {
  display: none;
}

.step-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-pane h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.options-selection-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.selection-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.selection-card:hover {
  background-color: var(--bg-white);
  border-color: var(--color-primary-blue);
}

.selection-card.selected {
  background-color: var(--color-primary-blue-light);
  border-color: var(--color-primary-blue);
}

.selection-card input[type="radio"] {
  display: none;
}

.radio-orb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.selection-card.selected .radio-orb {
  border-color: var(--color-primary-blue);
}

.selection-card.selected .radio-orb::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary-blue);
}

.card-details strong {
  display: block;
  font-size: 0.94rem;
  color: var(--text-heading);
  line-height: 1.3;
}

.card-details small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-step-next {
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary-blue), #02436A);
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  transition: transform var(--transition-fast);
}

.btn-step-next:hover {
  transform: translateY(-2px);
}

.step-action-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-step-back {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background-color var(--transition-fast);
}

.btn-step-back:hover {
  background-color: #E2E8F0;
}

.step-action-buttons .btn-step-next {
  flex: 1;
}

/* Resumo da Triagem */
.summary-preview-card {
  background-color: var(--bg-soft-tint);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.preview-row span {
  color: var(--text-muted);
}

.preview-row strong {
  color: var(--color-primary-blue);
  font-weight: 700;
}

.btn-submit-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-wa);
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-submit-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: var(--text-light);
}

.icon-wa {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   5. MURAL DE PROVA SOCIAL GOOGLE (PADRÃO EXATO DO PRINT ENVIADO)
   -------------------------------------------------------------------------- */
.reviews-print-section {
  background-color: var(--bg-main);
}

/* BADGE PADRÃO DO PRINT DO USUÁRIO */
.google-official-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 22px;
}

.google-g-print {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.rating-number-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-score-bold {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
}

.google-stars-gold {
  color: var(--gold-star);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.google-count-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CARROSSEL NO MOBILE / GRID DE 4 CARDS NO DESKTOP */
.reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
}

.carousel-dots-row {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #CBD5E1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.dot.active {
  width: 26px;
  border-radius: 10px;
  background-color: var(--color-primary-blue);
}

.review-print-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.review-print-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(3, 88, 140, 0.25);
}

.card-head-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-tag {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
}

.quote-symbol-orange {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-terracotta);
  line-height: 1;
  margin: 12px 0 6px;
}

.review-quote-body {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 24px;
  flex: 1;
}

.card-author-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.avatar-initial-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--text-heading);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-details strong {
  display: block;
  font-size: 0.94rem;
  color: var(--text-heading);
  line-height: 1.25;
}

.author-details small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. BASE OPERACIONAL & UNIDADES
   -------------------------------------------------------------------------- */
.locations-light-section {
  background-color: var(--bg-white);
}

.units-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.unit-card-white {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.unit-card-white:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.unit-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.unit-badge {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary-blue);
  background-color: var(--color-primary-blue-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.unit-pin {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.unit-pin svg {
  width: 20px;
  height: 20px;
}

.unit-card-white h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.unit-address-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.unit-info-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text-heading);
}

.unit-info-pill svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary-blue);
  flex-shrink: 0;
}

.unit-info-pill strong {
  color: var(--color-primary-blue);
}

.unit-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-unit-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  color: var(--text-light);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: transform var(--transition-fast);
}

.btn-unit-whatsapp:hover {
  transform: translateY(-2px);
  color: var(--text-light);
}

.btn-unit-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--color-primary-blue);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background-color var(--transition-fast);
}

.btn-unit-route:hover {
  background-color: var(--color-primary-blue-light);
}

/* --------------------------------------------------------------------------
   7. BLOCO DO MAPA INTERATIVO NO RODAPÉ
   -------------------------------------------------------------------------- */
.interactive-map-section {
  padding: 40px 0 80px;
  background-color: var(--bg-white);
}

.map-container-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-card-header {
  padding: 24px 32px;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.map-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.map-marker-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-primary-blue-light);
  color: var(--color-primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker-icon svg {
  width: 24px;
  height: 24px;
}

.map-header-left h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.map-header-left p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.btn-open-google-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary-blue);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background-color var(--transition-fast);
}

.btn-open-google-maps:hover {
  background-color: var(--color-primary-blue-hover);
  color: var(--text-light);
}

.map-iframe-wrapper iframe {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   RODAPÉ CENTRALIZADO COM A LOGO OFICIAL
   -------------------------------------------------------------------------- */
.site-footer-centered {
  background-color: #F1F5F9;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 35px;
  text-align: center;
}

.footer-inner-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-center-wrap {
  margin-bottom: 28px;
}

.footer-official-logo {
  max-width: 240px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.footer-tagline-motto {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-terracotta);
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.footer-nav-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-nav-centered a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color var(--transition-fast);
}

.footer-nav-centered a:hover {
  color: var(--color-primary-blue);
}

.footer-contacts-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-pill-item a {
  font-weight: 700;
  color: var(--color-primary-blue);
}

.contact-divider {
  color: var(--border-light);
  font-size: 1.2rem;
}

.footer-ethical-disclaimer {
  display: block;
  max-width: 720px;
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-bottom-copyright {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Botão Flutuante de WhatsApp Onipresente
   -------------------------------------------------------------------------- */
.floating-wa-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wa-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-heading);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wa-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  animation: pulseLive 2s infinite;
}

.wa-main-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: var(--shadow-wa);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.floating-wa-btn:hover .wa-main-circle {
  transform: scale(1.08);
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.6);
}

.icon-wa-circle {
  width: 28px;
  height: 28px;
}

/* --------------------------------------------------------------------------
   Responsividade Mobile-First Radical & Super Retina
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Responsividade Mobile-First Radical & Super Retina
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-bg-media {
    width: 100%;
    opacity: 0.28;
  }

  .hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(248, 250, 252, 0.88) 0%,
      rgba(248, 250, 252, 0.98) 100%
    );
  }

  .metrics-light-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-balanced-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .facade-layout-grid,
  .diagnostic-layout-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .units-dual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  /* Remover barra de topo no mobile conforme solicitado */
  .top-status-bar {
    display: none !important;
  }

  /* Ocultar números/métricas no mobile conforme solicitado com o X vermelho */
  .metrics-section-light {
    display: none !important;
  }

  /* Header Fixo no Mobile */
  .header-inner {
    height: 66px;
    position: relative;
    justify-content: space-between;
    padding: 0 6px;
  }

  .menu-toggle {
    display: flex;
    z-index: 2;
  }

  .nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .nav-logo-img {
    height: 46px;
    max-height: 46px;
    filter: drop-shadow(0 2px 8px rgba(3, 88, 140, 0.16));
  }

  .btn-nav-schedule {
    display: none;
  }

  .btn-quick-wa-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 2;
  }

  .btn-quick-wa-mobile svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .nav-links-center {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border-light);
    border-radius: 0 0 24px 24px;
    padding: 24px 20px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    display: none;
    z-index: 1001;
  }

  .nav-links-center.open {
    display: flex;
    animation: slideDownNav 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links-center a {
    font-size: 1.05rem;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    text-align: center;
  }

  /* Card da Foto do Hero no Mobile (Dra. Júlia & Paciente com Alto Contraste) */
  .hero-bg-media {
    display: none;
  }

  .hero-mobile-media-box {
    display: block;
    position: relative;
    width: 100%;
    margin: 22px 0 26px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(3, 88, 140, 0.16);
    border: 2px solid var(--bg-white);
    background-color: #E2E8F0;
  }

  .hero-mobile-img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .hero-mobile-badge-float {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }

  .hero-floating-cards-row {
    flex-direction: column;
  }

  .hero-float-card {
    width: 100%;
    max-width: 100%;
  }

  /* Slider antes e depois no mobile */
  .comparison-status-bar-outer {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .status-indicator-tag {
    justify-content: center;
  }

  .status-hint-center {
    text-align: center;
    order: 3;
    margin-top: 4px;
  }

  .comparison-light-card {
    height: 380px;
  }

  .facade-clean-img {
    height: 320px;
  }

  /* Etapas de agendamento perfeitamente encaixadas no mobile */
  .steps-progress-row {
    padding: 0 4px;
  }

  .step-progress-item {
    gap: 6px;
  }

  .step-num-circle {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .step-name-label {
    font-size: 0.82rem;
  }

  .step-connector-line {
    margin: 0 8px;
    min-width: 10px;
  }

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

  /* Carrossel de avaliações ativo no mobile */
  .reviews-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 4px 0 10px;
  }

  .reviews-track {
    display: flex;
    grid-template-columns: none;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    will-change: transform;
    gap: 0;
  }

  .review-print-card {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .carousel-dots-row {
    display: flex;
  }

  .map-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-open-google-maps {
    width: 100%;
    justify-content: center;
  }

  /* Rodapé recolhido e limpo no mobile */
  .site-footer-centered {
    padding: 45px 0 25px;
  }

  .footer-logo-center-wrap {
    margin-bottom: 20px;
  }

  .footer-official-logo {
    max-width: 200px;
  }

  .footer-nav-centered {
    gap: 10px 14px;
    margin-bottom: 20px;
  }

  .footer-nav-centered a {
    font-size: 0.86rem;
    padding: 6px 12px;
    background-color: var(--bg-white);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
  }

  .footer-contacts-centered {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .contact-divider {
    display: none;
  }

  .footer-bottom-copyright {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }

  .hero-light-bg {
    min-height: auto;
    padding: 45px 0 65px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-blue,
  .btn-secondary-light {
    width: 100%;
    justify-content: center;
  }

  .metrics-light-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .comparison-light-card {
    height: 320px;
  }

  .unit-btn-group {
    flex-direction: column;
  }

  .floating-wa-wrapper {
    bottom: 20px;
    right: 20px;
  }

  .wa-status-badge {
    display: none;
  }

  .wa-main-circle {
    width: 52px;
    height: 52px;
  }
}
