/* ══════════════════════════════════════════════════════════════════
   GARAGEM DO FERRO — Serralheria em São Paulo
   Paleta: Grafite #1E2225 · Amarelo #FBAE43 · Verde WhatsApp #25D366
   ══════════════════════════════════════════════════════════════════ */

:root {
  --c-dark: #1e2225;
  --c-dark-2: #22252a;
  --c-dark-3: #2a2e33;
  --c-yellow: #fbae43;
  --c-yellow-2: #ff9f1c;
  --c-green: #25d366;
  --c-green-2: #1eb959;
  --c-green-dark: #128c46;
  --c-ink: #212529;
  --c-ink-soft: #4b5157;
  --c-muted: #6c757d;
  --c-soft: #f4f5f7;
  --c-line: #e6e8ec;
  --c-white: #ffffff;

  --f-head: "Montserrat", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(20, 24, 27, 0.06);
  --shadow-md: 0 14px 34px -18px rgba(20, 24, 27, 0.28);
  --shadow-lg: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
  --container: 1160px;
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
svg { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -0.18em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
svg.wa-icon { fill: #fff; stroke: none; }
svg.wa-icon path { fill: #fff; stroke: none; }
svg text { fill: currentColor; stroke: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-yellow);
  color: #111;
  font-weight: 700;
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ── Tipografia ─────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--f-head);
  line-height: 1.18;
  font-weight: 800;
  color: var(--c-dark);
}
.hl { color: var(--c-yellow); }
.hl--yellow { color: var(--c-yellow-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}
.eyebrow--yellow { color: var(--c-yellow); }
.eyebrow--dark { color: var(--c-yellow-2); }

.section { padding: 54px 0; }
.section--soft { background: var(--c-soft); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.section__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.section__sub { color: var(--c-ink-soft); font-size: 0.95rem; }

/* ── Botões ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.3em; height: 1.3em; flex: none; }
.btn .wa-icon { width: 1.35em; height: 1.35em; }
.btn:hover { transform: translateY(-2px); }

.btn--sm { padding: 11px 20px; font-size: 0.92rem; }
.btn--lg { padding: 19px 36px; font-size: 1.08rem; }

.btn--wa {
  background: linear-gradient(180deg, #2ddb71, var(--c-green));
  border-color: var(--c-green);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(37, 211, 102, 0.75);
}
.btn--wa:hover { background: linear-gradient(180deg, var(--c-green), var(--c-green-2)); box-shadow: 0 16px 30px -10px rgba(37, 211, 102, 0.85); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost:hover { border-color: var(--c-yellow); color: var(--c-yellow); background: rgba(251, 174, 67, 0.08); }

.btn--outline {
  background: #fff;
  border-color: var(--c-dark);
  color: var(--c-dark);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { border-color: var(--c-green-2); color: var(--c-green-dark); }

/* ── Topbar ─────────────────────────────────────────────────────── */
.topbar {
  background: var(--c-dark);
  color: #cfd4d9;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { color: var(--c-yellow); width: 1em; height: 1em; }
.topbar__link { color: #fff; font-weight: 600; }
.topbar__link:hover { color: var(--c-yellow); }

/* ── Header ─────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow 0.2s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand__logo {
  height: 50px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 0 0 1px rgba(20, 24, 27, 0.06);
}
.brand--footer .brand__logo {
  height: 62px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 10px 24px -14px rgba(0, 0, 0, 0.6);
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.brand__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--c-dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__name em { font-style: normal; color: var(--c-yellow-2); font-weight: 900; }
.brand__tag {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  white-space: nowrap;
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name em { color: var(--c-yellow); }
.brand--footer .brand__tag { color: #8b9299; }
.brand--footer .brand__text { margin-top: 6px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--c-ink-soft);
  padding: 9px 13px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a:hover { color: var(--c-dark); background: var(--c-soft); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  background: var(--c-dark);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: radial-gradient(1100px 520px at 85% -10%, #2c3136 0%, transparent 55%),
    linear-gradient(180deg, var(--c-dark) 0%, #171a1d 100%);
  color: #e7eaee;
  padding: 44px 0 62px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(900px 500px at 20% 20%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(900px 500px at 20% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(30px, 4.5vw, 58px);
}

.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e7eaee;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__chip svg { width: 14px; height: 14px; color: var(--c-yellow); flex: none; }
.hero__chip--alt { border-color: rgba(251, 174, 67, 0.4); background: rgba(251, 174, 67, 0.08); }
.hero__chip--alt svg { color: var(--c-yellow-2); }
.hero__chip svg path, .hero__chip--alt svg path { stroke: currentColor; }

.hero__title {
  color: #fff;
  font-size: clamp(1.9rem, 4.1vw, 3.05rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hero__sub {
  font-size: 1.04rem;
  color: #c3c9cf;
  max-width: 60ch;
  margin-bottom: 22px;
}
.hero__sub strong { color: #fff; font-weight: 700; }
.hero__cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: clamp(18px, 3vw, 38px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric__value {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.15;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.metric__value svg { width: 0.8em; height: 0.8em; color: var(--c-yellow); }
.metric__value svg path { stroke: none; fill: var(--c-yellow); }
.metric__label { font-size: 0.76rem; color: #98a0a7; letter-spacing: 0.04em; }

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__media-glow {
  position: absolute;
  inset: 8% 2%;
  background: radial-gradient(circle at 50% 45%, rgba(251, 174, 67, 0.18), transparent 65%);
  filter: blur(20px);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__frame {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.6);
  background:
    radial-gradient(140% 120% at 50% 0%, rgba(251, 174, 67, 0.1), transparent 55%),
    linear-gradient(160deg, #2c3237 0%, #1a1e21 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero__badge {
  position: absolute;
  left: -14px;
  bottom: -20px;
  background: #fff;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 13px;
  box-shadow: var(--shadow-md);
  max-width: 250px;
}
.hero__badge svg { width: 30px; height: 30px; color: var(--c-yellow-2); flex: none; }
.hero__badge svg path { fill: var(--c-yellow-2); stroke: none; }
.hero__badge strong { display: block; font-family: var(--f-head); font-size: 0.9rem; line-height: 1.2; }
.hero__badge span { font-size: 0.74rem; color: var(--c-muted); line-height: 1.3; }

/* ── Trustbar ───────────────────────────────────────────────────── */
.trustbar { background: var(--c-dark-2); border-top: 1px solid rgba(255,255,255,0.06); }
.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 11px 22px;
  text-align: center;
}
.trustbar__rating { position: relative; display: inline-flex; }
.trustbar__stars { display: inline-flex; gap: 3px; }
.trustbar__stars svg { width: 20px; height: 20px; flex: none; }
.trustbar__stars svg path { stroke: none; fill: #3d444b; }
.trustbar__stars--fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 94%;
}
.trustbar__stars--fill svg path { fill: var(--c-yellow); }
.trustbar__text { color: #c3c9cf; font-size: 0.94rem; }
.trustbar__text strong { color: var(--c-yellow); font-weight: 800; }
.trustbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border-bottom: 2px solid var(--c-green-2);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.trustbar__link:hover { color: var(--c-green); }
.trustbar__link svg { width: 1em; height: 1em; }

/* ── Grids / cards ──────────────────────────────────────────────── */
.grid { display: grid; gap: 16px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--reviews { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #dfe2e6; }

.card--service {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  row-gap: 8px;
  align-items: start;
}
.card--service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-yellow-2), var(--c-yellow));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.card--service:hover::after { opacity: 1; }

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 159, 28, 0.12);
  color: var(--c-yellow-2);
  margin-bottom: 0;
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon svg path { stroke-width: 1.8; }
.card--service .card__icon { grid-column: 1; grid-row: 1 / span 3; align-self: start; }
.card--service h3 { grid-column: 2; grid-row: 1; font-size: 1.12rem; margin: 2px 0 0; }
.card--service p { grid-column: 2; grid-row: 2; color: var(--c-ink-soft); font-size: 0.93rem; }
.card--service .card__cta { grid-column: 2; grid-row: 3; margin-top: 2px; justify-self: start; }

.card p { color: var(--c-ink-soft); font-size: 0.93rem; }
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-green-dark);
}
.card__cta svg { width: 1em; height: 1em; transition: transform 0.18s ease; }
.card__cta:hover { color: var(--c-green-dark); }
.card:hover .card__cta svg { transform: translateX(4px); }

/* ── Galeria ────────────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background: var(--c-dark-3);
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(15, 17, 19, 0.9));
  color: #fff;
}
.gallery__item figcaption strong {
  font-family: var(--f-head);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  display: block;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.gallery__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--c-ink-soft);
  font-size: 1.02rem;
}
.gallery__note svg { color: var(--c-yellow-2); width: 1.2em; height: 1.2em; }
.gallery__note svg path { fill: none; }
.gallery__note a { color: var(--c-green-dark); font-weight: 700; border-bottom: 2px solid var(--c-green-2); }
.gallery__note a:hover { color: var(--c-green-dark); }

/* ── Depoimentos ────────────────────────────────────────────────── */
.review {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review__top { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--c-dark-2), var(--c-dark-3));
  color: var(--c-yellow);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.9rem;
}
.review h3 { font-size: 1rem; line-height: 1.2; }
.review__stars { display: inline-flex; gap: 2px; margin-top: 2px; }
.review__stars svg { width: 14px; height: 14px; }
.review__stars svg path { stroke: none; fill: var(--c-yellow-2); }
.review__g { margin-left: auto; }
.review__g svg { width: 28px; height: 28px; opacity: 0.9; }
.review__g svg path, .footer__reviews > svg path { stroke: none; }
.review > p { color: var(--c-ink-soft); font-size: 0.93rem; }

/* ── Diferenciais ───────────────────────────────────────────────── */
.diff {
  position: relative;
  background: radial-gradient(1000px 500px at 15% 0%, #2c3136 0%, transparent 55%),
    linear-gradient(180deg, #171a1d 0%, var(--c-dark) 100%);
  color: #d6dadd;
}
.diff .section__title { color: #fff; }
.diff .section__sub { color: #b4bac1; }
.grid--diff { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.diff__card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: left;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 13px;
  row-gap: 6px;
  align-items: start;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.diff__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 174, 67, 0.5);
}
.diff__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(251, 174, 67, 0.14);
  color: var(--c-yellow);
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}
.diff__icon svg { width: 24px; height: 24px; }
.diff__card h3 { grid-column: 2; grid-row: 1; color: #fff; font-size: 1rem; margin-bottom: 0; }
.diff__card p { grid-column: 2; grid-row: 2; font-size: 0.88rem; color: #b4bac1; }

.diff__cta {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(251, 174, 67, 0.45);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.diff__cta p { font-size: 1.02rem; color: #fff; }
.diff__cta p strong { color: var(--c-yellow); }

/* ── Atendimento ────────────────────────────────────────────────── */
.atend__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; align-items: stretch; }
.atend__col { display: flex; flex-direction: column; gap: 14px; }
.info-block {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  transition: box-shadow 0.2s ease;
}
.info-block:hover { box-shadow: var(--shadow-sm); }
.info-block__icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 159, 28, 0.13);
  color: var(--c-yellow-2);
}
.info-block__icon svg { width: 23px; height: 23px; }
.info-block__icon--wa { background: rgba(37, 211, 102, 0.14); color: var(--c-green-dark); }
.info-block h3 { font-size: 1.02rem; margin-bottom: 5px; }
.info-block p { color: var(--c-ink-soft); font-size: 0.93rem; }
.info-block__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.9rem;
}
.info-block__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--c-green-dark);
  font-size: 0.94rem;
}
.info-block__link svg { width: 1em; height: 1em; transition: transform 0.18s ease; }
.info-block__link:hover svg { transform: translateX(4px); }
.info-block .btn { margin-top: 10px; }

.atend__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 100%;
  border: 1px solid var(--c-line);
}
.atend__map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq__item.is-open { box-shadow: var(--shadow-sm); border-color: #dfe2e6; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--c-dark);
  text-align: left;
  transition: color 0.15s ease;
}
.faq__q:hover { color: var(--c-yellow-2); }
.faq__q svg { width: 19px; height: 19px; flex: none; color: var(--c-yellow-2); transition: transform 0.25s ease; }
.faq__q svg path { stroke-width: 2.2; }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p {
  padding: 0 20px 18px;
  color: var(--c-ink-soft);
  font-size: 0.93rem;
  max-width: 66ch;
}

/* ── CTA final ──────────────────────────────────────────────────── */
.cta-final {
  position: relative;
  background: radial-gradient(900px 460px at 50% -20%, rgba(251, 174, 67, 0.16), transparent 60%),
    linear-gradient(180deg, var(--c-dark) 0%, #14171a 100%);
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 75%);
}
.cta-final__inner { position: relative; }
.cta-final__title { color: #fff; font-size: clamp(1.75rem, 3.8vw, 2.6rem); margin-bottom: 12px; }
.cta-final__sub { color: #c3c9cf; font-size: 1.05rem; max-width: 640px; margin: 0 auto 26px; }
.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-final__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9aa1a8;
  font-size: 0.92rem;
}
.cta-final__note svg { color: var(--c-green); }
.cta-final__note svg path { stroke-width: 2.4; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer { background: #101214; color: #aab0b6; font-size: 0.93rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 36px;
  padding: 36px 22px 32px;
}
.footer__brand > p { margin: 16px 0; color: #9aa1a8; font-size: 0.92rem; max-width: 40ch; }
.footer__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__reviews > svg { width: 24px; height: 24px; }
.footer__reviews a { font-weight: 600; color: var(--c-yellow); border-bottom: 1px solid rgba(251, 174, 67, 0.4); }
.footer__reviews a:hover { color: #fff; }
.footer__col h3 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col a:hover { color: var(--c-yellow); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 1.05em; height: 1.05em; color: var(--c-yellow); margin-top: 3px; flex: none; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 16px 0; }
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #7c838a;
}
.footer__made { color: #5d646b; }
.footer__made a { color: var(--c-yellow); font-weight: 600; border-bottom: 1px solid rgba(251, 174, 67, 0.4); }
.footer__made a:hover { color: #fff; }

/* ── Botão flutuante ────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  z-index: 1100;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2ddb71, var(--c-green));
  color: #fff;
  box-shadow: 0 14px 28px -8px rgba(37, 211, 102, 0.65);
  transition: transform 0.2s ease;
}
.wa-float svg { width: 34px; height: 34px; fill: #fff; stroke: none; }
.wa-float svg path { fill: #fff; stroke: none; }
.wa-float:hover { transform: scale(1.08); }

/* ── Lightbox ───────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10, 12, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox__close:hover { background: var(--c-yellow-2); color: #111; }
.lightbox__caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #dfe3e7;
  background: rgba(30, 34, 37, 0.85);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  max-width: 82vw;
  text-align: center;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.15s ease;
}
.lightbox__nav svg { width: 26px; height: 26px; }
.lightbox__nav svg path { stroke: #fff; stroke-width: 2.4; }
.lightbox__nav:hover { background: var(--c-yellow-2); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__count {
  position: absolute;
  top: 26px;
  left: 24px;
  color: #cfd4d9;
  font-family: var(--f-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* ── Animação de revelação ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ── Responsivo ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .grid--diff { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .atend__grid { grid-template-columns: 1fr; }
  .atend__map iframe { min-height: 340px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Foto do hero fica ao lado do texto até 960px (referência MGL) */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 34px; }
  .hero__frame { width: min(560px, 100%); margin: 0 auto; }
  .hero__badge { right: auto; left: 50%; transform: translateX(-50%); bottom: -16px; }
  .hero__metrics { grid-template-columns: repeat(2, 1fr); justify-content: start; gap: 18px; }
}

@media (max-width: 720px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .topbar__item--hide { display: none; }
  .nav {
    position: fixed;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 22px 20px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 880;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--c-soft); border-radius: 0; }
  .nav-toggle { display: flex; }
}

@media (max-width: 620px) {
  .section { padding: 38px 0; }
  .grid--services, .grid--reviews, .grid--diff { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; padding-top: 30px; }
  .hero { padding: 28px 0 42px; }
  .hero__inner { gap: 20px; }
  .hero__frame { border-radius: 16px; }
  .hero__badge { bottom: -14px; }
  .hero__metrics { gap: 14px; padding-top: 16px; }
  .metric__value { font-size: 1.2rem; }
  .header__actions .btn { display: none; }
  .cta-final__actions .btn { width: 100%; }
  .diff__cta { padding: 16px; text-align: center; justify-content: center; }
  .footer__bottom .container { justify-content: center; text-align: center; }
  .topbar { display: none; }
  .wa-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .gallery__grid { grid-template-columns: 1fr; }
}
