/* =========================================================
   DUMONT MECÂNICA — design system

   Paleta oficial Dumont Mecânica:
   azul #2a2c68 e dourado #9d8147.

   Tipografia: Racing Sans One (display, herança automotiva da marca)
   + Poppins (texto, geométrica e bem legível em telas pequenas —
   pensada pro público acessar majoritariamente pelo celular).
   ========================================================= */

@font-face {
  font-family: "Racing Sans One";
  src: url("../assets/fonts/Racing_Sans_One/RacingSansOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-900: #1c1e44;
  --blue-800: #232563;
  --blue-700: #2a2c68;
  --blue-600: #2a2c68;
  --blue-500: #2a2c68;
  --gold-600: #7e6739;
  --gold-500: #9d8147;
  --gold-400: #c4a159;
  --white: #ffffff;
  --gray-100: #f5f7fa;
  --gray-300: #dfe3e8;
  --text-dark: #16213a;
  --text-muted: #5a6472;

  --font-display: "Racing Sans One", "Poppins", Arial, sans-serif;
  --font-body: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 10px;
  --container: 1140px;
  --shadow: 0 10px 30px rgba(42, 44, 104, 0.16);

  /* override das cores do componente btnwpp (padrão era dourado/Casulo) —
     aqui vira azul pra bater com a identidade da Dumont */
  --cw-gold: var(--blue-700);
  --cw-gold-dark: var(--blue-900);
  --cw-gold-light: var(--blue-600);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.5;
  background: var(--white);
  -webkit-tap-highlight-color: transparent;
}

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

a, button { touch-action: manipulation; }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--blue-900);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus-visible { top: 12px; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.2;
  margin: 0 0 16px;
  text-wrap: balance;
}

.secao { padding: 72px 0; }

/* ---------- botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size: 16px;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

.icon-svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }

.btn--gold { background: var(--gold-400); color: var(--blue-900); }
.btn--gold:hover { background: var(--gold-500); }

.btn--blue { background: var(--blue-700); color: var(--white); }
.btn--blue:hover { filter: brightness(1.15); }

.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,.15); }

.btn--outline-blue { background: transparent; color: var(--blue-700); border-color: var(--blue-700); }
.btn--outline-blue:hover { background: var(--blue-700); color: var(--white); }

.btn--sm { padding: 10px 18px; font-size: 14px; min-height: 44px; }
.btn--lg { padding: 18px 34px; font-size: 18px; }
.btn--block { display: block; width: 100%; }

/* ---------- header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 24px;
}

.header__logo {
  display: inline-flex;
  text-decoration: none;
}
.header__logo img {
  height: 46px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.header__nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.header__nav a:hover { color: var(--blue-700); }

.header__nav-phone { display: none; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  text-decoration: none;
  text-align: right;
}
.header__phone-cta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}
.header__phone-cta strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-700);
}
.header__phone-cta:hover strong { color: var(--blue-900); }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  width: 26px;
  height: 3px;
  background: var(--blue-900);
  border-radius: 2px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(42,44,104,.72) 35%, rgba(42,44,104,.32) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 64px 20px;
}

.hero__text { max-width: 640px; }

.badge {
  display: block;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  opacity: .85;
  margin-top: -8px;
  margin-bottom: 18px;
}

.hero__text h1 {
  font-size: clamp(28px, 5.5vw + .5rem, 46px);
  font-weight: 800;
  margin-bottom: 28px;
}

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

/* ---------- faixa de confiança ---------- */

.trust-bar { background: var(--blue-900); padding: 14px 0 22px; }

.trust-bar__grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-bar__icone {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--gold-400);
}
.trust-bar__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.trust-bar__item span {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.3;
}


/* ---------- títulos / eyebrow reutilizáveis ---------- */

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 8px;
}
.eyebrow--gold { color: var(--gold-500); }
.eyebrow--center { display: block; text-align: center; }

.titulo-centro { text-align: center; max-width: 640px; margin: 0 auto 40px; font-size: clamp(24px, 4vw + .5rem, 30px); }
.titulo-centro--branco { color: var(--white); }

/* ---------- o que fazem ---------- */

.o-que-fazem { padding: 56px 0; }

.o-que-fazem__intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.o-que-fazem__foto img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.o-que-fazem__conteudo h2 { font-size: 26px; max-width: 460px; margin-bottom: 12px; }
.o-que-fazem__conteudo p { color: var(--text-muted); max-width: 460px; margin-bottom: 20px; }

.o-que-fazem__proxima {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-700);
  text-decoration: none;
}
.o-que-fazem__proxima svg {
  width: 18px;
  height: 18px;
  animation: dumont-bounce 1.6s ease-in-out infinite;
}
.o-que-fazem__proxima:hover { opacity: .7; }

@keyframes dumont-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ---------- serviços ---------- */

