/* ===========================================================
   Super Lavadoras — Assistência Técnica
   Paleta: azul-marinho + vermelho (identidade da marca)
   =========================================================== */

:root {
  --navy:        #12305f;
  --navy-dark:   #0d2447;
  --navy-700:    #1a3b72;
  --red:         #e0362a;
  --red-dark:    #c02a20;
  --wa:          #25d366;
  --wa-dark:     #1ebe5a;

  --ink:         #1c2430;
  --body:        #4a5568;
  --muted:       #7a8699;
  --line:        #e5e8ee;
  --bg:          #ffffff;
  --bg-alt:      #f5f7fb;
  --bg-soft:     #eef2f8;

  --radius:      12px;
  --radius-lg:   18px;
  --shadow-sm:   0 1px 3px rgba(18,48,95,.06), 0 1px 2px rgba(18,48,95,.04);
  --shadow:      0 8px 24px rgba(18,48,95,.08);
  --shadow-lg:   0 18px 50px rgba(18,48,95,.14);

  --sans:        'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display:     'Barlow Condensed', 'Inter', sans-serif;

  --container:   1160px;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* contém transbordo horizontal sem quebrar o position: sticky */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 700; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 17px 34px; border-radius: 14px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(224,54,42,.28); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(224,54,42,.32); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--bg-alt); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------- header (2 linhas) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  transition:
    transform .42s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s ease,
    background-color .35s ease;
  will-change: transform;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(18, 48, 95, .10);
  background: #fff;
}
/* header dinâmico: recolhe ao rolar para baixo, reaparece ao subir */
.site-header.is-hidden { transform: translateY(-101%); }

/* estado compacto: ao rolar, encolhe a marca */
.site-header__main-inner,
.brand__icon,
.brand__text strong,
.brand__text small { transition: all .38s cubic-bezier(.4, 0, .2, 1); }

/* respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: box-shadow .2s ease, background-color .2s ease; }
  .site-header.is-hidden { transform: none; }
  .site-header__main-inner,
  .brand__icon,
  .brand__text strong,
  .brand__text small { transition: none; }
}

/* ---------- barra de progresso de leitura ---------- */
.site-header__progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: transparent; pointer-events: none;
}
.site-header__progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--red), #ff7a6e);
  transition: width .12s linear;
}

.site-header.is-scrolled .site-header__main-inner { min-height: 64px; }
.site-header.is-scrolled .brand__icon { width: 40px; height: 40px; }
.site-header.is-scrolled .brand__text strong { font-size: 22px; }
.site-header.is-scrolled .brand__text small { font-size: 10px; letter-spacing: 2.5px; }

/* ---------- navegação principal (linha única) ---------- */
.site-header__main { position: relative; }
.site-header__main-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand__icon { width: 50px; height: 50px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.08; }
.brand__text strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  letter-spacing: .3px;
}
.brand__text small {
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 1px; margin: 0 auto; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 9px;
  transition: color .16s ease, background .16s ease;
}
.nav__link:hover { color: var(--red); background: rgba(224,54,42,.06); }
.nav__link.is-active { color: var(--red); }
.nav__arrow { width: 12px; height: 12px; opacity: .45; transition: transform .16s ease, opacity .16s ease; }
.nav__link:hover .nav__arrow { opacity: 1; transform: translate(1px, -1px); }

/* item com dropdown */
.nav__item--dropdown { position: relative; display: inline-flex; align-items: center; }
.nav__chev { transition: transform .2s ease; opacity: .55; }
.nav__item--dropdown:hover .nav__chev,
.nav__item--dropdown:focus-within .nav__chev { transform: rotate(180deg); }
.nav__caret { display: none; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  min-width: 264px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 45;
}
.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
}
.dropdown li a:hover { background: var(--bg-alt); color: var(--navy); }
.dropdown__ico {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  color: var(--navy);
  border-radius: 8px;
}
.dropdown__ico svg { width: 19px; height: 19px; }
.dropdown__all { margin-top: 4px; padding-top: 4px; border-top: 1px solid var(--line); }
.dropdown__all a { color: var(--red); font-weight: 600; justify-content: center; }
.dropdown__all a:hover { background: rgba(224,54,42,.08); color: var(--red-dark); }

