/* =============================================
   Healthcare Motors — Landing Page
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&family=Barlow:wght@400;500&family=Inter:wght@400;500&display=swap');

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

/* --- Tokens --- */
:root {
  --mg-black:      #0A0A0A;
  --mg-black-900:  #1E1E1E;
  --mg-black-700:  #3C3C3C;
  --mg-black-500:  #787878;
  --mg-black-300:  #B4B4B4;
  --mg-yellow:     #FF6A00;
  --mg-yellow-400: #FF8A33;
  --mg-white:      #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-ui:      'Inter', sans-serif;

  --radius:    4px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--mg-black);
  color: var(--mg-white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* --- Tipografia --- */
h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--mg-white);
}
h1 em { font-style: italic; color: var(--mg-yellow); }

/* Tamanho de fonte por seção (controlado pelo painel de gestão).
   Cada seção define --fs-title-d/-m e --fs-text-d/-m em si mesma (inline,
   via site-render.js) — os seletores abaixo só multiplicam o tamanho
   original por essa escala. Sem nada definido, a escala é 1 (100%, igual
   sempre foi). */
.hero h1 { font-size: calc(clamp(56px, 8vw, 96px) * var(--fs-title-d, 1)); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--mg-white);
}

h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--mg-white);
  margin-bottom: 8px;
}

p { font-family: var(--font-ui); color: var(--mg-black-300); line-height: 1.7; }

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mg-yellow);
  margin-bottom: 12px;
}

/* Tamanho da etiqueta do Hero (controlado pelo painel de gestão) */
.hero .label { font-size: calc(12px * var(--fs-label-d, 1)); }

.highlight { color: var(--mg-yellow); }

.metric {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  color: var(--mg-yellow);
  line-height: 1;
}

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--mg-yellow); color: var(--mg-black); border-color: var(--mg-yellow); }
.btn-primary:hover { background: var(--mg-yellow-400); border-color: var(--mg-yellow-400); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--mg-white); border-color: var(--mg-black-700); }
.btn-ghost:hover { border-color: var(--mg-white); }

.btn-lg { padding: 18px 44px; font-size: 20px; }

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mg-black-900);
  padding: 14px 0;
  transition: border-color 0.3s;
}

.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.header-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.header-nav { display: flex; gap: 36px; }
.header-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mg-black-300);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--mg-yellow); }

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--mg-yellow);
  color: var(--mg-black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.btn-header-cta:hover { background: var(--mg-yellow-400); transform: translateY(-1px); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10, var(--hero-overlay-opacity, 0.8));
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content { flex: 1; max-width: 680px; }

/* Alinhamento do texto do hero (controlado pelo painel de gestão) */
.hero-align-center { flex-direction: column; text-align: center; }
.hero-align-center .hero-content { max-width: 680px; }
.hero-align-center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-align-center .hero-ctas { justify-content: center; }
.hero-align-center .hero-badge-wrap { margin-top: 8px; }

.hero-align-right { flex-direction: row-reverse; text-align: right; }
.hero-align-right .hero-sub { margin-left: auto; }
.hero-align-right .hero-ctas { justify-content: flex-end; }

.hero-sub {
  font-size: calc(18px * var(--fs-text-d, 1));
  color: var(--mg-black-300);
  margin: 24px 0 40px;
  max-width: 460px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge-wrap { flex-shrink: 0; }

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 196px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  border: 2px solid var(--mg-yellow);
  border-radius: 50%;
  text-align: center;
  gap: 6px;
}

/* Badge metric: 15 centralizado, + absoluto à esquerda sem afetar o layout */
.badge-metric {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.badge-plus {
  position: absolute;
  left: calc(50% - 58px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--mg-yellow);
  line-height: 1;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 800;
  color: var(--mg-yellow);
  line-height: 1;
}

.badge-label {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--mg-black-300);
  line-height: 1.4;
  text-align: center;
}

/* --- STRIP --- */
.strip {
  background: var(--mg-yellow);
  overflow: hidden;
  padding: 14px 0;
}

.strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 25s linear infinite;
  animation-play-state: paused;
}