.secao-servicos { padding: 56px 0; background: var(--gray-100); }

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.servicos__card {
  position: relative;
  overflow: hidden;
  background-color: var(--blue-700);
  background-size: cover;
  background-position: center;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 18px;
  min-height: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font: inherit;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.servicos__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,22,60,.45) 0%, rgba(20,22,60,.78) 100%);
  z-index: 0;
}
.servicos__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.servicos__card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}
.servicos__card .servicos__icone { display: none; }

.servicos__card__tag { display: none; }

.servicos__card--mais {
  background-image: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.servicos__card--mais::before { content: none; }
.servicos__card--mais .servicos__icone { display: block; width: 40px; height: 40px; flex-shrink: 0; }
.servicos__card--mais p { text-transform: none; }

.servicos__card--cta {
  background-image: url('../assets/img/foto2.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  cursor: pointer;
  justify-content: space-between;
}
.servicos__card--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(157,129,71,.65) 0%, rgba(20,22,60,.88) 100%);
  z-index: 0;
}
.servicos__card--cta span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 150px;
}
.servicos__card--cta .servicos__icone {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--blue-900);
  transition: transform .2s ease, background .2s ease;
}
.servicos__card--cta:hover .servicos__icone {
  background: var(--white);
  transform: translateX(3px);
}

.servicos__card--mais { display: none; }

/* ---------- depoimentos (widget Elfsight) ---------- */

.depoimentos { background: var(--gray-100); }

/* ---------- quem somos ---------- */

.quem-somos { background: var(--blue-700); color: var(--white); }

.quem-somos__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.quem-somos__foto img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}
.quem-somos .eyebrow { color: var(--gold-400); }
.quem-somos__conteudo h2 { color: var(--white); }
.quem-somos__conteudo p { color: rgba(255, 255, 255, .78); }

/* ---------- galeria (carrossel) ---------- */

.galeria__carrossel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.galeria__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
}
.galeria__track::-webkit-scrollbar { height: 8px; }
.galeria__track::-webkit-scrollbar-thumb { background: var(--blue-700); border-radius: 999px; }

.galeria__slide {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.galeria__seta {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: var(--blue-700);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeria__seta:hover { filter: brightness(1.15); }

/* ---------- diferenciais ---------- */

.diferenciais {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.diferenciais__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  filter: blur(6px);
  transform: scale(1.05);
  z-index: 0;
}
.diferenciais__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 44, 104, .88);
  z-index: 1;
}
.diferenciais__conteudo { position: relative; z-index: 2; text-align: center; }

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto 40px;
  max-width: 1100px;
  text-align: left;
}
.diferencial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(22, 24, 58, .18);
}
.diferencial-card__icone {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.diferencial-card h3 {
  color: var(--blue-900);
  font-size: 19px;
  margin: 0 0 10px;
}
.diferencial-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* ---------- faq ---------- */

.faq__lista {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 4px 20px;
}

.faq__item summary {
  padding: 16px 0;
  font-weight: 700;
  color: var(--blue-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "−"; }

.faq__item p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq__cta {
  text-align: center;
  margin: 32px 0 0;
  font-weight: 600;
  color: var(--text-muted);
}
.faq__cta-link {
  background: none;
  border: none;
  padding: 0;
  margin-left: 6px;
  font: inherit;
  font-weight: 700;
  color: var(--blue-700);
  text-decoration: underline;
  cursor: pointer;
}
.faq__cta-link:hover { color: var(--gold-600); }

/* ---------- mapa ---------- */

.mapa { background: var(--blue-700); color: var(--white); }

.mapa__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: stretch;
}
.mapa__embed {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}
.mapa__info { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.mapa .eyebrow { color: var(--gold-400); }
.mapa__info h2 { color: var(--white); }
.mapa__endereco { font-weight: 600; color: rgba(255, 255, 255, .78); margin-bottom: 12px; }
.mapa__info .btn { margin-bottom: 4px; }

/* ---------- footer ---------- */

.footer {
  position: relative;
  background: var(--blue-900);
  color: var(--white);
  padding: 56px 0 0;
  border-top: 4px solid var(--gold-500);
  box-shadow: 0 -16px 32px rgba(0, 0, 0, .18);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__col p { color: rgba(255, 255, 255, .78); margin: 0 0 16px; }

.footer__logo-link {
  display: inline-flex;
  margin-bottom: 16px;
  cursor: pointer;
}
.footer__logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.cw-modal__logo-wrap {
  display: inline-flex;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.cw-modal__logo { height: 59px; width: auto; display: block; }

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}
.footer__social:hover { color: var(--gold-500); }

.footer__heading {
  display: block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer__links a,
.footer__links button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-weight: 600;
}
.footer__links a:hover,
.footer__links button:hover { color: var(--gold-500); }

.footer__links a.footer__phone-cta {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.footer__phone-cta span {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
}
.footer__phone-cta strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
}
.footer__phone-cta:hover strong { color: var(--gold-500); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
}
.footer__copy { font-size: 13px; color: rgba(255, 255, 255, .55); margin: 0; text-align: center; }

/* O botão flutuante de WhatsApp + modal vêm do componente btnwpp/ (.cw-fab / .cw-modal) */

/* ── Tela de agradecimento ── */
.cw-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 48px 32px;
  flex: 1;
}
.cw-thanks[hidden] { display: none; }
.cw-thanks h2 { font-size: 22px; font-weight: 700; color: var(--blue-900); margin: 0; }
.cw-thanks p  { font-size: 15px; color: var(--gray-600); margin: 0; max-width: 320px; }
.cw-thanks__fechar {
  margin-top: 8px;
  padding: 12px 32px;
  background: var(--blue-900);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font: 600 15px/1 var(--font);
  cursor: pointer;
  transition: opacity .15s;
}
.cw-thanks__fechar:hover { opacity: .85; }

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 980px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__actions { display: none; }

  .header__nav.is-aberto {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .header__nav.is-aberto a {
    padding: 12px 4px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gray-300);
  }
  .header__nav.is-aberto a:last-child { border-bottom: none; }

  /* CTA de telefone reaparece dentro do menu mobile — alcance fácil do polegar */
  .header__nav-phone {
    order: -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 8px;
    padding: 14px 16px !important;
    background: var(--blue-900);
    border-radius: var(--radius);
    border-bottom: none !important;
  }
  .header__nav.is-aberto .header__nav-phone { display: flex; }
  .header__nav-phone span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); }
  .header__nav-phone strong { font-size: 17px; font-weight: 800; color: var(--gold-400); }

  .hero__inner { padding: 48px 20px; }

  .trust-bar__grid { grid-template-columns: 1fr; gap: 14px; }

  .o-que-fazem__intro,
  .quem-somos__grid { grid-template-columns: 1fr; }
  .o-que-fazem__foto { order: 2; }

  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .servicos__card--extra { display: none; }
  .servicos__card--mais { display: flex; }

  .galeria__slide { width: 220px; height: 280px; }
  .galeria__seta { display: none; }

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

  .mapa__grid { grid-template-columns: 1fr; }
  .mapa__embed { min-height: 280px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__col { display: flex; flex-direction: column; align-items: center; }
  .footer__links { align-items: center; }
  .footer__links a { text-align: center; }
  .footer__links a.footer__phone-cta { align-items: center; }
}

