/* ===========================
   WILER MONTEIRO — STYLESHEET
   =========================== */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #1A1F2E;
  background: #fff;
  line-height: 1.7;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }

/* Text-wrap balance — títulos quebram balanceados, parágrafos sem viúva */
/* Títulos: linhas equilibradas */
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
/* Títulos com <br> manual: balance ignora a quebra forçada e redistribui — usar wrap */
h1:has(br), h2:has(br), h3:has(br) { text-wrap: wrap; }
/* Descrições curtas / subtítulos: também balanceados (2-3 linhas equilibradas) */
.hero-desc, .hero-sub, .esp-lead, .sobre-lead, .esp-lp-sub, .hc-desc,
.section-header p, .diferenciais-header p, .oque-content .esp-lead,
.page-hero p, .esp-head p, .mvv-header p, .depo-cta-card > p,
.cta-final p, .cta-final-content p, .badge + p { text-wrap: balance; }
/* Parágrafos longos: evita órfã */
p, li { text-wrap: pretty; }
a { text-decoration: none; color: inherit; }

/* TOKENS — paleta extraída da logo Wiler (azuis #287CC0 → #3BA4DD) */
:root {
  --navy:        #1B5A8E;   /* azul escuro derivado da logo */
  --navy-deep:   #134470;
  --blue:        #287CC0;   /* azul principal da logo */
  --blue-mid:    #3491CF;
  --blue-light:  #3BA4DD;   /* azul claro da logo */
  --blue-pale:   #EAF5FB;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-100:    #EEF1F4;
  --gray-300:    #C8CFD8;
  --gray-500:    #7A8290;
  --gray-700:    #4A525E;
  --black:       #0d0d0d;
  --text:        #1A1F2E;
  --text-muted:  #5A6470;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(28,58,107,0.10);
  --shadow-lg:   0 12px 48px rgba(28,58,107,0.16);
  --transition:  all .3s ease;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
p  { font-size: 16px; line-height: 1.8; color: var(--text-muted); }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-navy  { color: var(--navy); }
.text-blue  { color: var(--blue); }
.text-muted { color: var(--text-muted); }

.badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.badge-navy {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #1B5A8E 0%, #287CC0 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(27,90,142,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #134470 0%, #1B5A8E 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,90,142,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #1B5A8E 0%, #287CC0 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(27,90,142,0.35);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #134470 0%, #1B5A8E 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,90,142,0.45);
}

/* NAVBAR — fundo branco, logo esquerda, links direita */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(10, 26, 60, 0.10);
  border-bottom: 1px solid rgba(10, 26, 60, 0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 24px rgba(10, 26, 60, 0.13);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 8px 0;
  text-decoration: none;
}
.nav-logo img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
}
.nav-logo img.nav-logo-icon {
  height: 58px;
  width: auto;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
}
.nav-logo img.nav-logo-wordmark {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .nl-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #0a1a30;
  letter-spacing: -0.3px;
  line-height: 1.05;
}
.nav-logo-text .nl-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: #1B5A8E;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .nav-logo img { height: 48px; }
  .nav-logo-text .nl-name { font-size: 19px; }
  .nav-logo-text .nl-sub { font-size: 9px; letter-spacing: 1.2px; margin-top: 4px; }
  .nav-logo { gap: 10px; }
  .nav-logo img.nav-logo-icon { height: 46px; }
  .nav-logo img.nav-logo-wordmark { height: 40px; }
}
@media (max-width: 480px) {
  .nav-logo-text .nl-sub { display: none; }
  .nav-logo img { height: 42px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(10, 26, 60, 0.80);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--blue);
  transition: right .3s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { right: 0; }
.nav-cta { margin-left: 16px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(10, 26, 60, 0.8);
  transition: var(--transition);
}

/* HERO — primeira dobra: foto grande + paleta Wiler */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(90deg, #0d2f4e 0%, #1B5A8E 45%, #e8eef5 100%);
  overflow: hidden;
  display: block;
}
.hero-rings {
  position: absolute;
  top: -190px; left: -190px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 46px, rgba(91,184,232,0.11) 46px 48px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  bottom: -240px; left: 26%;
  width: 780px; height: 560px;
  background: radial-gradient(ellipse, rgba(59,164,221,0.30) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 4;
  width: 52%;
  max-width: 640px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 32px 80px 72px;
}
.hero-logo {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 34px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 640px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 510px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 17px 34px;
  background: #25D366;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.hero-cta svg { width: 20px; height: 20px; }
.hero-cta:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(37,211,102,0.5);
}
.hero-scroll {
  margin-top: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}
.hero-scroll::before {
  content: '';
  width: 34px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.hero-image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  z-index: 2;
}
.hero-image img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 86%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(-12px 22px 55px rgba(0,0,0,0.5));
}

/* DIFERENCIAIS */
.diferenciais {
  background: linear-gradient(180deg, #EAF5FB 0%, #D8EEF9 50%, #EAF5FB 100%);
  padding: 80px 0;
}
.diferenciais-layout {
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  gap: 56px;
  align-items: center;
}
.diferenciais-header .badge {
  margin-bottom: 14px;
}
.diferenciais-header h2 {
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.diferenciais-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .diferenciais-layout { grid-template-columns: 1fr; gap: 36px; }
  .diferenciais-header p { max-width: none; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .diferenciais-grid { grid-template-columns: 1fr; }
}
.diferencial-card {
  background: linear-gradient(160deg, #1B5A8E 0%, #287CC0 45%, #3BA4DD 85%, #8AD0F0 100%);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: var(--transition);
  box-shadow: 0 14px 36px rgba(27,90,142,0.18);
  position: relative;
  overflow: hidden;
}
.diferencial-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
  pointer-events: none;
}
.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(27,90,142,0.32);
}
.diferencial-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.diferencial-icon svg {
  width: 24px; height: 24px;
  stroke: #fff;
}
.diferencial-card h3 {
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.diferencial-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

/* SERVIÇOS */
.servicos {
  background: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 17px; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.servico-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  background: #fff;
}
.servico-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.servico-thumb {
  height: 220px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servico-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: transform .4s ease;
}
.servico-card:hover .servico-thumb-img { transform: scale(1.05); }
.servico-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(28,58,107,0.8) 100%);
}
.servico-thumb-icon {
  position: absolute;
  bottom: 20px; left: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servico-thumb-icon svg { width: 24px; height: 24px; stroke: #fff; }
.servico-body { padding: 28px; }
.servico-body h3 {
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  font-size: 22px;
  position: relative;
}
.servico-body h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1B5A8E 0%, #3186C7 45%, #3BA4DD 85%, #8AD0F0 100%);
}
.servico-card:hover .servico-body h3::after {
  width: 96px;
  transition: width .3s ease;
}
.servico-body p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.servico-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1B5A8E 0%, #287CC0 100%);
  box-shadow: 0 8px 22px rgba(27,90,142,0.32);
  transition: transform .2s, box-shadow .2s, gap .2s;
}
.servico-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(27,90,142,0.42);
  gap: 12px;
}
.servico-link svg { width: 14px; height: 14px; }

