/* =====================================================================
   LP Emporium Pet — design system
   Confiável · Profissional · Moderno. Página equilibrada (claro + 2 seções noturnas).
   Vermelho da marca só em acentos; VERDE = única cor de conversão (WhatsApp).
   ===================================================================== */
:root {
  --red: #E51F1F;
  --red-deep: #B91515;
  --red-light: #FF5F5F;
  --red-soft: rgba(229, 31, 31, .08);
  --ink: #111111;
  --ink-2: #3A3A3F;
  --ink-3: #5F5F63;
  --paper: #F7F6F3;
  --paper-2: #EFEDE8;
  --white: #FFFFFF;
  --line: #E6E4DF;
  --night: #0F0F10;
  --night-2: #17171A;
  --night-text: #F4F4F5;
  --night-muted: #A1A1AA;
  --night-line: rgba(255, 255, 255, .10);
  --wa: #25D366;
  --wa-ink: #062B14;
  --wa-hover: #1FBF5C;
  --wa-glow: rgba(37, 211, 102, .38);
  --wa-text: #0B6B37;
  --amber: #B45309;
  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --container: 1160px;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, .05), 0 2px 10px rgba(17, 17, 17, .06);
  --shadow-md: 0 10px 30px -8px rgba(17, 17, 17, .18);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