.strip-track.running {
  animation-play-state: running;
}

.strip-set {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}

.strip-set span {
  font-family: var(--font-display);
  font-size: calc(13px * var(--fs-text-d, 1));
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mg-black);
  white-space: nowrap;
}

.strip-set .dot { font-size: 7px; opacity: 0.4; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- SERVIÇOS --- */
.servicos { padding: 100px 0; background: var(--mg-black); }
.servicos h2 { font-size: calc(clamp(36px, 5vw, 64px) * var(--fs-title-d, 1)); }

.section-header { margin-bottom: 52px; }

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

.servico-card {
  background: var(--mg-black-900);
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--mg-yellow);
  transition: width 0.35s ease;
}

.servico-card:hover { background: var(--mg-black-700); }
.servico-card:hover::after { width: 100%; }

.servico-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.servico-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mg-yellow);
  flex-shrink: 0;
}

.servico-card h3 { font-size: calc(20px * var(--fs-text-d, 1)); margin-bottom: 0; }
.servico-card p { font-size: calc(14px * var(--fs-text-d, 1)); color: var(--mg-black-500); line-height: 1.6; }

/* --- NÚMEROS --- */
.numeros { background: var(--mg-yellow); padding: 48px 0; }

.numeros-grid { display: flex; align-items: center; justify-content: center; }

.numero-item { flex: 1; text-align: center; padding: 0 48px; }

.numeros .metric { color: var(--mg-black); font-size: calc(clamp(48px, 5vw, 80px) * var(--fs-title-d, 1)); }

.numero-item p {
  font-family: var(--font-display);
  font-size: calc(15px * var(--fs-text-d, 1));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(10, 10, 10, 0.65);
  margin-top: 6px;
  line-height: 1.4;
}

.numero-divisor { width: 1px; height: 72px; background: rgba(10,10,10,0.18); flex-shrink: 0; }

/* --- SOBRE / POR QUE MQ --- */
.sobre { padding: 100px 0; background: var(--mg-black-900); }
.sobre h2 { font-size: calc(clamp(36px, 5vw, 64px) * var(--fs-title-d, 1)); }

.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.sobre-texto h2 { margin: 8px 0 24px; }

.sobre-texto > p { margin-bottom: 36px; font-size: calc(16px * var(--fs-text-d, 1)); max-width: 440px; }

.sobre-diferenciais { display: flex; flex-direction: column; gap: 28px; }

.diferencial-item { display: flex; gap: 20px; align-items: flex-start; }

.diferencial-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--mg-yellow);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--mg-yellow);
  letter-spacing: 0.04em;
}

.diferencial-item h3 { font-size: calc(16px * var(--fs-text-d, 1)); margin-bottom: 6px; }
.diferencial-item p { font-size: calc(14px * var(--fs-text-d, 1)); color: var(--mg-black-500); line-height: 1.6; }

/* --- AVALIAÇÕES --- */
.reviews { padding: 100px 0; background: var(--mg-black); }
.reviews h2 { font-size: calc(clamp(36px, 5vw, 64px) * var(--fs-title-d, 1)); }

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.reviews-header h2 { margin-top: 4px; }

.reviews-score-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--mg-black-900);
  border: 1px solid var(--mg-black-700);
  border-radius: var(--radius);
  padding: 16px 24px;
  flex-shrink: 0;
}

.reviews-score-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--mg-yellow);
  line-height: 1;
}

.reviews-stars-big { font-size: 20px; color: var(--mg-yellow); letter-spacing: 2px; }

.reviews-score-wrap > div > p { font-size: 13px; color: var(--mg-black-500); margin-top: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--mg-black-900);
  border: 1px solid var(--mg-black-700);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.review-card:hover { border-color: var(--mg-yellow); }

.review-stars { font-size: 16px; color: var(--mg-yellow); letter-spacing: 2px; }