/* GALERIA */
.galeria {
  background: linear-gradient(180deg, #EAF5FB 0%, #D8EEF9 50%, #EAF5FB 100%);
}
.galeria-filtros {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filtro-btn {
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-300);
  background: #fff;
  color: var(--text-muted);
  transition: var(--transition);
}
.filtro-btn:hover, .filtro-btn.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.galeria-grid, .galeria-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.galeria-grid-home .galeria-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-100);
  position: relative;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
}
.galeria-grid-home .galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.galeria-grid-home .galeria-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,68,112,0.55) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.galeria-grid-home .galeria-item:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(28,58,107,0.18); }
.galeria-grid-home .galeria-item:hover img { transform: scale(1.05); }
.galeria-grid-home .galeria-item:hover::after { opacity: 1; }
.galeria-grid-home .galeria-item.hidden { display: none; }
.galeria-home {
  background: #fff;
}
@media (max-width: 900px) {
  .galeria-grid-home { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .galeria-grid-home { grid-template-columns: 1fr; }
}
.galeria-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-100);
  position: relative;
  cursor: pointer;
}
.galeria-item-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  gap: 10px;
  transition: var(--transition);
}
.galeria-item-placeholder svg { width: 32px; height: 32px; stroke: var(--gray-300); }
.galeria-item:hover .galeria-item-placeholder { color: var(--blue); }
.galeria-item:hover .galeria-item-placeholder svg { stroke: var(--blue); }
.galeria-placeholder-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SOBRE O DR — v2 light com logo + texto */
.sobre {
  background: #fff;
  overflow: hidden;
  padding: 110px 0;
}
.sobre-light { background: #fff; }
.sobre-inner-v2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}
.sobre-logo-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
  background: linear-gradient(135deg, rgba(40,124,192,0.06) 0%, rgba(59,164,221,0.04) 100%);
  border-radius: 24px;
  border: 1px solid rgba(40,124,192,0.12);
  position: relative;
  min-height: 460px;
}
.sobre-logo-side::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  border-radius: 24px 0 0 0;
}
.sobre-logo-side::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 80px; height: 80px;
  border-bottom: 3px solid var(--blue-light);
  border-right: 3px solid var(--blue-light);
  border-radius: 0 0 24px 0;
}
.sobre-logo-img {
  max-width: 100%;
  max-height: 520px;
  width: 100%;
  object-fit: contain;
}
.sobre-foto-side {
  padding: 0;
  min-height: 0;
  background: none;
  overflow: visible;
}
.sobre-foto-img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 24px;
  display: block;
}
.sobre-content-v2 .badge { margin-bottom: 20px; }
.sobre-content-v2 h2 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: clamp(32px, 3.5vw, 48px);
}
.sobre-content-v2 h2 em {
  color: var(--blue);
}
.sobre-lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.sobre-content-v2 p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.sobre-credenciais-v2 {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.credencial-item-light {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.credencial-item-light svg {
  width: 18px; height: 18px;
  stroke: var(--blue);
  flex-shrink: 0;
  background: var(--blue-pale);
  padding: 3px;
  border-radius: 50%;
  box-sizing: content-box;
}
.sobre-actions-v2 {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sobre-content-v2 .btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.sobre-content-v2 .btn-outline:hover { background: var(--blue); color: #fff; }

/* SOBRE legacy (mantém para fallback de outras páginas) */
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  min-height: 680px;
}
.sobre-image {
  height: 680px;
  position: relative;
  overflow: hidden;
}
.sobre-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.sobre-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
}
.sobre-content {
  padding: 80px 80px 80px 60px;
  position: relative;
  z-index: 2;
}
.sobre-content .badge { margin-bottom: 20px; }
.sobre-content h2 { color: #fff; margin-bottom: 24px; }
.sobre-content p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  margin-bottom: 16px;
}
.sobre-credenciais {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credencial-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}
.credencial-item svg { width: 18px; height: 18px; stroke: var(--blue-light); flex-shrink: 0; }
.sobre-actions { margin-top: 40px; display: flex; gap: 16px; }

/* DEPOIMENTOS */
.depoimentos {
  background: #fff;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  position: relative;
  background: linear-gradient(180deg, #F4FAFD 0%, #EAF5FB 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(49,134,199,0.18);
  box-shadow: 0 8px 24px rgba(27,90,142,0.08);
  transition: var(--transition);
  overflow: hidden;
}
.depoimento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1B5A8E 0%, #3186C7 45%, #3BA4DD 85%, #8AD0F0 100%);
}
.depoimento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49,134,199,0.35);
  box-shadow: 0 18px 40px rgba(27,90,142,0.18);
}
.depoimento-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.depoimento-stars svg { width: 18px; height: 18px; fill: #F59E0B; stroke: #F59E0B; }
.depoimento-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.depoimento-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depoimento-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.depoimento-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.depoimento-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(91,184,232,0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(45,106,184,0.12) 0%, transparent 60%);
}
.cta-final-content { position: relative; z-index: 2; }
.cta-final h2 {
  color: #fff;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer {
  background: var(--navy-deep);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img { height: 60px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.8; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--blue-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--blue-light); flex-shrink: 0; margin-top: 3px; }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* FADE IN ANIMATION */