svg { display: inline-block; }

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -.02em; line-height: 1.1; margin: 0; color: var(--ink); }
h1 { font-size: clamp(2.05rem, 5.2vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; letter-spacing: -.01em; }
h1 em, h2 em { font-style: normal; color: var(--red); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { max-width: 800px; }

.section { padding: 4rem 0; }
@media (min-width: 900px) { .section { padding: 6rem 0; } }
.section--paper { background: var(--paper); }
.section--night { background: var(--night); color: var(--night-text); }
.section--night h2, .section--night h3 { color: #fff; }
.section--night h2 em { color: var(--red-light); }
.section__head { max-width: 780px; margin-bottom: 2.5rem; }
.lead { font-size: 1.125rem; color: var(--ink-2); margin-top: 1rem; max-width: 640px; }
.section--night .lead { color: var(--night-muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red-deep);
  margin: 0 0 1rem;
}
.eyebrow svg { width: 16px; height: 16px; }
.eyebrow--light { color: #FF7A7A; }
.eyebrow--creche { color: var(--amber); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse-red 2s infinite; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1;
  height: 48px; padding: 0 1.25rem; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background-color .2s, border-color .2s;
}
.btn:active { transform: scale(.98); }
.btn__ico { width: 22px; height: 22px; flex: none; }
.btn--lg { height: 60px; padding: 0 1.75rem; font-size: 1.0625rem; }
.btn--wa { background: var(--wa); color: var(--wa-ink); box-shadow: 0 10px 24px -10px var(--wa-glow); }
.btn--wa:hover { background: var(--wa-hover); box-shadow: 0 14px 28px -10px var(--wa-glow); transform: translateY(-1px); }
.btn--call { background: var(--red); color: #fff; height: 44px; padding: 0 1rem; }
.btn--call:hover { background: var(--red-deep); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.btn__num { display: none; }
@media (min-width: 720px) { .btn__num { display: inline; font-weight: 600; opacity: .95; } }
:is(a, button, summary):focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible { border-radius: var(--r-pill); }

.skip { position: absolute; left: -999px; top: 0; background: #fff; color: var(--ink); padding: .75rem 1rem; z-index: 1000; border-radius: 8px; }
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Topo fixo ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(180%) blur(12px); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 68px; }
.topbar__logo { display: inline-flex; }
.topbar__logo img { height: 38px; width: auto; }
.status { display: none; align-items: center; gap: .55rem; font-size: .875rem; font-weight: 600; color: var(--ink-2); }
.status__dot { width: 10px; height: 10px; border-radius: 50%; background: #16A34A; animation: pulse-green 2s infinite; flex: none; }
@media (min-width: 720px) {
  .topbar__in { height: 78px; }
  .topbar__logo img { height: 46px; }
  .status { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 2.5rem 0 3rem;
  background: var(--paper);
  background-image: radial-gradient(70% 60% at 0% 0%, rgba(229, 31, 31, .10), transparent 65%);
}
.hero__grid { display: grid; gap: 2.25rem; }
@media (min-width: 960px) {
  .hero { padding: 4.5rem 0 3.5rem; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3.5rem; }
}
.hero__sub { font-size: 1.125rem; color: var(--ink-2); margin-top: 1.25rem; max-width: 600px; }
.hero__cta { display: flex; flex-direction: column; align-items: stretch; gap: .9rem; margin-top: 1.75rem; }
@media (min-width: 560px) { .hero__cta { flex-direction: row; align-items: center; gap: 1.25rem; } }
.hero__call { font-size: 1rem; color: var(--ink-2); text-align: center; }
.hero__call b { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.hero__note { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--ink-3); margin-top: 1rem; }
.ico-inline { width: 18px; height: 18px; color: var(--red); flex: none; }

.proof { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.4rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.proof__item { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; color: var(--ink-2); }
.proof__item b { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.stars { display: inline-flex; gap: 1px; color: #F5A623; }
.stars svg { width: 16px; height: 16px; }
.proof__src { font-size: .75rem; color: var(--ink-3); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 .95rem;
  border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line);
  font-size: .875rem; font-weight: 600; color: var(--ink-2);
  transition: border-color .2s, color .2s, background .2s;
}
.chip:hover { border-color: var(--red); color: var(--red-deep); background: var(--red-soft); }

.hero__media { position: relative; margin: 0; }
.hero__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 28%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); background: var(--paper-2); }
@media (min-width: 960px) { .hero__img { aspect-ratio: 6 / 7; } }
.badge-open {
  position: absolute; top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(17, 17, 17, .82); color: #fff; font-size: .85rem; font-weight: 600;
  padding: .5rem .9rem; border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero__card {
  position: relative; margin: -2rem 1rem 0;
  display: flex; gap: .75rem; align-items: flex-start;
  background: #fff; border-radius: var(--r-md); padding: 1rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
@media (min-width: 960px) { .hero__card { position: absolute; right: -.75rem; bottom: 1.5rem; margin: 0; max-width: 300px; } }
.hero__card-ico { width: 28px; height: 28px; color: var(--red); flex: none; }
.hero__card b { display: block; font-family: var(--font-head); font-size: .95rem; }
.hero__card span { display: block; font-size: .85rem; color: var(--ink-3); line-height: 1.45; margin-top: .15rem; }

.night-strip {
  margin-top: 2.5rem; background: var(--night); color: var(--night-text);
  border-radius: var(--r-md); padding: 1.1rem 1.25rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.5rem;
}
@media (min-width: 960px) { .night-strip { margin-top: 3rem; } }
.night-strip__title { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.night-strip__title svg { width: 18px; height: 18px; color: #FFD166; flex: none; }
.night-strip__list { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.night-strip__list li { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 500; color: #E4E4E7; }
.night-strip__list svg { width: 16px; height: 16px; color: var(--wa); flex: none; }

/* ---------- Barra de confiança ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; padding: 1.75rem 0; }
@media (min-width: 900px) { .trust__grid { grid-template-columns: repeat(4, 1fr); padding: 2rem 0; } }
.stat { display: flex; flex-direction: column; gap: .2rem; padding-left: 1rem; border-left: 3px solid var(--red); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; line-height: 1.1; }
.stat__label { font-size: .85rem; color: var(--ink-3); line-height: 1.4; }

/* ---------- Serviços ---------- */
.svc-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.svc {
  display: flex; flex-direction: column; gap: .5rem; padding: 1.35rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(229, 31, 31, .35); }
.svc:active { transform: scale(.99); }
.svc__ico { width: 48px; height: 48px; border-radius: 14px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; margin-bottom: .35rem; }
.svc__ico svg { width: 24px; height: 24px; }
.svc__ico--hot { background: var(--red); color: #fff; }
.svc__title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; line-height: 1.25; color: var(--ink); }
.svc__desc { font-size: .95rem; color: var(--ink-3); line-height: 1.5; flex: 1; }
.svc__cta { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .9rem; color: var(--wa-text); margin-top: .5rem; }
.svc__cta svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.svc:hover .svc__cta svg { transform: translateX(3px); }

/* ---------- Emergência (noite) ---------- */
.emerg__grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .emerg__grid { grid-template-columns: 1.35fr 1fr; gap: 3rem; align-items: start; } }
.steps { list-style: none; display: grid; gap: 1rem; }
.step { display: flex; gap: 1rem; padding: 1.25rem; background: var(--night-2); border: 1px solid var(--night-line); border-radius: var(--r-md); }
.step__num { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--night-muted); font-size: .98rem; }
.emerg__aside { background: var(--night-2); border: 1px solid var(--night-line); border-radius: var(--r-md); padding: 1.5rem; overflow: hidden; }
.emerg__photo { margin: -1.5rem -1.5rem 1.25rem; }
.emerg__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 18%; }
.emerg__aside-title { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; margin-bottom: 1rem; }
.emerg__aside-title svg { width: 20px; height: 20px; color: #FFD166; flex: none; }
.checklist { list-style: none; display: grid; gap: .6rem; }
.checklist li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; }
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--wa); margin-top: .15rem; }
.checklist--ink { margin-top: 1.5rem; }
.checklist--ink li { color: var(--ink-2); }
.checklist--ink svg { color: var(--wa-text); }
.emerg__area { margin-top: 1.25rem; font-size: .9rem; color: var(--night-muted); padding-top: 1rem; border-top: 1px solid var(--night-line); }

.cta-row { display: flex; flex-direction: column; gap: .9rem; align-items: stretch; margin-top: 2.5rem; }
@media (min-width: 560px) { .cta-row { flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; } }
.cta-row--left { margin-top: 1.75rem; }
@media (min-width: 560px) { .cta-row--left { justify-content: flex-start; } }

/* ---------- Split (texto + mídia) ---------- */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
  .split--rev { grid-template-columns: .9fr 1.1fr; }
  .split--rev .split__copy { order: 2; }
  .split--rev .split__media, .split--rev .gallery, .split--rev .tosa-grid { order: 1; }
}
.split__media { margin: 0; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 30%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); background: var(--paper-2); }
.split__media--phone { width: 100%; max-width: 340px; margin-inline: auto; position: relative; }
.split__media--phone img { aspect-ratio: 3 / 4; border-radius: 28px; border: 6px solid #111; box-shadow: var(--shadow-md); }
.phone-chip {
  position: absolute; left: 1rem; right: 1rem; bottom: 1.25rem;
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .95); border-radius: var(--r-sm); padding: .7rem .85rem;
  font-size: .85rem; color: var(--ink-2); box-shadow: var(--shadow-md);
}
.phone-chip svg { width: 20px; height: 20px; color: var(--wa-text); flex: none; }
.phone-chip b { display: block; font-family: var(--font-head); font-size: .85rem; color: var(--ink); }

.mini-cards { display: grid; gap: .9rem; margin-top: 1.5rem; }
@media (min-width: 560px) { .mini-cards { grid-template-columns: 1fr 1fr; } }
.mini { display: flex; gap: .8rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; }
.mini svg { width: 24px; height: 24px; color: var(--red); flex: none; }
.mini b { display: block; font-family: var(--font-head); font-size: .95rem; }
.mini span { display: block; font-size: .875rem; color: var(--ink-3); line-height: 1.45; }

/* ---------- Creche / fatos ---------- */
.facts { list-style: none; margin-top: 1.5rem; display: grid; gap: .9rem; }
.facts li { display: flex; gap: .8rem; align-items: flex-start; }
.facts svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: .15rem; }
.facts b { display: block; font-family: var(--font-head); font-size: 1rem; }
.facts small { display: block; font-size: .85rem; color: var(--ink-3); }
.facts small:empty { display: none; }
.facts small.open-status--on { color: #166534; font-weight: 600; background: none; padding: 0; }
.facts small.open-status--off { color: var(--ink-3); background: none; padding: 0; }
.req {
  display: flex; gap: .75rem; margin-top: 1.5rem; padding: 1rem 1.1rem;
  background: #fff; border: 1px dashed rgba(229, 31, 31, .45); border-radius: var(--r-md);
  font-size: .95rem; line-height: 1.5; color: var(--ink-2);
}
.req svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: .1rem; }
.quote-line { margin-top: 1.25rem; padding-left: 1rem; border-left: 3px solid var(--red); font-style: italic; color: var(--ink-2); }

.gallery { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; padding-bottom: 1.5rem; }
.gallery img { width: 100%; object-fit: cover; border-radius: var(--r-md); background: var(--paper-2); }
.gallery__tall { grid-row: span 2; aspect-ratio: 3 / 4; height: 100%; }
.gallery__wide { aspect-ratio: 1; }
.gallery__brand {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%) rotate(-3deg);
  background: #fff; border-radius: var(--r-md); padding: .7rem 1.1rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 800; line-height: 1.05; text-align: center; color: var(--amber);
}
.gallery__brand img { height: 60px; width: auto; }

.badge-google { display: inline-flex; align-items: center; gap: .75rem; padding: .75rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); }
.badge-google__g { width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #4285F4; flex: none; }
.badge-google b { font-family: var(--font-head); font-size: 1.25rem; margin-right: .25rem; }
.badge-google small { display: block; font-size: .8rem; color: var(--ink-3); }
.badge-google--inline { padding: .55rem .85rem; }
.badge-google--inline > span:not(.stars) { font-size: .85rem; color: var(--ink-3); }

.notice { display: flex; gap: .6rem; align-items: center; margin-top: 1.25rem; padding: .8rem 1rem; background: var(--red-soft); border-radius: var(--r-sm); font-size: .95rem; font-weight: 500; color: var(--red-deep); }
.notice svg { width: 20px; height: 20px; flex: none; }

/* ---------- Banho e tosa: grade 2x2 ---------- */
.tosa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.tosa-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-md); background: var(--paper-2); }
.tosa-grid figcaption { grid-column: 1 / -1; font-size: .8rem; color: var(--ink-3); text-align: center; }

/* ---------- Avaliações ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.rev-grid { display: grid; gap: 1rem; }
@media (min-width: 720px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }
.rev { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.35rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .75rem; }
.rev__head { display: flex; align-items: center; gap: .75rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; flex: none; }
.avatar--creche { background: var(--amber); }
.rev__name { display: block; font-family: var(--font-head); font-size: .95rem; line-height: 1.2; }
.rev__tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red-deep); }
.rev__tag--creche { color: var(--amber); }
.rev__text { font-size: .95rem; color: var(--ink-2); line-height: 1.55; }
.fineprint { margin-top: 1.5rem; font-size: .8rem; color: var(--ink-3); }

/* ---------- Quem cuida ---------- */
.about__grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .about__grid { grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: center; } }
.about__copy .lead + .lead { margin-top: .75rem; }
.creds { list-style: none; margin-top: 1.5rem; display: grid; gap: .8rem; }
.creds li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; color: var(--ink-2); }
.creds svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: .1rem; }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); max-width: 420px; margin-inline: auto; width: 100%; }
.person__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 35%; background: var(--paper-2); }
.person__meta { padding: 1.1rem 1.25rem; }
.person__meta b { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.person__meta > span { display: block; font-size: .9rem; color: var(--ink-3); }
.person__meta small { display: block; margin-top: .35rem; font-size: .8rem; color: var(--ink-3); }
.team { margin: 3rem 0 0; }
.team img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r-lg); background: var(--paper-2); }
.team figcaption { margin-top: .6rem; font-size: .85rem; color: var(--ink-3); }
.todo { background: #FEF3C7; color: #92400E; padding: 0 .35rem; border-radius: 4px; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: .6rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; min-height: 56px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { width: 20px; height: 20px; flex: none; color: var(--red); transition: transform .2s var(--ease); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item[open] summary { border-bottom: 1px solid var(--line); }
.faq__body { padding: 1rem 1.25rem 1.15rem; }
.faq__body p { color: var(--ink-2); font-size: .98rem; }

/* ---------- Onde estamos ---------- */
.where__grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .where__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; } }
.addr { display: flex; gap: .75rem; align-items: flex-start; font-style: normal; margin-top: 1.25rem; }
.addr svg { width: 24px; height: 24px; color: var(--red); flex: none; margin-top: .1rem; }
.addr b { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.addr span { display: block; color: var(--ink-3); font-size: .95rem; }
.hours { list-style: none; margin-top: 1.5rem; border-top: 1px solid var(--line); }
.hours__row {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "label status" "value status";
  gap: .1rem .75rem; padding: .8rem 0; border-bottom: 1px solid var(--line); align-items: center;
}
.hours__row span { grid-area: label; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); font-weight: 700; }
.hours__row b { grid-area: value; font-family: var(--font-head); font-size: .95rem; }
.open-status { grid-area: status; font-style: normal; font-size: .78rem; font-weight: 700; padding: .3rem .65rem; border-radius: var(--r-pill); background: #EEEEEE; color: var(--ink-3); white-space: nowrap; }
.open-status--on { background: #DCFCE7; color: #166534; }
.open-status--off { background: #F3F4F6; color: #4B5563; }
.open-status:empty { display: none; }
@media (max-width: 559px) {
  .hours__row { grid-template-columns: 1fr; grid-template-areas: "label" "value" "status"; }
  .open-status { justify-self: start; margin-top: .35rem; }
}
.map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: var(--paper-2); }
.map iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }
.link-dir { display: inline-flex; align-items: center; justify-content: center; gap: .35rem; min-height: 48px; font-weight: 700; color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.link-dir svg { width: 16px; height: 16px; }

/* ---------- CTA final ---------- */
.final__in { text-align: center; max-width: 760px; margin-inline: auto; }
.final__paw { margin: 0 auto 1.25rem; opacity: .9; width: 64px; }
.final .lead { margin-inline: auto; }

/* ---------- Rodapé ---------- */
.footer { background: #0A0A0B; color: #A1A1AA; font-size: .9rem; padding: 3rem 0 2rem; }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__logos { display: flex; align-items: center; flex-wrap: wrap; gap: 1.1rem; margin-bottom: 1.1rem; }
.footer__logos img { height: 44px; width: auto; }
.footer__logos .footer__guga { height: 54px; }
.footer__sep { width: 1px; align-self: stretch; background: rgba(255, 255, 255, .16); }
.footer__brand p { margin-bottom: 1rem; max-width: 380px; }
.footer__social { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer__social a { display: inline-flex; align-items: center; gap: .4rem; color: #E4E4E7; font-weight: 600; min-height: 44px; }
.footer__social svg { width: 18px; height: 18px; }
.footer__meta p { margin-bottom: 1rem; line-height: 1.6; }
.footer__meta b { color: #fff; }
.footer__meta a { color: #E4E4E7; text-decoration: underline; text-underline-offset: 3px; }
.footer .todo { background: rgba(254, 243, 199, .15); color: #FCD34D; }
.todo-link { color: #E4E4E7; text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .8rem; color: #71717A; }

/* ---------- Botão flutuante (pílula igual à do hero) ---------- */
.wa-float {
  position: fixed; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom)); z-index: 90;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, .65), 0 2px 8px rgba(0, 0, 0, .18);
  opacity: 0; transform: translateY(24px); pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), background-color .2s;
}
@media (max-width: 559px) { .wa-float { left: 1rem; right: 1rem; } }
.wa-float.is-on { opacity: 1; transform: none; pointer-events: auto; }
.wa-float.is-on:hover { transform: translateY(-1px); }
.footer { padding-bottom: calc(2rem + 76px + env(safe-area-inset-bottom)); }

/* ---------- Motion ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, .55); } 70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); } 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); } }
@keyframes pulse-red { 0% { box-shadow: 0 0 0 0 rgba(229, 31, 31, .5); } 70% { box-shadow: 0 0 0 8px rgba(229, 31, 31, 0); } 100% { box-shadow: 0 0 0 0 rgba(229, 31, 31, 0); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .status__dot, .eyebrow__dot { animation: none; }
  .btn, .svc, .chip, .wa-float { transition: none; }
  .svc:hover, .btn--wa:hover { transform: none; }
}