/* ---------- telefones (foco: hero central e conversão) ---------- */

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .secao { padding: 48px 0; }

  .header__inner { padding: 12px 16px; }
  .header__logo img { height: 38px; }

  /* Hero vira o cartão de venda central: mais alto, texto centralizado,
     overlay mais forte para o texto ficar legível em qualquer foto de fundo */
  .hero { min-height: 78vh; min-height: 78svh; text-align: center; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(28,30,68,.55) 0%, rgba(28,30,68,.86) 62%, rgba(28,30,68,.94) 100%);
  }
  .hero__inner {
    padding: 32px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 78vh;
    min-height: 78svh;
  }
  .hero__text { max-width: none; margin: 0 auto; }
  .badge {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    padding: 6px 16px;
    margin: 0 0 16px;
    font-size: 13px;
  }
  .hero__text h1 { text-wrap: balance; margin-bottom: 24px; }
  .hero__ctas { justify-content: center; }
  .hero__ctas .btn { width: 100%; }

  .trust-bar { padding: 16px 0; }
  .trust-bar__item { justify-content: center; text-align: left; }

  .titulo-centro { margin-bottom: 28px; }

  .servicos__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .servicos__card { min-height: 148px; padding: 14px; }
  .servicos__card p { font-size: 12.5px; }
  .servicos__card--cta span { font-size: 12.5px; max-width: 130px; }

  .quem-somos__foto img { height: 260px; }
  .quem-somos__conteudo .btn { width: 100%; }

  .galeria__slide { width: 78vw; height: 240px; }

  .diferenciais__grid { gap: 16px; }
  .diferencial-card { padding: 24px 20px; }
  .diferenciais .btn { width: 100%; }

  .faq__item summary { font-size: 14.5px; padding: 14px 0; }

  .mapa__info .btn,
  .mapa__info .btn--outline-white { width: 100%; }

  .footer { padding-top: 40px; }
  .footer__logo { height: 40px; }
}

/* ---------- PÁGINA DE OBRIGADO ---------- */

.thanks {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 100%);
}

.thanks__inner {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  text-align: center;
}

.thanks__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.thanks__logo img { height: 52px; width: auto; margin: 0 auto; }

.thanks__icon {
  display: block;
  margin: 0 auto 16px;
}

.thanks__inner .eyebrow { display: block; }

.thanks__inner h1 {
  font-size: clamp(22px, 4vw + .5rem, 28px);
  color: var(--blue-900);
  margin-bottom: 12px;
}

.thanks__text {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.thanks__countdown {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 20px;
}

.thanks__inner .btn { width: 100%; margin-bottom: 16px; }

.thanks__voltar {
  display: inline-block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: underline;
}
.thanks__voltar:hover { color: var(--blue-700); }

@media (max-width: 600px) {
  .thanks__inner { padding: 32px 22px; }
}