/* Fade-in desativado — exibe direto sem animação */
.fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
.fade-in.visible { opacity: 1; transform: none; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; display: flex; flex-direction: column; background: linear-gradient(180deg, #0d2f4e 0%, #1b5a8e 100%); overflow: hidden; }
  .hero-content { width: 100%; max-width: none; min-height: auto; padding: 110px 24px 40px; text-align: center; align-items: center; position: relative; z-index: 4; }
  .hero h1, .hero-desc { max-width: 100%; }
  .hero-cta { align-self: center; }
  .hero-scroll { display: none; }
  .hero-logo { height: 72px; margin-bottom: 26px; }
  .hero-image { position: relative; inset: auto; width: 100%; height: auto; z-index: 2; display: flex; justify-content: center; }
  .hero-image img { position: relative; bottom: auto; right: auto; left: auto; top: auto; transform: none; width: 100%; height: auto; max-height: 520px; object-fit: contain; object-position: top center; opacity: 1; filter: drop-shadow(0 -12px 40px rgba(0,0,0,0.4)); }
  .servicos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre { padding: 64px 0; }
  .sobre-inner-v2 { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .sobre-logo-side { padding: 40px; min-height: 280px; }
  .sobre-logo-img { max-height: 300px; }
  .sobre-foto-side { padding: 0; min-height: 0; max-width: 380px; margin: 0 auto; }
  .sobre-credenciais-v2 { grid-template-columns: 1fr; }
  .sobre-image { height: 360px; }
  .sobre-image-overlay { background: linear-gradient(to top, var(--navy) 0%, transparent 50%); }
  .sobre-content { padding: 60px 32px; }
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta.desktop { display: none; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-logo { height: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-final-actions { flex-direction: column; align-items: center; }
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(49,134,199,0.35) 0%, transparent 60%),
    linear-gradient(180deg, #0d2f4e 0%, #06192a 100%);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 92px 0 40px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity .25s ease;
}
.mobile-nav.open { display: flex; opacity: 1; animation: mobileNavSlide .35s ease; }
@keyframes mobileNavSlide { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
body:has(.mobile-nav.open) { overflow: hidden; }
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .2s, color .2s, padding-left .2s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: rgba(255,255,255,0.06);
  color: #8AD0F0;
}

/* Grupo Serviços (toggle + submenu) */
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-toggle {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: none;
  border-left: none; border-right: none; border-top: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  transition: background .2s, color .2s;
}
.mobile-nav-toggle:hover { background: rgba(255,255,255,0.06); color: #8AD0F0; }
.mobile-nav-toggle .caret {
  width: 18px; height: 18px;
  transition: transform .3s ease;
  color: #8AD0F0;
}
.mobile-nav-group.open .mobile-nav-toggle .caret { transform: rotate(180deg); }
.mobile-nav-submenu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.20);
}
.mobile-nav-group.open .mobile-nav-submenu { display: flex; }
.mobile-nav-submenu a {
  padding: 14px 32px 14px 52px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.mobile-nav-submenu a::before {
  content: '';
  width: 6px; height: 6px;
  background: #8AD0F0;
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}
.mobile-nav .btn {
  margin: 24px 24px 0;
  padding: 16px 28px;
  border-bottom: none;
  justify-content: center;
  border-radius: 99px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mobile-nav .btn::after { display: none; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }
.mobile-nav-close svg { width: 22px; height: 22px; stroke: #fff; }

/* ========================
   NEW COMPONENTS — DENTAL BY DESIGN INSPIRED
   ======================== */

/* TRUST BAR */
.trust-bar {
  background: linear-gradient(180deg, #EAF5FB 0%, #D8EEF9 50%, #EAF5FB 100%);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 44px 0;
}
.trust-bar .container {
  max-width: none;
  padding: 0 96px;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 16px;
  border-right: 1px solid var(--gray-100);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--navy); fill: none; stroke: currentColor; }
.trust-text { font-size: 14px; line-height: 1.4; color: var(--text); }
.trust-text strong { display: block; color: var(--navy); font-weight: 700; font-size: 15px; }

/* COMPARISON TABLE */
.compare-section { background: linear-gradient(180deg, #EAF5FB 0%, #D8EEF9 50%, #EAF5FB 100%); }
.compare-table {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 56px;
}
.compare-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--navy);
  color: #fff;
}
.compare-head > div {
  padding: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 700;
  text-align: center;
}
.compare-head > div:first-child { text-align: left; }
.compare-head .compare-highlight {
  background: var(--blue);
  position: relative;
}
.compare-head .compare-highlight::after {
  content: 'Recomendado';
  position: absolute;
  top: 6px; right: 12px;
  background: var(--blue-light);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-top: 1px solid var(--gray-100);
}
.compare-row > div {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.compare-row > div:first-child {
  justify-content: flex-start;
  font-weight: 600; color: var(--text);
  font-size: 15px;
}
.compare-row > div:nth-child(3) {
  background: var(--blue-pale);
}
.compare-icon-yes {
  color: #16A34A;
  width: 26px; height: 26px;
}
.compare-icon-no {
  color: #DC2626;
  width: 26px; height: 26px;
}

/* COMO FUNCIONA — STEPS */
.etapas-section {
  background: linear-gradient(180deg, #EAF5FB 0%, #D8EEF9 50%, #EAF5FB 100%);
}
.etapas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.etapas-grid .etapa-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -38px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B5A8E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>") center/contain no-repeat;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 900px) {
  .etapas-grid { grid-template-columns: 1fr; gap: 28px; }
  .etapas-grid .etapa-card:not(:last-child)::after { display: none; }
}
.etapa-card {
  position: relative;
  padding: 36px 24px 28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(160deg, #1B5A8E 0%, #287CC0 45%, #3BA4DD 85%, #8AD0F0 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.18);
  transition: var(--transition);
  box-shadow: 0 14px 36px rgba(27,90,142,0.18);
  margin-top: 22px;
}
.etapa-card { text-align: center; padding: 44px 24px 32px; }
.etapa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(27,90,142,0.32);
}
.etapa-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #1B5A8E;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.etapa-card h3 {
  color: #fff;
  margin: 8px 0 12px;
  font-size: 22px;
  text-align: center;
}
.etapa-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  text-align: center;
}

/* BIG STAT — 5 STARS GOOGLE */
.big-stat {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.big-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(91,184,232,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.big-stat-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.big-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.big-stat-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 16px 0 24px;
}
.big-stat-stars svg {
  width: 32px; height: 32px;
  fill: #FBBF24;
}
.big-stat h2 {
  color: #fff;
  margin-bottom: 16px;
}
.big-stat p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 32px;
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 1024px) {
  .trust-bar .container { padding: 0 48px; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-item:nth-child(2) { border-right: none; }
  .etapas-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 640px) {
  .trust-bar .container { padding: 0 24px; }
  .trust-bar-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-item { border-right: none; padding: 0; }
  .compare-head, .compare-row { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .compare-head > div, .compare-row > div { padding: 14px 10px; font-size: 12px; }
  .compare-head > div { font-size: 16px; }
  .compare-head .compare-highlight::after { display: none; }
  .etapas-grid { grid-template-columns: 1fr; }
  .big-stat { padding: 72px 0; }
}

/* ========================
   NAV DROPDOWN — SERVIÇOS
   ======================== */
.nav-item-drop { position: relative; }
.nav-item-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-caret { transition: transform .25s ease; flex-shrink: 0; }
.nav-item-drop:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  transform: translateY(8px);
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(19,68,112,0.28);
  padding: 8px;
  min-width: 232px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 18px;
}
.nav-item-drop:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  white-space: nowrap;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover { background: var(--blue-pale); color: var(--blue); }

/* (regras de mobile-nav-sub legacy — substituídas por .mobile-nav-submenu) */

/* ========================
   PÁGINAS DE ESPECIALIDADE
   ======================== */
.esp-section { padding: 96px 0; }
.esp-section.alt { background: linear-gradient(180deg, #EAF5FB 0%, #D8EEF9 50%, #EAF5FB 100%); }
.esp-section.navy { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); }
.esp-narrow { max-width: 880px; margin: 0 auto; }
.esp-narrow-center .esp-lead { max-width: 720px; margin-left: auto; margin-right: auto; }
.esp-narrow-center .esp-actions { justify-content: center; }

/* O QUE É — 2 colunas: conteúdo + imagem (sticky) */
.esp-section.alt > .container:has(.oque-grid) {
  max-width: 1400px;
  padding: 0 24px;
}
.oque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.oque-content { justify-self: start; max-width: 620px; }
.oque-photo { justify-self: end; max-width: 620px; width: 100%; }
.oque-content h2 { color: var(--navy); margin-bottom: 18px; }
.oque-content .badge { margin-bottom: 14px; display: inline-block; }
.oque-content .esp-lead { margin-bottom: 16px; }
.oque-content .benef-grid { margin-top: 24px; }
.oque-photo {
  position: sticky;
  top: 110px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 28px 64px rgba(28,58,107,0.18);
  will-change: transform;
}
.oque-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .oque-grid { grid-template-columns: 1fr; gap: 40px; }
  .oque-photo { position: relative; top: auto; order: -1; aspect-ratio: 16/10; }
}
.esp-head { margin-bottom: 8px; }
.esp-head h2 { color: var(--navy); margin-bottom: 16px; }
.esp-section.navy .esp-head h2 { color: #fff; }
.esp-lead { font-size: 18px; color: var(--text); line-height: 1.8; margin-bottom: 8px; }
.esp-section.navy .esp-lead { color: rgba(255,255,255,0.78); }
.esp-section p { font-size: 16px; line-height: 1.8; }

/* hero highlights */
.esp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}
.esp-hero-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 99px;
}

/* Você se identifica — dores */
.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.dor-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(160deg, #1B5A8E 0%, #287CC0 45%, #3BA4DD 85%, #8AD0F0 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 4px solid #fff;
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: 0 14px 36px rgba(27,90,142,0.18);
  transition: var(--transition);
}
.dor-item:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(27,90,142,0.30); }
.dor-item svg { width: 22px; height: 22px; stroke: #fff; fill: none; flex-shrink: 0; margin-top: 1px; }
.dor-item p { font-size: 15px; color: #fff; margin: 0; line-height: 1.6; font-weight: 500; text-align: left; }
@media (max-width: 900px) {
  .dores-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .dores-grid { grid-template-columns: 1fr; }
}

/* benefícios — checklist */
.benef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.benef-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--blue-pale);
  border-radius: var(--radius);
}
.benef-item svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; flex-shrink: 0; margin-top: 2px; }
.benef-item span { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.5; }

/* razões — por que escolher nossa clínica */
.razoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  max-width: 1180px !important;
}
.razoes-grid.razoes-4col { grid-template-columns: repeat(4, 1fr); max-width: 1280px !important; }
@media (max-width: 1024px) { .razoes-grid.razoes-4col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .razoes-grid, .razoes-grid.razoes-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .razoes-grid, .razoes-grid.razoes-4col { grid-template-columns: 1fr; }
}
.razao-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
}
.razao-item:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.razao-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(160deg, #1B5A8E 0%, #287CC0 45%, #3BA4DD 85%, #8AD0F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(27,90,142,0.28);
}
.razao-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
.razao-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.razao-item p { font-size: 14px; margin: 0; }

/* passo a passo vertical */
.passos {
  max-width: 1180px; margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.passos.passos-4col { grid-template-columns: repeat(12, 1fr); max-width: 1280px; }
.passos.passos-4col .passo-item { grid-column: span 3; }
.passos.passos-4col .passo-item:nth-child(n+5) { grid-column: span 4; }
@media (max-width: 1024px) {
  .passos.passos-4col { grid-template-columns: repeat(6, 1fr); }
  .passos.passos-4col .passo-item, .passos.passos-4col .passo-item:nth-child(n+5) { grid-column: span 3; }
}
@media (max-width: 900px) {
  .passos, .passos.passos-4col { grid-template-columns: 1fr 1fr; }
  .passos.passos-4col .passo-item, .passos.passos-4col .passo-item:nth-child(n+5) { grid-column: span 1; }
}
@media (max-width: 580px) {
  .passos, .passos.passos-4col { grid-template-columns: 1fr; }
  .passos.passos-4col .passo-item, .passos.passos-4col .passo-item:nth-child(n+5) { grid-column: span 1; }
}
.passo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13,47,78,0.06);
  box-shadow: 0 12px 32px rgba(13,47,78,0.06);
  transition: transform .3s, box-shadow .3s;
}
.passo-item:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(13,47,78,0.12); }
.passo-num {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(160deg, #1B5A8E 0%, #287CC0 45%, #3BA4DD 85%, #8AD0F0 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(27,90,142,0.32);
}
.passo-body { padding-top: 6px; }
.passo-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.passo-body p { font-size: 14px; margin: 0; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 44px auto 0; }
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-item.open { border-color: var(--blue-light); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q svg {
  width: 22px; height: 22px;
  stroke: var(--blue);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 24px 22px; font-size: 15px; margin: 0; line-height: 1.8; }

/* depoimentos de especialidade */
.esp-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.esp-quote {
  position: relative;
  background: linear-gradient(180deg, #F4FAFD 0%, #EAF5FB 100%);
  border: 1px solid rgba(49,134,199,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27,90,142,0.08);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.esp-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1B5A8E 0%, #3186C7 45%, #3BA4DD 85%, #8AD0F0 100%);
}
.esp-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(49,134,199,0.35);
  box-shadow: 0 18px 40px rgba(27,90,142,0.18);
}
.esp-quote .q-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.esp-quote .q-stars svg { width: 16px; height: 16px; fill: #F59E0B; stroke: #F59E0B; }
.esp-quote p { font-size: 14px; font-style: italic; color: var(--text); line-height: 1.8; margin: 0; }

.esp-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.esp-section.center { text-align: center; }
.esp-section.center .esp-actions { justify-content: center; }
.esp-section.center .esp-head p { max-width: 600px; margin-left: auto; margin-right: auto; }

@media (max-width: 780px) {
  .dores-grid, .benef-grid, .razoes-grid { grid-template-columns: 1fr; }
  .esp-quotes { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .esp-section { padding: 64px 0; }
  .passo-item { gap: 18px; }
  .esp-actions { flex-direction: column; }
  .esp-actions .btn { width: 100%; justify-content: center; }
}

/* ========================
   FOOTER V2 — modelo template, paleta Wiler
   ======================== */
.footer-v2 {
  background: #fff;
  padding: 84px 0 36px;
  color: #5A6470;
  border-top: 1px solid var(--gray-100);
}
.footer-v2 .container { max-width: 1360px; }
.ft-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.25fr;
  gap: 72px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 26px;
  align-items: start;
}
.ft-top > div:not(:first-child) { position: relative; }
.ft-top > div:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 4px; bottom: 4px; left: -36px;
  width: 1px;
  background: rgba(13,47,78,0.14);
}
.ft-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ft-brand img {
  width: 280px;
  max-width: 100%;
  height: auto;
}
@media(min-width:901px) { .ft-brand img { transform: translateY(-40px); margin-bottom: -40px; } }
.ft-divider {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  margin: 20px auto 18px;
}
.ft-socials { display: flex; gap: 12px; justify-content: center; }
.ft-follow { margin-top: 28px; }
.ft-follow-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0d0d0d;
  margin-bottom: 14px;
}
.ft-follow .ft-socials { justify-content: flex-start; }
.ft-socials-contact { margin-top: 0; }
.ft-divider-contact { margin: 6px 0 18px; }
.ft-social {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ft-social:hover { background: var(--blue-light); transform: translateY(-2px); }
.ft-social svg { width: 19px; height: 19px; fill: #fff; }
.ft-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0d0d0d;
  margin-bottom: 18px;
}
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ft-links a {
  font-size: 16px;
  color: #5A6470;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.ft-links a svg { width: 11px; height: 11px; fill: var(--blue); flex-shrink: 0; }
.ft-links a:hover { color: var(--blue); }
.ft-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 16px;
  color: #5A6470;
  margin-bottom: 16px;
  line-height: 1.55;
}
.ft-contact-head { display: flex; align-items: center; gap: 10px; }
.ft-contact svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; flex-shrink: 0; }
.ft-contact a, .ft-contact > span { padding-left: 26px; }
.ft-contact a { color: inherit; transition: color .2s; }
.ft-contact a:hover { color: var(--blue); }
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #8A94A0;
}
.ft-bottom a { color: var(--blue); }
.ft-bottom a:hover { color: var(--navy); }
@media (max-width: 900px) {
  .ft-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ft-top > div:not(:first-child)::before { display: none; }
}
@media (max-width: 560px) {
  .footer-v2 { padding: 60px 0 32px; }
  .footer-v2 .container { padding-left: 32px; }
  .ft-top { grid-template-columns: 1fr; gap: 32px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .ft-follow { margin-bottom: 12px; }
}

/* ============================================
   ESP-LP HERO — Páginas de Serviço (LP style)
   ============================================ */
.esp-lp-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1a30 0%, #122850 45%, #1B5A8E 100%);
  padding: 140px 24px 80px;
  overflow: hidden;
  color: #fff;
}
.esp-lp-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,184,0.45) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.esp-lp-hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,90,142,0.35) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.esp-lp-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.esp-lp-left .esp-credencial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 8px 16px;
  border-radius: 99px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.esp-credencial svg { width: 14px; height: 14px; stroke: #7fb8e8; fill: none; stroke-width: 2; }
.esp-lp-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.28;
  letter-spacing: -1.2px;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 800;
  overflow: visible;
}
.esp-lp-left h1 em {
  background: linear-gradient(135deg, #8AD0F0, #3BA4DD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 900;
  padding: 0.06em 12px 0.06em 0;
  display: inline-block;
}
.esp-lp-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 0 40px;
}
.esp-lp-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 12px;
}
.esp-lp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}
.esp-lp-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: #25D366 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px no-repeat;
}
.esp-lp-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.esp-lp-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: #fff;
  color: #0d2f4e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(255,255,255,0.15);
  transition: all .25s;
}
.esp-lp-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(255,255,255,0.25); }
.esp-lp-btn-wa svg { width: 18px; height: 18px; }
.esp-lp-btn-wa svg path { fill: #0d2f4e; }
.esp-lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 99px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.esp-lp-btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.45); }
.esp-lp-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.esp-lp-trust .stars { color: #ffc857; letter-spacing: 2px; font-size: 16px; }
.esp-lp-trust strong { color: #fff; font-weight: 700; }
.esp-lp-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.25); }
.esp-lp-right {
  position: relative;
}
.esp-lp-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  aspect-ratio: 3 / 4;
  background: rgba(255,255,255,0.05);
}
.esp-lp-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Fotos antes/depois empilhadas — versão hero (página de especialidade) */
.ba-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.ba-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  background: #0a1a30;
}
.ba-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.ba-photo-label {
  position: absolute;
  top: 14px; left: 14px;
  padding: 7px 16px;
  border-radius: 99px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.ba-photo-label.antes { background: rgba(0,0,0,0.75); color: #fff; }
.ba-photo-label.depois { background: #fff; color: #1B5A8E; }
.ba-depois { z-index: 1; }
.ba-antes-wrap {
  position: absolute; top: 0; left: 0;
  width: 50%; height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.ba-antes-wrap img { width: 200%; }
.ba-label {
  position: absolute; top: 16px;
  padding: 7px 16px; border-radius: 99px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  z-index: 4;
  backdrop-filter: blur(8px);
}
.ba-label-antes { left: 16px; background: rgba(0,0,0,0.75); color: #fff; }
.ba-label-depois { right: 16px; background: #fff; color: #1B5A8E; }
.ba-handle {
  position: absolute; top: 0; left: 50%;
  height: 100%; width: 3px;
  background: #fff; z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(0,0,0,0.6);
  pointer-events: none;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  color: #1B5A8E;
  pointer-events: none;
}
.ba-knob svg { width: 22px; height: 22px; }
.ba-caption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  z-index: 4;
  font-family: 'Montserrat', sans-serif;
}
.ba-caption-icon {
  width: 30px; height: 30px;
  background: #1B5A8E;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ba-caption-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 3; }
.ba-caption-text strong {
  display: block;
  color: #1B5A8E;
  font-size: 14px; font-weight: 700;
  margin-bottom: 2px;
}
.ba-caption-text span {
  color: #5A6470;
  font-size: 12px;
}
.esp-lp-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,26,48,0.55) 100%);
  pointer-events: none;
}
.esp-lp-image-tag {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.esp-lp-image-tag-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #1B5A8E;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.esp-lp-image-tag-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.2; }
.esp-lp-image-tag-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #0a1a30;
  font-weight: 700;
}
.esp-lp-image-tag-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  color: #555;
}
.esp-lp-floating-card {
  position: absolute;
  top: 24px; left: -28px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.esp-lp-floating-card svg { width: 28px; height: 28px; fill: #ffc857; }
.esp-lp-floating-card-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #0a1a30;
  font-weight: 700;
}
.esp-lp-floating-card-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  color: #666;
}

@media (max-width: 980px) {
  .esp-lp-hero { padding: 100px 16px 40px; }
  .esp-lp-inner { grid-template-columns: 1fr; gap: 24px; }
  .esp-lp-left { order: 1; text-align: center; padding-top: 0; }
  .esp-lp-right { order: 2; max-width: 460px; margin: 0 auto; width: 100%; }
  .esp-credencial { margin-bottom: 12px; }
  .esp-lp-left h1 { margin: 0 0 12px; }
  .esp-lp-sub { margin: 0 0 20px; }
  .esp-lp-ctas { margin-bottom: 16px; }
  .esp-lp-trust { font-size: 12px; gap: 10px; }
  .esp-lp-left h1, .esp-lp-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .esp-lp-ctas { justify-content: center; }
  .esp-lp-trust { justify-content: center; }
  .esp-credencial { align-self: center; }
  .esp-lp-image-wrap { aspect-ratio: 4 / 3; }
  .esp-lp-floating-card { left: -12px; top: 14px; padding: 10px 14px; }
}
@media (max-width: 580px) {
  .esp-lp-hero { padding: 110px 18px 56px; }
  .esp-lp-left h1 { font-size: 30px; letter-spacing: -0.6px; }
  .esp-lp-sub { font-size: 15px; }
  .esp-lp-bullets li { font-size: 14px; }
  .esp-lp-btn-wa, .esp-lp-btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }
  .esp-lp-floating-card { display: none; }
  .esp-lp-trust { font-size: 12px; gap: 12px; }
  .esp-lp-divider { display: none; }
}

/* ============================================================
   RESPONSIVIDADE FINAL — 100% mobile-ready
   ============================================================ */
html, body { overflow-x: clip; max-width: 100vw; }
img, video, iframe { max-width: 100%; height: auto; }

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .esp-section.alt > .container:has(.oque-grid) { padding: 0 24px; }
  .diferenciais-layout { grid-template-columns: 1fr; gap: 32px; }
  .diferenciais-header { text-align: center; max-width: 600px; margin: 0 auto; }
  .diferenciais-header p { margin-left: auto; margin-right: auto; }
  .sobre-inner-v2 { grid-template-columns: 1fr; gap: 32px; }
  .sobre-logo-side { max-width: 280px; margin: 0 auto; }
}