.review-text {
  font-size: calc(14px * var(--fs-text-d, 1));
  color: var(--mg-black-300);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.review-avatar {
  width: 40px; height: 40px;
  background: var(--mg-yellow);
  color: var(--mg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-info { display: flex; flex-direction: column; gap: 2px; }
.review-info strong { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--mg-white); text-transform: uppercase; letter-spacing: 0.03em; }
.review-info span { font-size: 12px; color: var(--mg-black-500); }

.reviews-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mg-yellow);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.reviews-all-link:hover { border-bottom-color: var(--mg-yellow); }

/* --- CTA FINAL --- */
.cta-final {
  padding: 56px 0;
  text-align: center;
  background: var(--mg-black-900);
  border-top: 1px solid var(--mg-black-700);
  border-bottom: 1px solid var(--mg-black-700);
}

.cta-final h2 { font-size: calc(clamp(36px, 5vw, 64px) * var(--fs-title-d, 1)); margin-bottom: 14px; }
.cta-final > .container > p { font-size: calc(16px * var(--fs-text-d, 1)); max-width: 460px; margin: 0 auto 28px; }

/* --- LOCALIZAÇÃO --- */
.localizacao { padding: 100px 0; background: var(--mg-black); }

.localizacao h2 { font-size: calc(clamp(36px, 5vw, 64px) * var(--fs-title-d, 1)); margin: 4px 0 40px; }

.mapa-embed-wrap {
  height: 380px;
  border: 1px solid var(--mg-black-700);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.mapa-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

.mapa-link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mg-yellow);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.mapa-link-text:hover { border-bottom-color: var(--mg-yellow); }

/* --- FOOTER --- */
.footer { background: var(--mg-black); padding: 56px 0 36px; border-top: 1px solid var(--mg-black-900); }

.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }

.footer-logo { height: 36px; width: auto; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--mg-black-700);
  border-radius: var(--radius);
  color: var(--mg-black-500);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--mg-yellow); color: var(--mg-yellow); background: rgba(255,106,0,0.07); }

.footer-divider { height: 1px; background: var(--mg-black-900); margin-bottom: 24px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.footer-copy { font-family: var(--font-ui); font-size: 13px; color: var(--mg-black-500); }

.footer-credit {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-credit a {
  color: var(--mg-yellow);
  transition: opacity 0.2s;
}
.footer-credit a:hover { opacity: 0.8; }

/* --- Instagram Section --- */
.instagram-section {
  padding: 100px 0;
  background: var(--mg-black-900);
  border-top: 1px solid var(--mg-black-700);
  border-bottom: 1px solid var(--mg-black-700);
}

.ig-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.ig-header h2 { font-size: calc(clamp(36px, 5vw, 64px) * var(--fs-title-d, 1)); margin: 4px 0 12px; }
.ig-header > div > p { font-size: calc(16px * var(--fs-text-d, 1)); max-width: 440px; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ig-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mg-black-700);
  cursor: pointer;
}

/* Corta o cabeçalho ("Ver perfil") e o rodapé (curtir/comentar) do embed,
   mostrando só a foto num recorte quadrado — garante tamanho idêntico
   entre posts com proporções diferentes. */
.ig-embed iframe {
  position: absolute !important;
  top: -62px !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100% + 62px) !important;
  min-width: 0 !important;
  max-width: none !important;
  pointer-events: none;
}

.ig-embed-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* --- Modal de Serviço (mobile only) --- */
.servico-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  align-items: flex-end;
  pointer-events: none;
}

.servico-modal.open {
  pointer-events: auto;
}

.servico-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: none;
}

.servico-modal.open .servico-modal-overlay {
  display: block;
}

.servico-modal-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--mg-black-900);
  border-top: 2px solid var(--mg-yellow);
  border-radius: 16px 16px 0 0;
  padding: 28px 24px 48px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.servico-modal.open .servico-modal-sheet { transform: translateY(0); }

.servico-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--mg-black-500);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}
.servico-modal-close:hover { color: var(--mg-white); }

.servico-modal-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mg-yellow);
  margin-bottom: 8px;
}

.servico-modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--mg-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.servico-modal-desc {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--mg-black-300);
  line-height: 1.7;
}