/* ações à direita: telefone + CTA */
.site-header__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: auto; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; }
.header-phone__ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--wa-dark);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.header-phone__ico svg { width: 20px; height: 20px; }
.header-phone:hover .header-phone__ico { background: var(--wa); color: #fff; border-color: var(--wa); }
.header-phone__txt { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone__txt small { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); font-weight: 600; }
.header-phone__txt strong { font-size: 15px; color: var(--ink); font-weight: 700; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  background: var(--wa);
  padding: 11px 20px;
  border-radius: 10px;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  animation: ctaPulse 3s ease-out infinite;
}
.header-cta:hover { background: var(--wa-dark); transform: translateY(-1px); animation: none; box-shadow: 0 8px 20px rgba(37,211,102,.4); }
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .header-cta { animation: none; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 84px);
  min-height: calc(100svh - 84px);
  isolation: isolate;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content { max-width: 640px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.hero__eyebrow svg { width: 20px; height: 20px; color: var(--red); }
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.5px;
  font-size: clamp(2.7rem, 5.6vw, 4.3rem);
  margin: 18px 0 20px;
  color: #fff;
}
.hero__title em { display: block; font-style: italic; color: #9ec3ff; }
.hero__title span { display: block; font-weight: 600; }
.hero__lead {
  font-size: 18px;
  max-width: 540px;
  color: rgba(255,255,255,.82);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 30px 0 28px;
  flex-wrap: wrap;
}
.btn__arrow { transition: transform .18s ease; }
.hero__actions .btn:hover .btn__arrow { transform: translate(2px, -2px); }
.hero__link {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255,255,255,.4);
  transition: color .16s ease, text-decoration-color .16s ease;
}
.hero__link:hover { color: var(--red); text-decoration-color: var(--red); }
.hero__points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero__points svg { width: 18px; height: 18px; flex-shrink: 0; color: #4ade80; }
.hero__lead strong { color: #fff; }

/* hero: mídia (bloco + imagem + card flutuante + bolinhas) */
.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero__shape {
  position: absolute;
  z-index: 0;
  top: 5%; right: 1%;
  width: 82%; height: 84%;
  background: linear-gradient(155deg, var(--navy-700) 0%, var(--navy-dark) 100%);
  border-radius: 28px;
  box-shadow: 0 30px 64px rgba(18,48,95,.24);
}
.hero__shape::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}
.hero__dots {
  position: absolute;
  z-index: 0;
  left: 0; bottom: 7%;
  width: 116px; height: 84px;
  background-image: radial-gradient(var(--red) 1.7px, transparent 1.8px);
  background-size: 15px 15px;
  opacity: .45;
}
.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(18,48,95,.30));
}
.hero__badge {
  position: absolute;
  z-index: 2;
  top: 11%; right: -6px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 15px;
  padding: 13px 17px;
  box-shadow: var(--shadow-lg);
}
.hero__badge-ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(224,54,42,.1);
  color: var(--red);
}
.hero__badge-ico svg { width: 23px; height: 23px; }
.hero__badge-txt strong {
  display: block;
  font-family: var(--display);
  font-size: 24px; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.hero__badge-txt small { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }

/* OS card */
.os-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.os-card__head {
  background: var(--navy);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.os-card__num { color: #ffd7d3; }
.os-card__body { padding: 24px 26px 28px; }
.os-card__body h3 { font-size: 22px; color: var(--navy); }
.os-card__sub { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.os-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.os-card__score { font-size: 30px; font-weight: 800; color: var(--navy); font-family: var(--display); }
.stars { color: #f5b301; letter-spacing: 2px; font-size: 17px; }
.os-card__reviews { font-size: 12.5px; color: var(--muted); width: 100%; }
.os-card__list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--line);
}
.os-card__list li:last-child { border-bottom: none; }
.os-card__list strong { color: var(--red); }

/* ---------- brands ---------- */
.brands {
  background: var(--bg-alt);
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}
.brands__title {
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 26px;
}
.brands__list {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-right: 18px;
  flex: 0 0 auto;
}
.brands__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 82px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brands__list li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brands__list img {
  max-height: 38px;
  max-width: 118px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .68;
  transition: filter .25s ease, opacity .25s ease;
}
.brands__list li:hover img { filter: none; opacity: 1; }

/* marquee infinito — todas as telas */
.brands__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brands__track {
  display: flex;
  width: max-content;
  animation: brandsScroll 34s linear infinite;
}
.brands__marquee:hover .brands__track { animation-play-state: paused; }
@keyframes brandsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 760px) {
  .brands__list li { width: 148px; height: 72px; padding: 14px 20px; }
  .brands__track { animation-duration: 22s; }
}
@media (prefers-reduced-motion: reduce) {
  .brands__track { animation: none; }
}

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section__head {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section__eyebrow--light { color: #ffd7d3; }
.section__head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -.5px;
}
.section__head p { margin-top: 14px; font-size: 17px; }
.section__note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* service cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all .2s ease;
}
.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--navy);
}
.card__icon svg { width: 27px; height: 27px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 15px; }
.card__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  background: rgba(224,54,42,.08);
  padding: 5px 11px;
  border-radius: 20px;
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step__num {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14px; }

