/* ==========================================================================
   Pronto Lar Consertos — folha de estilo única
   ========================================================================== */

@font-face {
  font-family: 'Jakarta';
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Jakarta';
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy-900: #0c1e3a;
  --navy-800: #12294b;
  --navy-700: #1b3a68;
  --navy-600: #2a5290;
  --orange: #f47b20;
  --orange-dark: #d9650f;
  --orange-soft: #fff1e4;
  --wa: #25d366;
  --wa-dark: #1da851;

  --ink: #12294b;
  --body: #4a5a72;
  --muted: #6b7a91;
  --line: #e4e9f1;
  --surface: #ffffff;
  --surface-2: #f6f8fc;
  --cream: #fbfaf8;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(12, 30, 58, .06), 0 2px 8px rgba(12, 30, 58, .05);
  --shadow: 0 4px 12px rgba(12, 30, 58, .07), 0 14px 34px rgba(12, 30, 58, .08);
  --shadow-cta: 0 6px 18px rgba(244, 123, 32, .3);

  --wrap: 1140px;
  --gut: 20px;
  --bar-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar-h) + 12px);
}

body {
  margin: 0;
  font-family: 'Jakarta', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.032em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 1.35rem + 3.1vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.9vw, 2.5rem); }
h3 { font-size: clamp(1.12rem, 1.02rem + .46vw, 1.35rem); letter-spacing: -.02em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(56px, 4rem + 3vw, 104px); }
.section--tint { background: var(--surface-2); }
.section--cream { background: var(--cream); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.lead { font-size: 1.08rem; color: var(--body); max-width: 60ch; }

.section-head { max-width: 700px; margin-bottom: clamp(32px, 4vw, 54px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  min-height: 52px;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--navy-600); outline-offset: 3px; }

.btn--wa { background: var(--wa); color: #06331a; box-shadow: 0 6px 18px rgba(37, 211, 102, .32); }
.btn--wa:hover { background: var(--wa-dark); color: #fff; }

.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--orange-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--navy-600); color: var(--navy-700); }

.btn--light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; min-height: 60px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(12, 30, 58, .06); }

.header__inner {
  min-height: var(--bar-h);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand img { width: 42px; height: 42px; border-radius: 11px; }
.brand__name {
  display: block;
  font-weight: 800;
  font-size: 1.03rem;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .18s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.header .btn { padding: 11px 20px; min-height: 44px; font-size: .93rem; }
.header__cta { display: inline-flex; }

@media (max-width: 900px) {
  .nav { display: none; }
}
@media (max-width: 560px) {
  .header__cta { display: none; }
  .brand__tag { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1000px 520px at 82% -8%, rgba(244, 123, 32, .16), transparent 62%),
    radial-gradient(760px 480px at 6% 8%, rgba(42, 82, 144, .14), transparent 60%),
    var(--cream);
  padding-block: clamp(44px, 3rem + 4vw, 88px) clamp(52px, 3rem + 4vw, 96px);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: clamp(34px, 4vw, 60px);
  align-items: center;
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.08fr .92fr; }
}

.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--orange-dark); }
.hero__lead { font-size: clamp(1.04rem, 1rem + .35vw, 1.2rem); max-width: 54ch; margin-bottom: 28px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
}
.hero__note svg { width: 17px; height: 17px; color: var(--wa-dark); flex: none; }

/* cartão de prova social no hero */
.proof {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow);
}
.proof__score { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.proof__num { font-size: 2.7rem; font-weight: 800; color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.proof__meta { font-size: .88rem; color: var(--muted); font-weight: 600; }
.proof__meta strong { display: block; color: var(--ink); font-size: .96rem; font-weight: 800; letter-spacing: -.01em; }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; color: #f5a623; }

.proof__list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 13px; }
.proof__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; font-weight: 600; color: var(--ink); }
.proof__list svg { width: 20px; height: 20px; color: var(--wa-dark); flex: none; margin-top: 1px; }

/* ---------- Faixa de confiança ---------- */

.trustbar { background: var(--navy-800); color: #fff; padding-block: 26px; }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
}
.trustbar__item { display: flex; align-items: center; gap: 13px; }
.trustbar__item svg { width: 26px; height: 26px; color: var(--orange); flex: none; }
.trustbar__item b { display: block; font-size: 1rem; letter-spacing: -.02em; color: #fff; }
.trustbar__item span { font-size: .84rem; color: #a9bcd8; }

/* ---------- Serviços ---------- */

.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }

.card__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  overflow: hidden;
}
.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.card:hover .card__photo img { transform: scale(1.045); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d3ddec; }