@media (max-width: 480px) {
  .servico-modal { display: flex; }
  .servico-modal[aria-hidden="true"] .servico-modal-sheet { transform: translateY(100%); }
  .servico-card { cursor: pointer; }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsivo: Tablet --- */
@media (max-width: 900px) {
  .header-nav { display: none; }

  .hero .container { flex-direction: column; align-items: flex-start; }
  .hero-badge-wrap { align-self: center; margin-top: 8px; }

  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .servico-card h3 { font-size: calc(16px * var(--fs-text-d, 1)); }

  .sobre-grid { grid-template-columns: 1fr; gap: 52px; }

  .numeros-grid { flex-direction: column; gap: 0; }
  .numero-item { padding: 20px 0; }
  .numero-divisor { width: 80px; height: 1px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .reviews-header { flex-direction: column; align-items: flex-start; }

  .ig-header { flex-direction: column; align-items: flex-start; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Responsivo: Mobile --- */
@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
    background-image:
      linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.85) 100%),
      url('assets/hero-mobile.png');
    background-position: center center;
  }
  /* Serviços: 2 colunas, todos os cards com altura idêntica */
  .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .servico-card { display: flex; align-items: center; padding: 0 38px 0 16px; height: 64px; overflow: hidden; box-sizing: border-box; position: relative; }
  .servico-card p { display: none; }
  .servico-card-head { display: block; }
  /* Número fixo no canto do card (mesma posição sempre, não depende do
     tamanho do título) — assim todos ficam alinhados uns com os outros. */
  .servico-num { position: absolute; top: 50%; right: 14px; transform: translateY(-50%); }
  .servico-card h3 { font-size: calc(13px * var(--fs-text-m, var(--fs-text-d, 1))); margin-bottom: 0; line-height: 1.2; }
  .hero-ctas { flex-direction: column; }
  .hero-badge-wrap { margin-top: 20px; }
  .hero-badge { width: 140px; height: 140px; }
  .badge-plus { font-size: 18px; left: calc(50% - 34px); }
  .badge-num { font-size: 56px; }
  .badge-label { font-size: 12px; }
  .btn, .cta-final .btn-lg { width: 100%; justify-content: center; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }

  /* Tamanho de fonte — versão mobile (cai pra --fs-*-m, senão usa o valor
     de desktop, senão 100%) */
  .hero .label { font-size: calc(12px * var(--fs-label-m, var(--fs-label-d, 1))); }
  .hero h1 { font-size: calc(clamp(56px, 8vw, 96px) * var(--fs-title-m, var(--fs-title-d, 1))); }
  .hero-sub { font-size: calc(18px * var(--fs-text-m, var(--fs-text-d, 1))); }
  .servicos h2, .sobre h2, .reviews h2, .ig-header h2, .localizacao h2, .cta-final h2 {
    font-size: calc(clamp(36px, 5vw, 64px) * var(--fs-title-m, var(--fs-title-d, 1)));
  }
  .sobre-texto > p, .diferencial-item p { font-size: calc(14px * var(--fs-text-m, var(--fs-text-d, 1))); }
  .diferencial-item h3 { font-size: calc(16px * var(--fs-text-m, var(--fs-text-d, 1))); }
  .review-text { font-size: calc(14px * var(--fs-text-m, var(--fs-text-d, 1))); }
  .ig-header > div > p { font-size: calc(16px * var(--fs-text-m, var(--fs-text-d, 1))); }
  .cta-final > .container > p { font-size: calc(16px * var(--fs-text-m, var(--fs-text-d, 1))); }
  .strip-set span { font-size: calc(13px * var(--fs-text-m, var(--fs-text-d, 1))); }
  .mapa-embed-wrap { height: 240px; }

  /* Números: volta pra linha horizontal no mobile */
  .numeros-grid { flex-direction: row; justify-content: center; }
  .numero-item { padding: 24px 0; flex: 1; }
  .numero-divisor { width: 1px; height: 52px; }
  .numeros .metric { font-size: calc(clamp(22px, 8vw, 48px) * var(--fs-title-m, var(--fs-title-d, 1))); }
  .numero-item p { font-size: calc(10px * var(--fs-text-m, var(--fs-text-d, 1))); letter-spacing: 0.04em; }

  .ig-grid { grid-template-columns: 1fr; }
}