/* Mobile largo (≤768px) */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .esp-section.alt > .container:has(.oque-grid) { padding: 0 20px; }
  .esp-section { padding: 64px 0; }
  .section { padding: 60px 0; }
  .page-hero { padding: 130px 0 70px !important; }
  .page-hero h1 { font-size: clamp(28px, 6vw, 38px); }
  .nav-cta.desktop { display: none; }
  .servicos-grid, .servico-card { width: 100%; }
  .servicos-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .etapas-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .depoimentos-grid { grid-template-columns: 1fr !important; }
  .diferenciais-grid { grid-template-columns: 1fr !important; }
  .oque-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .oque-photo { position: relative !important; top: auto !important; max-width: 100% !important; order: -1; aspect-ratio: 16/10; }
  .oque-content { max-width: 100% !important; }
  .esp-lp-inner { grid-template-columns: 1fr !important; gap: 36px; padding: 100px 20px 60px; }
  .esp-lp-right .ba-stack { max-width: 100%; }
  .ba-stack { max-width: 100% !important; }
  .razoes-grid, .razoes-grid.razoes-4col { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .passos, .passos.passos-4col { grid-template-columns: 1fr !important; gap: 22px; }
  .dores-grid { grid-template-columns: 1fr !important; }
  .benef-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ft-top { grid-template-columns: 1fr !important; gap: 28px; }
  .contato-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .cta-final h2 { font-size: clamp(28px, 6vw, 36px); }
  .hero-cinema .hc-title { font-size: clamp(28px, 7vw, 40px) !important; }
  .hero-cinema .hc-desc { font-size: 15px; }
  .hero-cinema .hc-btn-white { width: 100%; justify-content: center; }
  .esp-lp-left h1 { font-size: clamp(24px, 6vw, 34px); }
  .esp-lp-sub { font-size: 15px; }
  .esp-lp-btn-wa { width: 100%; justify-content: center; }
  h2 { font-size: clamp(24px, 5.5vw, 34px); }
  h3 { font-size: 18px; }
  /* Etapas — setas somem em mobile */
  .etapas-grid .etapa-card:not(:last-child)::after { display: none !important; }
  /* MVV cards */
  .mvv-grid { grid-template-columns: 1fr !important; }
  /* Diferenciais — botão CTA full width */
  .diferenciais-header .btn-whatsapp { width: 100%; justify-content: center; }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-logo img { height: 36px; }
  .nav-logo img.nav-logo-icon { height: 40px; }
  .nav-logo img.nav-logo-wordmark { height: 34px; }
  .nav-logo-text .nl-name { font-size: 13px; }
  .nav-logo-text .nl-sub { font-size: 10px; }
  .page-hero { padding: 120px 0 60px !important; }
  .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .ft-bottom span, .ft-bottom a { font-size: 11px; }
  .ft-bottom .ft-cnpj { display: block; }
  .razoes-grid, .razoes-grid.razoes-4col { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .esp-lp-inner { padding: 90px 16px 40px; }
  .hero-cinema .hc-grid { padding: 100px 16px 0 !important; }
  .servico-link { font-size: 12px; padding: 10px 18px; }
  .btn { padding: 12px 24px; font-size: 14px; }
  /* Marquee patients */
  .patient-card { width: 260px !important; }
  /* Cards padding mais apertado */
  .servico-body, .depoimento-card, .depo-card, .etapa-card, .diferencial-card, .razao-item, .passo-item, .oque-photo { padding-inline: 18px; }
}

/* Anti-overflow universal */
*, *::before, *::after { box-sizing: border-box; }
.hero-cinema, .esp-lp-hero, section { overflow-x: clip; }