.card__icon {
  position: absolute;
  left: 16px; bottom: -22px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--surface);
  color: var(--orange-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.card__icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 9px; margin-top: 22px; }
.card p { font-size: .95rem; margin-bottom: 0; }

.card__tags { list-style: none; margin: auto 0 0; padding-top: 15px; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.card__tags li {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}

/* ---------- Passos ---------- */

.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); counter-reset: s; }
.step { position: relative; padding-top: 20px; border-top: 3px solid var(--line); counter-increment: s; }
.step::before {
  content: counter(s, decimal-leading-zero);
  display: block;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 9px;
}
.step h3 { margin-bottom: 7px; }
.step p { font-size: .95rem; margin-bottom: 0; }

/* ---------- Destaque com foto ---------- */

.split { display: grid; gap: clamp(30px, 4vw, 56px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }

.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 106 / 100;
}
.split__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(12, 30, 58, .92);
  color: #fff;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(6px);
  max-width: 76%;
}
.split__badge b { color: var(--orange); }

.checklist { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 21px; height: 21px; color: var(--wa-dark); flex: none; margin-top: 3px; }
.checklist b { color: var(--ink); }

/* ---------- Avaliações ---------- */

.reviews { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.review__top { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-700);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex: none;
}
.review__who b { display: block; color: var(--ink); font-size: .96rem; letter-spacing: -.01em; }
.review p { font-size: .95rem; margin: 0; color: var(--body); }

.reviews__foot { margin-top: 28px; text-align: center; }
.reviews__foot p { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }

/* ---------- Área de atendimento ---------- */

.areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.areas span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 17px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-700);
}

/* ---------- Loja ---------- */

.store { display: grid; gap: clamp(26px, 3vw, 44px); }
@media (min-width: 880px) { .store { grid-template-columns: .88fr 1.12fr; align-items: start; } }

.store__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 18px; }
.store__list li { display: flex; gap: 14px; align-items: flex-start; }
.store__list svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 3px; }
.store__list b { display: block; color: var(--ink); font-size: .97rem; }
.store__list span { font-size: .94rem; }

.map {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 16 / 11;
  position: relative;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  background: var(--surface-2);
  border: 0;
  width: 100%;
  font: inherit;
  color: var(--body);
}
.map__ph svg { width: 34px; height: 34px; color: var(--orange); }
.map__ph b { color: var(--ink); font-size: 1rem; }
.map__ph small { font-size: .85rem; color: var(--muted); }

/* ---------- CTA final ---------- */

.final {
  background:
    radial-gradient(760px 420px at 80% 0%, rgba(244, 123, 32, .26), transparent 60%),
    var(--navy-900);
  color: #fff;
  text-align: center;
  padding-block: clamp(60px, 5rem + 3vw, 110px);
}
.final h2 { color: #fff; margin-bottom: 14px; }
.final p { color: #b9c9e2; max-width: 56ch; margin-inline: auto; margin-bottom: 30px; font-size: 1.06rem; }
.final__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.final__note { margin-top: 22px; font-size: .88rem; color: #8fa5c4; }

/* ---------- Rodapé ---------- */

.footer { background: var(--navy-900); color: #93a8c6; padding-block: 52px 30px; border-top: 1px solid rgba(255, 255, 255, .09); }
.footer__grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 15px; font-weight: 800; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { color: #93a8c6; text-decoration: none; font-size: .94rem; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer p { font-size: .94rem; }
.footer .brand__name { color: #fff; }
.footer .brand__tag { color: #7d93b3; }
.footer .brand { margin-right: 0; margin-bottom: 14px; }

.footer__bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  font-size: .85rem;
}

/* ---------- Barra fixa mobile ---------- */

.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.dock .btn { flex: 1; padding: 14px 14px; font-size: .97rem; }
.dock .btn--ghost { flex: 0 0 54px; padding: 14px 0; }
.dock .btn--ghost svg { width: 22px; height: 22px; }

@media (max-width: 760px) {
  .dock { display: flex; }
  body { padding-bottom: 84px; }
}

/* ---------- Página de conteúdo (política) ---------- */

.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); margin-top: 2em; }
.prose h2:first-of-type { margin-top: 0; }
.prose ul { padding-left: 1.15em; display: grid; gap: .5em; margin-bottom: 1.1em; }
.prose a { color: var(--navy-600); }

/* ---------- Utilitários ---------- */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 11px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top .18s ease;
}
.skip:focus { top: 0; }

.reveal { transition: opacity .55s ease, transform .55s ease; }
/* Só esconde para animar se o JS estiver ativo. Sem JS, tudo aparece normalmente. */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