/* ---------- features ---------- */
.feature { text-align: left; }
.feature__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 18px; margin-bottom: 7px; }
.feature p { font-size: 15px; }

/* ---------- reviews ---------- */
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c, var(--navy));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.review__author { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.review__author strong { font-size: 14.5px; color: var(--ink); font-weight: 700; }
.review__author small { font-size: 12.5px; color: var(--muted); }
.review__lg {
  display: inline-block;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--navy);
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.review__g { flex-shrink: 0; }
.review__stars { color: #f5b301; letter-spacing: 2px; font-size: 17px; }
.review blockquote {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.62;
  flex: 1;
}
.review__cta {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.review__badge {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.link-arrow {
  color: var(--red);
  font-weight: 600;
  font-size: 15px;
}
.link-arrow:hover { color: var(--red-dark); text-decoration: underline; }

/* ---------- coverage ---------- */
.coverage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.coverage__info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.coverage__info p { margin: 14px 0 26px; font-size: 17px; max-width: 480px; }
.cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.cities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
}
.cities li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.coverage__note { margin-top: 18px; font-size: 14px; color: var(--muted); }
.coverage__side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.coverage__side h3 { font-size: 1.15rem; margin-bottom: 20px; }
.coverage__how { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.coverage__how li { display: flex; gap: 13px; align-items: flex-start; }
.coverage__how-ico {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); color: var(--navy);
}
.coverage__how-ico svg { width: 21px; height: 21px; }
.coverage__how strong { display: block; color: var(--ink); font-size: 15px; }
.coverage__how small { display: block; color: var(--body); font-size: 13.5px; margin-top: 2px; line-height: 1.5; }

/* horário (usado na página de contato) */
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.hours strong { color: #fff; }
.hours .closed { color: #ff9c94; }

/* ---------- cta ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(224,54,42,.22), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 80px 0;
}
.cta__inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 60px;
}

/* mídia (foto do técnico + bloco + card) */
.cta__media { position: relative; align-self: stretch; min-height: 400px; }
.cta__shape {
  position: absolute; z-index: 0;
  left: 8%; top: 6%; right: -4%; bottom: 6%;
  background: linear-gradient(150deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(224,54,42,.32);
}
.cta__dots {
  position: absolute; z-index: 0; right: -6px; top: -6px;
  width: 104px; height: 78px;
  background-image: radial-gradient(rgba(255,255,255,.5) 1.6px, transparent 1.7px);
  background-size: 15px 15px;
}
.cta__img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; max-height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.cta__badge {
  position: absolute; z-index: 2; left: -14px; bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 13px 16px;
  box-shadow: var(--shadow-lg);
}
.cta__badge-ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,143,76,.12); color: var(--wa-dark);
}
.cta__badge-ico svg { width: 22px; height: 22px; }
.cta__badge-txt strong { display: block; font-size: 14.5px; color: var(--ink); }
.cta__badge-txt small { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }

/* conteúdo */
.cta h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem); max-width: 560px; margin-top: 10px; letter-spacing: -.3px; }
.cta p { color: rgba(255,255,255,.82); margin-top: 14px; font-size: 17px; max-width: 540px; }
.cta__points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 22px 0 28px; }
.cta__points li { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: #fff; }
.cta__points svg { width: 18px; height: 18px; flex-shrink: 0; color: #6ee7a0; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.72); }

.footer__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding: 62px 0 48px;
}
.footer__brand-col { max-width: 320px; }
.footer__logo { width: 210px; height: auto; margin-bottom: 18px; }
.footer__brand-col p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.6); }
.footer__col { display: flex; flex-direction: column; }
.footer__col h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px;
  color: #fff;
  margin-bottom: 18px;
}
.footer__col > a {
  font-size: 14.5px; color: rgba(255,255,255,.72);
  padding: 7px 0;
  transition: color .15s ease, padding-left .15s ease;
}
.footer__col > a:hover { color: #fff; padding-left: 5px; }

/* contatos com ícone */
.footer__contact { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.footer__contact-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; color: #fff;
  transition: background .16s ease, border-color .16s ease;
}
.footer__contact-ico svg { width: 19px; height: 19px; }
.footer__contact-ico--wa { background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.4); color: var(--wa); }
.footer__contact small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.55); }
.footer__contact strong { display: block; color: #fff; font-size: 14.5px; }
.footer__contact--static { cursor: default; }
a.footer__contact:hover .footer__contact-ico { background: rgba(255,255,255,.14); }
a.footer__contact:hover .footer__contact-ico--wa { background: var(--wa); border-color: var(--wa); color: #fff; }

/* barra inferior */
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.55);
}
.footer__brand { display: flex; align-items: center; gap: 11px; }
.footer__brand img { border-radius: 8px; }
.footer__brand strong { display: block; font-family: var(--display); font-style: italic; font-size: 19px; color: #fff; line-height: 1; }
.footer__brand small { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 2px; }
.footer__credit a { color: #fff; font-weight: 600; }
.footer__credit a:hover { color: #ffd7d3; }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  z-index: 60;
  animation: wa-pulse 2.4s infinite;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  70%  { box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- card como link + "saiba mais" ---------- */
.card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.card p { flex: 1; }
.card__more {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s ease;
}
.card:hover .card__more { color: var(--red); }
.card .card__tag + .card__more { margin-top: 12px; }

/* ---------- page hero (páginas internas) ---------- */
.page-hero {
  background:
    radial-gradient(700px 300px at 90% -20%, rgba(224,54,42,.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 54px 0 58px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span[aria-current] { color: #fff; font-weight: 600; }
.breadcrumb__sep { color: rgba(255,255,255,.35); }
.page-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd7d3;
  margin-bottom: 10px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -.5px;
}
.page-hero__sub {
  margin-top: 14px;
  font-size: 17.5px;
  color: rgba(255,255,255,.82);
  max-width: 660px;
}

/* ---------- página de serviço ---------- */
.service-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto 44px;
}
.service-intro__icon {
  width: 76px; height: 76px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
}
.service-intro__icon svg { width: 38px; height: 38px; }
.service-intro__lead { font-size: 18px; color: var(--body); margin-top: 6px; }
.service-intro__actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.scard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.scard__check {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,211,102,.12);
  color: var(--wa-dark);
  border-radius: 50%;
  margin-bottom: 14px;
}
.scard__check svg { width: 20px; height: 20px; }
.scard h3 { font-size: 17.5px; margin-bottom: 6px; }
.scard p { font-size: 14.5px; }

/* ---------- sobre nós ---------- */
.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.about__text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 6px; }
.about__text p { margin-top: 14px; font-size: 16.5px; }
.about__actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- contato ---------- */
.contact {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card__ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  color: var(--navy);
  border-radius: 10px;
}
.contact-card__ico svg { width: 24px; height: 24px; }
.contact-card--wa .contact-card__ico { background: rgba(37,211,102,.14); color: var(--wa-dark); }
.contact-card__txt { display: flex; flex-direction: column; }
.contact-card__txt small { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; }
.contact-card__txt strong { font-size: 16px; color: var(--ink); }
.contact__hours {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.contact__hours h3 { color: #fff; font-size: 19px; margin-bottom: 16px; }
.contact__note { font-size: 14px; color: rgba(255,255,255,.75); margin: 18px 0; }

/* ---------- "por que nós": cards com imagem ---------- */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card__media {
  position: relative;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.why-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(224,54,42,.35), transparent 55%);
}
.why-card__media--pecas  { background: linear-gradient(135deg, #1a3b72 0%, #12305f 100%); }
.why-card__media--rapido { background: linear-gradient(135deg, #16305c 0%, #0d2447 100%); }
.why-card__media--nota   { background: linear-gradient(135deg, #1b2f52 0%, #0d2447 100%); }
.why-card__icon {
  position: relative;
  z-index: 1;
  width: 66px; height: 66px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(2px);
}
.why-card__icon svg { width: 30px; height: 30px; }
.why-card__body { padding: 22px 22px 26px; }
.why-card__body h3 { font-size: 18px; margin-bottom: 8px; }
.why-card__body p { font-size: 14.5px; }

/* ---------- "como funciona": interativo 2 colunas ---------- */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.how__stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
  min-height: 400px;
}
.how__stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 260px at 80% 0%, rgba(224,54,42,.28), transparent 60%);
  pointer-events: none;
}
.how__panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.how__panel.is-active { opacity: 1; visibility: visible; transform: none; }
/* imagem de fundo */
.how__panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* degradê sobre a imagem */
.how__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,36,71,.28) 0%, rgba(13,36,71,.72) 58%, rgba(13,36,71,.94) 100%),
    linear-gradient(90deg, rgba(13,36,71,.62) 0%, rgba(13,36,71,.12) 70%);
}
/* texto sobrepondo */
.how__panel-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  padding: 44px;
  color: #fff;
}
.how__panel-step {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd7d3;
}
.how__panel h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.how__panel p { color: rgba(255,255,255,.9); font-size: 16.5px; max-width: 420px; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.how__panel .btn { margin-top: 8px; }

.how__list { display: flex; flex-direction: column; gap: 12px; }
.how__item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.how__item:hover { border-color: var(--navy-700); }
.how__item.is-active {
  border-color: transparent;
  box-shadow: var(--shadow);
  background: #fff;
}
.how__item-num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--muted);
  transition: color .2s ease;
  flex-shrink: 0;
  width: 34px;
}
.how__item.is-active .how__item-num { color: var(--red); }
.how__item-txt { display: flex; flex-direction: column; gap: 3px; }
.how__item-txt strong { font-size: 16.5px; color: var(--ink); }
.how__item-txt small { font-size: 13.5px; color: var(--body); line-height: 1.5; }
.how__item-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.how__item.is-active .how__item-bar { transform: scaleY(1); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* telas médias: compacta o horário, mantém só o telefone */
@media (max-width: 1000px) {
  .header-info { gap: 14px; }
  .header-info__sep,
  .header-info__item:last-child { display: none; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 20px; }
  .hero__media { min-height: 0; margin-top: 6px; }
  .hero__img { max-width: 440px; }
  .hero__shape { width: 90%; height: 86%; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .coverage { grid-template-columns: 1fr; gap: 32px; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta__media { max-width: 460px; }
  .cta__img { max-height: 380px; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 34px; }
  .contact { grid-template-columns: 1fr; gap: 28px; }
  .how { grid-template-columns: 1fr; gap: 20px; }
  .how__stage { min-height: 340px; }
  .how__panel-content { padding: 32px; }
}

@media (max-width: 1080px) {
  .site-header__main-inner { min-height: 74px; gap: 14px; }
  .nav-toggle { display: flex; flex-shrink: 0; }

  /* menu vira painel branco abaixo do header */
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav__link {
    padding: 14px 24px;
    border-radius: 0;
    justify-content: flex-start;
  }
  .nav__link:hover { background: var(--bg-alt); }
  .nav__arrow { display: none; }

  /* serviços vira acordeão */
  .nav__item--dropdown { flex-direction: column; align-items: stretch; position: relative; }
  .nav__chev { display: none; }
  .nav__caret {
    display: flex;
    position: absolute;
    top: 0; right: 12px;
    width: 54px; height: 50px;
    align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: var(--body);
  }
  .nav__caret svg { transition: transform .2s ease; }
  .nav__item--dropdown.is-open .nav__caret svg { transform: rotate(180deg); }

  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    min-width: 0;
    background: var(--bg-alt);
    border: none; border-radius: 0;
    box-shadow: none;
    padding: 4px 12px 10px;
    margin: 0;
  }
  .nav__item--dropdown.is-open .dropdown { display: block; }

  .header-phone__txt { display: none; }
  .site-header__actions { gap: 10px; }
}
@media (max-width: 600px) {
  .site-header__main-inner { min-height: 64px; gap: 12px; }
  .header-phone { display: none; }
  .brand__icon { width: 42px; height: 42px; }
  .brand__text strong { font-size: 21px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cities { grid-template-columns: 1fr; }
  .hero__actions { gap: 16px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__badge { top: 5%; right: 0; padding: 10px 13px; }
  .hero__badge-ico { width: 36px; height: 36px; }
  .hero__badge-txt strong { font-size: 20px; }
  .hero__dots { display: none; }
  .cta__actions .btn { flex: 1; justify-content: center; }
  .cta__badge { left: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px 24px; padding: 48px 0 36px; }
  .footer__col--contact { grid-column: 1 / -1; }
  .footer__bottom { padding: 18px 0; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .service-intro { grid-template-columns: 1fr; gap: 18px; }
  .service-intro__icon { width: 60px; height: 60px; }
  .service-intro__icon svg { width: 30px; height: 30px; }
  .contact__cards { grid-template-columns: 1fr; }
  .how__panel-content { padding: 26px; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .footer__col--contact { grid-column: auto; }
}

/* ===========================================================
   Componentes adicionais — FAQ, detalhe de serviço e 404
   =========================================================== */
.container--narrow { max-width: 860px; }

/* ---------- FAQ (layout institucional 2 colunas) ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: start;
}
.faq-intro { position: sticky; top: 104px; }
.faq-intro .section__eyebrow { display: inline-block; margin-bottom: 12px; }
.faq-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -.4px;
  line-height: 1.12;
}
.faq-intro p { margin-top: 14px; font-size: 16.5px; color: var(--body); max-width: 380px; }
.faq-intro__cta {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 24px;
  font-weight: 600; font-size: 14.5px; color: var(--navy);
  background: #fff; border: 1.5px solid var(--line);
  padding: 12px 18px; border-radius: 12px;
  transition: border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.faq-intro__cta svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--wa); }
.faq-intro__cta:hover { border-color: var(--wa); color: var(--wa-dark); box-shadow: var(--shadow-sm); }

/* ---------- FAQ (acordeão) ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq__item[open] { border-color: rgba(18,48,95,.22); box-shadow: var(--shadow); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--ink);
  transition: color .18s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--navy); }
.faq__chev { flex: none; color: var(--red); transition: transform .22s ease; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 22px 22px; }
.faq__a p { margin: 0; color: var(--body); font-size: 16px; }

/* ---------- detalhe do serviço (contexto + sinais) ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.svc-detail__text h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -.4px;
  margin: 8px 0 16px;
}
.svc-detail__text p { font-size: 17px; }
.svc-signs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.svc-signs h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.svc-signs ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.svc-signs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink);
}
.svc-signs__ico {
  flex: none;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(26,143,76,.12);
  color: var(--wa-dark);
}
.svc-signs__ico svg { width: 14px; height: 14px; }

/* ---------- 404 ---------- */
.notfound { max-width: 980px; margin: 0 auto; }
.notfound__lead {
  text-align: center;
  font-size: 18px;
  color: var(--body);
  margin-bottom: 32px;
}

@media (max-width: 860px) {
  .svc-detail { grid-template-columns: 1fr; gap: 28px; }
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-intro { position: static; }
  .faq-intro p { max-width: none; }
}
@media (max-width: 640px) {
  .faq__q { padding: 16px 18px; font-size: 1.08rem; }
  .faq__a { padding: 0 18px 18px; }
  .svc-signs { padding: 22px; }
}

/* ===========================================================
   Blog
   =========================================================== */
.post-grid { align-items: stretch; }
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(18,48,95,.16); }
.post-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  overflow: hidden;
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); opacity: .35;
}
.post-card__ph svg { width: 64px; height: 64px; }
.post-card__body { display: flex; flex-direction: column; gap: 10px; padding: 22px; flex: 1; }
.post-card__cat {
  align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: var(--red);
  background: rgba(224,54,42,.08);
  padding: 4px 10px; border-radius: 999px;
}
.post-card__title { font-family: var(--display); font-size: 1.3rem; line-height: 1.2; }
.post-card__title a { color: var(--ink); transition: color .15s ease; }
.post-card__title a:hover { color: var(--navy); }
.post-card__excerpt { font-size: 15px; color: var(--body); flex: 1; }
.post-card__meta { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* paginação */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 48px; flex-wrap: wrap;
}
.pagination__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy);
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 11px 20px; transition: all .16s ease;
}
.pagination__link:hover { border-color: var(--navy); background: var(--bg-alt); }
.pagination__status { font-size: 14px; color: var(--muted); }

/* estado vazio */
.blog-empty { max-width: 520px; margin: 0 auto; text-align: center; padding: 40px 0; }
.blog-empty__icon {
  width: 76px; height: 76px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px; background: var(--bg-soft); color: var(--navy);
}
.blog-empty__icon svg { width: 38px; height: 38px; }
.blog-empty h2 { font-size: 1.6rem; margin-bottom: 12px; }
.blog-empty p { margin-bottom: 24px; }

/* ---------- hero do artigo ---------- */
.post-hero {
  background:
    radial-gradient(760px 320px at 88% -30%, rgba(224,54,42,.22), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 50px 0 58px;
}
.post-hero.has-cover { padding-bottom: 132px; }
.post-hero .breadcrumb { margin-bottom: 22px; }
.post-hero__cat {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: var(--red);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(224,54,42,.32);
}
.post-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12; letter-spacing: -.6px;
  max-width: 820px;
}
.post-hero__lead {
  margin-top: 16px;
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 700px;
}
.post-hero__meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 22px; font-size: 14.5px; color: rgba(255,255,255,.78);
}
.post-hero__author { font-weight: 600; color: #fff; }
.post-hero__dot { opacity: .45; }
.post-hero__cover {
  margin: -92px 0 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9; background: var(--bg-soft);
}
.post-hero__cover img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- post individual ---------- */
.post { padding: 44px 0 72px; }
.post--nocover { padding-top: 40px; }

/* tipografia do conteúdo (HTML vindo do editor) */
.post__body { font-size: 18px; line-height: 1.8; color: var(--ink); }
.post__body > * + * { margin-top: 1.25em; }
.post__body h2 { font-family: var(--display); font-size: 1.85rem; letter-spacing: -.3px; margin-top: 1.6em; }
.post__body h3 { font-family: var(--display); font-size: 1.45rem; margin-top: 1.4em; }
.post__body h4 { font-size: 1.15rem; margin-top: 1.3em; }
.post__body p { color: var(--body); }
.post__body a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.post__body a:hover { color: var(--red); }
.post__body strong { color: var(--ink); }
.post__body ul, .post__body ol { padding-left: 1.4em; color: var(--body); }
.post__body ul { list-style: disc; }
.post__body ol { list-style: decimal; }
.post__body li + li { margin-top: .5em; }
.post__body img { border-radius: var(--radius); margin: 1.6em 0; box-shadow: var(--shadow-sm); }
.post__body blockquote {
  border-left: 4px solid var(--red);
  background: var(--bg-alt);
  padding: 16px 22px; border-radius: 0 10px 10px 0;
  font-size: 1.05em; color: var(--ink); font-style: italic;
}
.post__body pre {
  background: var(--navy-dark); color: #eef2f8;
  padding: 18px 20px; border-radius: 10px; overflow-x: auto;
  font-size: 14.5px; line-height: 1.6;
}
.post__body code { font-size: .92em; }
.post__body hr { border: none; border-top: 1px solid var(--line); }

.post__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.post__tag {
  font-size: 13px; color: var(--body);
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
}
/* rodapé do artigo: compartilhar + ver todos */
.post__foot {
  margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; flex-wrap: wrap;
}
.post__share { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post__share-label { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.post__share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  cursor: pointer; transition: all .16s ease; position: relative;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.share-btn--wa:hover { background: var(--wa); border-color: var(--wa); color: #fff; }
.share-btn--fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.share-btn--x:hover  { background: #000; border-color: #000; color: #fff; }
.share-btn--in:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.share-btn--copy:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.share-btn__done {
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s ease;
}
.share-btn.is-copied .share-btn__done { opacity: 1; }
.post-more { text-align: center; margin-top: 40px; }

@media (max-width: 640px) {
  .post__foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .post__body { font-size: 16.5px; }
  .post__body h2 { font-size: 1.5rem; }
  .post__body h3 { font-size: 1.25rem; }
  .post-hero { padding: 40px 0 46px; }
  .post-hero.has-cover { padding-bottom: 92px; }
  .post-hero__cover { margin-top: -64px; aspect-ratio: 3 / 2; }
  .post-hero__lead { font-size: 16.5px; }
}

/* bairros e condomínios atendidos (onde atendemos) */
.neigh-group { margin-top: 30px; }
.neigh-group__title { font-size: 1.05rem; margin-bottom: 14px; color: var(--navy); }
.neigh-group .cities { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
@media (max-width: 640px) { .neigh-group .cities { grid-template-columns: 1fr; } }

/* título de serviços em uma linha no desktop */
@media (min-width: 900px) {
  #servicos .section__head { max-width: 900px; }
  #servicos .section__head h2 { white-space: nowrap; }
}

/* cards com foto no topo — home "o que resolvemos" */
.card--photo { padding: 0; overflow: hidden; }
.card__photo { position: relative; height: 200px; background: var(--bg-alt); }
.card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card--photo:hover .card__photo img { transform: scale(1.05); }
.card__photo-ico {
  position: absolute; left: 20px; bottom: -22px;
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm);
  color: var(--navy);
}
.card__photo-ico svg { width: 24px; height: 24px; }
.card__body { padding: 34px 26px 28px; display: flex; flex-direction: column; flex: 1; }

/* fundo com imagem na seção de avaliações (degradê branco → transparente → branco) */
.reviews-bg {
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, rgba(245,247,251,.7) 50%, var(--bg-alt) 100%),
    url(../img/bgavaliacoes.webp) center / cover no-repeat;
}

/* destaques do FAQ no azul do degradê do hero */
.faq-section .section__eyebrow { color: #266cd6; }
.faq-section .faq__chev { color: #266cd6; }
.faq-section .faq__q:hover { color: #266cd6; }
.faq-section .faq__item[open] { border-color: rgba(38,108,214,.38); }

/* seção de cobertura com degradê azul (mesmo do hero) + textos claros */
.coverage-bg {
  background:
    radial-gradient(75% 60% at 72% 108%, rgba(64,146,255,.55), transparent 60%),
    radial-gradient(70% 55% at 18% 96%, rgba(38,108,214,.42), transparent 62%),
    radial-gradient(62% 60% at 88% 8%, rgba(40,92,186,.48), transparent 58%),
    radial-gradient(55% 55% at 22% 14%, rgba(9,22,54,.85), transparent 60%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 52%, var(--navy-700) 100%);
}
.coverage-bg .section__eyebrow { color: rgba(255,255,255,.85); }
.coverage-bg .coverage__info h2 { color: #fff; }
.coverage-bg .coverage__info p { color: rgba(255,255,255,.85); }
.coverage-bg .coverage__note { color: rgba(255,255,255,.72); }

/* ===== hero: carrossel de fundo ===== */
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: 0; transform: scale(1.12);
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.hero__slide:nth-child(2), .hero__slide:nth-child(3) { background-position: center bottom; }
.hero__slide.is-active {
  opacity: 1;
  transition: opacity 1.6s ease;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,16,36,.92) 0%, rgba(11,32,64,.80) 44%, rgba(18,48,95,.42) 100%),
    linear-gradient(180deg, rgba(7,16,36,.15), rgba(7,16,36,.38));
}
/* textos sincronizados */
.hero__texts { position: relative; min-height: 300px; }
.hero__text {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.hero__text.is-active {
  position: relative;
  opacity: 1; transform: translateY(0);
  transition: opacity .7s ease .3s, transform .7s ease .3s;
  pointer-events: auto;
}
/* navegação em dots — vertical, à direita */
.hero__dots-nav {
  position: absolute;
  right: clamp(16px, 3.5vw, 46px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__dot {
  width: 4px; height: 30px; padding: 0; border: 0; cursor: pointer;
  border-radius: 2px; background: rgba(255,255,255,.4);
  transition: background .2s ease, height .2s ease;
}
.hero__dot:hover { background: rgba(255,255,255,.65); }
.hero__dot.is-active { background: #fff; height: 46px; }

@media (max-width: 1080px) { .hero { min-height: calc(100vh - 74px); min-height: calc(100svh - 74px); } }
@media (max-width: 992px)  { .hero__texts { min-height: 340px; } }
@media (max-width: 600px)  {
  .hero { min-height: calc(100vh - 64px); min-height: calc(100svh - 64px); }
  .hero__dots-nav { top: auto; bottom: 20px; right: 50%; transform: translateX(50%); flex-direction: row; }
  .hero__dot { width: 26px; height: 4px; }
  .hero__dot.is-active { width: 40px; height: 4px; }
}
@media (max-width: 560px) { .hero__texts { min-height: 300px; } }

@media (prefers-reduced-motion: reduce) {
  .hero__slide, .hero__slide.is-active { transition: opacity .2s ease; transform: none; animation: none; }
  .hero__text, .hero__text.is-active { transition: opacity .2s ease; transform: none; }
}

/* ===== Lenis (scroll suave) ===== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
