/* ==========================================================================
   LF Automotive — estilos
   Tokens derivados de DESIGN-MD-LF-AUTOMOTIVE.md
   ========================================================================== */

@property --zoom {
  syntax: "<number>";
  inherits: true;
  initial-value: 1;
}

:root {
  /* Superfícies */
  --color-surface-base: #070708;
  --color-surface-alt: #0e0f11;
  --color-surface-raised: #16171a;
  --color-surface-light: #f2f2f2;
  --color-surface-white: #ffffff;

  /* Texto */
  --color-text-primary: #f2f2f2;
  --color-text-muted: #a7afb9;
  --color-text-ink: #0b0b0c;
  --color-text-tertiary: #5e6c7b;

  /* Marca */
  --color-brand: #fb312d;        /* destaques e texto sobre fundo escuro */
  --color-brand-strong: #e0201c; /* fundo de botão com texto branco (AA) */
  --color-brand-deep: #b5130f;   /* hover e texto vermelho sobre fundo claro */
  --color-steel: #808080;
  --color-error: #c0140f;
  --color-success: #1f9d57;
  --color-whatsapp: #1faa55;

  /* Bordas */
  --color-border: rgba(255, 255, 255, .09);
  --color-border-strong: rgba(255, 255, 255, .2);
  --color-border-ink: rgba(11, 11, 12, .1);

  /* Tipografia */
  --font-family-primary: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-size-xs: .625rem;
  --font-size-sm: .86rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5625rem;
  --font-size-3xl: 1.875rem;
  --font-size-display: clamp(2.05rem, 3.4vw + .75rem, 3.95rem);
  --font-size-h2: clamp(2rem, 3.2vw + .8rem, 3.5rem);

  /* Espaço, raio, movimento */
  --space-1: 8px;
  --space-2: 12px;
  --radius-xs: 11px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --motion-duration-instant: 100ms;
  --motion-duration-fast: 220ms;
  --motion-duration-base: 450ms;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.77, 0, .18, 1);
  --skew: -12deg;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --header-h: 76px;
  --section-y: clamp(4.5rem, 9vw, 8rem);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 8px);
  interpolate-size: allow-keywords;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-text-primary);
  background: var(--color-surface-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

@media (min-width: 960px) {
  body { font-size: var(--font-size-lg); }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, p, ul, ol, figure, blockquote, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
em { font-style: inherit; }
address { font-style: normal; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--color-brand-strong); color: #fff; }

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

.skip-link {
  position: fixed;
  left: 16px; top: -100px;
  z-index: 1000;
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-xs);
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Tipografia compartilhada ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.slashes { display: inline-flex; gap: 3px; flex: none; }
.slashes i {
  display: block;
  width: 5px; height: 14px;
  background: currentColor;
  transform: skewX(var(--skew));
}
.slashes i:nth-child(2) { opacity: .7; }
.slashes i:nth-child(3) { opacity: .4; }

.h2 {
  font-size: var(--font-size-h2);
  font-weight: 800;
  font-style: italic;
  line-height: 1.04;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.h2 em { color: var(--color-brand); }

.lead {
  max-width: 56ch;
  font-size: clamp(1.05rem, .35vw + 1rem, 1.2rem);
  color: var(--color-text-muted);
  text-wrap: pretty;
}

.section { position: relative; padding-block: var(--section-y); }

.section--light { background: var(--color-surface-light); color: var(--color-text-ink); }
.section--light .eyebrow { color: var(--color-brand-deep); }
.section--light .h2 em { color: var(--color-brand-strong); }
.section--light .lead { color: var(--color-text-tertiary); }

.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { margin-top: 1.25rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--color-brand-strong);
  --btn-bg-hover: var(--color-brand-deep);
  --btn-fg: #fff;
  --btn-border: transparent;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 54px;
  padding: 0 1.75rem;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--btn-fg);
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--motion-duration-instant) ease, color var(--motion-duration-fast);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 6px;
  border: 1.5px solid var(--btn-border);
  background-color: var(--btn-bg);
  background-image: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .28) 50%, transparent 62%);
  background-size: 260% 100%;
  background-repeat: no-repeat;
  background-position: 160% 0;
  transform: skewX(var(--skew));
  transition: background-color var(--motion-duration-fast), background-position .8s var(--ease-out), border-color var(--motion-duration-fast), box-shadow var(--motion-duration-fast);
}

.btn .icon { transition: transform var(--motion-duration-fast) var(--ease-out); }

.btn:hover::before {
  background-color: var(--btn-bg-hover);
  background-position: -60% 0;
  box-shadow: 0 14px 34px -14px rgba(224, 32, 28, .75);
}
.btn:hover .icon:last-child { transform: translateX(4px); }
.btn:active { transform: scale(.97); }

.btn:focus-visible { outline: none; }
.btn:focus-visible::before {
  box-shadow: 0 0 0 3px var(--color-surface-base), 0 0 0 5px #fff;
}

.btn:disabled,
.btn[aria-disabled="true"] { cursor: not-allowed; opacity: .6; }
.btn:disabled::before { box-shadow: none; }

.btn--sm { min-height: 44px; padding: 0 1.2rem; font-size: .8rem; }
.btn--block { width: 100%; }

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, .02);
  --btn-bg-hover: rgba(255, 255, 255, .08);
  --btn-border: var(--color-border-strong);
}
.btn--ghost:hover::before { border-color: var(--color-brand); box-shadow: none; }

.btn--dark {
  --btn-bg: var(--color-text-ink);
  --btn-bg-hover: var(--color-brand-strong);
}
.section--light .btn:focus-visible::before {
  box-shadow: 0 0 0 3px var(--color-surface-light), 0 0 0 5px var(--color-text-ink);
}

.btn__spinner {
  display: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.btn.is-loading { pointer-events: none; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading .icon { display: none; }

.icon-btn {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background var(--motion-duration-fast), border-color var(--motion-duration-fast), transform var(--motion-duration-instant);
}
.icon-btn:hover:not(:disabled) { background: var(--color-brand-strong); border-color: var(--color-brand-strong); }
.icon-btn:active:not(:disabled) { transform: scale(.93); }
.icon-btn:disabled { opacity: .3; cursor: not-allowed; }
.icon-btn:focus-visible { border-radius: 50%; }

.link-btn {
  margin-top: 1rem;
  padding: .5rem;
  background: none;
  border: 0;
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-text-tertiary);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.link-btn:hover { color: var(--color-text-ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: transform .9s var(--ease-out) .1s;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 8, .9);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transition: opacity var(--motion-duration-fast);
}
.site-header.is-scrolled::before { opacity: 1; }

.js .site-header { transform: translateY(-110%); }
.js.is-loaded .site-header { transform: none; }

.header__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  line-height: 0;
  color: #fff;
  border-radius: 6px;
}
.brand__logo { width: 88px; height: auto; aspect-ratio: 182 / 120; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.6rem; }
.nav__list a {
  position: relative;
  display: block;
  padding-block: .5rem;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text-primary);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0) skewX(var(--skew));
  transform-origin: right;
  transition: transform var(--motion-duration-fast) var(--ease-out);
}
.nav__list a:hover::after,
.nav__list a:focus-visible::after { transform: scaleX(1) skewX(var(--skew)); transform-origin: left; }
.nav__extra { display: none; }

.scroll-progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand-deep), var(--color-brand));
  transform: scaleX(0);
  transform-origin: left;
}

.menu-toggle { display: none; }

@media (max-width: 1100px) {
  .nav__list { gap: 1.1rem; }
}

@media (max-width: 960px) {
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    background: rgba(7, 7, 8, .4);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-xs);
    cursor: pointer;
  }
  .menu-toggle__bars,
  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    display: block;
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .35s var(--ease-out), background .2s;
  }
  .menu-toggle__bars { position: relative; }
  .menu-toggle__bars::before,
  .menu-toggle__bars::after { content: ""; position: absolute; left: 0; }
  .menu-toggle__bars::before { top: -6px; }
  .menu-toggle__bars::after { top: 6px; }
  .menu-open .menu-toggle__bars { background: transparent; }
  .menu-open .menu-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.25rem;
    padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2.5rem;
    background:
      repeating-linear-gradient(115deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 26px),
      radial-gradient(80% 60% at 100% 100%, rgba(251, 49, 45, .22), transparent 60%),
      var(--color-surface-base);
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s ease, visibility 0s linear .35s;
  }
  .menu-open .nav { visibility: visible; opacity: 1; transition: opacity .35s ease; }
  .menu-open, .menu-open body { overflow: hidden; }

  .nav__list { flex-direction: column; gap: .15rem; }
  .nav__list a {
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: -.02em;
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  }
  .menu-open .nav__list a {
    opacity: 1;
    transform: none;
    transition-delay: calc(var(--i, 0) * 50ms + 80ms);
  }
  .nav__list li:nth-child(1) a { --i: 0; }
  .nav__list li:nth-child(2) a { --i: 1; }
  .nav__list li:nth-child(3) a { --i: 2; }
  .nav__list li:nth-child(4) a { --i: 3; }
  .nav__list li:nth-child(5) a { --i: 4; }
  .nav__list li:nth-child(6) a { --i: 5; }
  .nav__list a::after { bottom: .2rem; height: 3px; }

  .nav__cta { min-height: 54px; font-size: .9rem; }
  .nav__extra {
    display: grid;
    gap: .5rem;
    font-size: .9rem;
    color: var(--color-text-muted);
  }
  .nav__extra p { display: flex; align-items: center; gap: .6rem; }
  .nav__extra .icon { color: var(--color-brand); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: max(100svh, 760px);
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  background:
    radial-gradient(55% 65% at 82% 42%, rgba(251, 49, 45, .17), transparent 62%),
    radial-gradient(40% 50% at 0% 100%, rgba(251, 49, 45, .08), transparent 70%),
    var(--color-surface-base);
}

.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero__floor {
  position: absolute;
  left: -50%; right: -50%; bottom: -8%;
  height: 58%;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 90px 90px;
  transform: perspective(520px) rotateX(64deg);
  transform-origin: 50% 100%;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 85%);
  mask-image: linear-gradient(to top, #000 0%, transparent 85%);
  opacity: .55;
  animation: floor-move 2.4s linear infinite;
}

.hero__trails span {
  position: absolute;
  left: 0;
  top: var(--y);
  width: clamp(120px, 26vw, 420px);
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(251, 49, 45, .85) 75%, #ff8a86);
  border-radius: 2px;
  opacity: 0;
  transform: translateX(-110%);
  animation: trail var(--t, 3.5s) cubic-bezier(.5, 0, .7, 1) var(--d, 0s) infinite;
}
.hero__trails span.is-white {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55) 80%, #fff);
}

.hero__word {
  position: absolute;
  left: 0;
  bottom: -.12em;
  font-size: clamp(7rem, 21vw, 22rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
  transform: translate3d(calc(var(--sx, 0) * -0.35px), 0, 0);
  will-change: transform;
}

.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero__title {
  margin-bottom: 1.5rem;
  font-size: var(--font-size-display);
  font-weight: 900;
  font-style: italic;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero__title em { color: var(--color-brand); }
.hero__title .line {
  display: block;
  overflow: hidden;
  padding: 0 .14em .1em 0;
  margin-bottom: -.1em;
}
.hero__title .line > span { display: inline-block; }

.js .hero__title .line > span {
  transform: translate3d(0, 112%, 0) skewY(7deg);
  transform-origin: left bottom;
  transition: transform 1.1s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms + 150ms);
}
.js.is-loaded .hero__title .line > span { transform: none; }

.js [data-intro] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 1ms);
}
.js.is-loaded [data-intro] { opacity: 1; transform: none; }

.hero__lead {
  max-width: 48ch;
  margin-bottom: 1.5rem;
  font-size: clamp(1.05rem, .45vw + .95rem, 1.22rem);
  color: var(--color-text-muted);
}
.hero__lead strong { color: #fff; font-weight: 700; }

.hero__checks {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: .7rem 1.75rem;
  margin-bottom: 2.25rem;
  font-size: .95rem;
  font-weight: 600;
}
.hero__checks li { display: flex; align-items: center; gap: .65rem; }

.check {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  flex: none;
  color: #fff;
  background: var(--color-brand-strong);
  border-radius: 4px;
  transform: skewX(var(--skew));
}
.check svg { width: 14px; height: 14px; transform: skewX(12deg); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem 1.25rem; }

/* Visual */
.hero__visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 540px;
}
.parallax-inner { transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }
.hero__frame { position: relative; padding: 0 0 2.5rem; }

.hero__shape {
  position: absolute;
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  pointer-events: none;
}
.hero__shape--red {
  inset: 7% -5% calc(2.5rem - 5%) 9%;
  background: linear-gradient(140deg, var(--color-brand-strong), var(--color-brand-deep) 70%);
}
.hero__shape--line {
  top: -4%; left: -7%;
  width: 101%; height: calc(100% - 2.5rem);
  clip-path: none;
  overflow: visible;
  fill: none;
  stroke: rgba(255, 255, 255, .22);
  stroke-width: 1;
}

.js .hero__shape { opacity: 0; transform: translate3d(-40px, 0, 0); transition: opacity 1s ease .7s, transform 1.2s var(--ease-out) .7s; }
.js.is-loaded .hero__shape { opacity: 1; transform: none; }

.hero__stage {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111214;
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
}
.js .hero__stage { clip-path: polygon(16% 0, 16% 0, 0 100%, 0 100%); }
.js.is-loaded .hero__stage {
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  transition: clip-path 1.3s var(--ease-in-out) .3s;
}

.hero__slide {
  position: absolute;
  inset: 0;
  clip-path: polygon(120% 0, 145% 0, 125% 100%, 100% 100%);
}
.hero__slide.is-active {
  z-index: 2;
  clip-path: polygon(-30% 0, 145% 0, 125% 100%, -50% 100%);
  transition: clip-path 1.1s var(--ease-in-out);
}
.hero__slide.is-prev {
  z-index: 1;
  clip-path: polygon(-30% 0, 145% 0, 125% 100%, -50% 100%);
}
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.14);
  transition: transform 0s linear 1.2s;
}
.is-loaded .hero__slide.is-active img {
  transform: scale(1);
  transition: transform 7.5s cubic-bezier(.2, .6, .3, 1);
}
html:not(.js) .hero__slide img { transform: none; }

.hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 7, 8, .55));
  pointer-events: none;
}

.hero__tag {
  position: absolute;
  left: -6%;
  bottom: 18%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
  background: rgba(7, 7, 8, .8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .8);
}
.hero__tag b {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.hero__tag-dot {
  position: relative;
  width: 10px; height: 10px;
  flex: none;
  border-radius: 50%;
  background: var(--color-brand);
}
.hero__tag-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-brand);
  animation: ping 2s var(--ease-out) infinite;
}

.hero__dots {
  position: absolute;
  right: 14%;
  bottom: 0;
  z-index: 4;
  display: flex;
  gap: .4rem;
}
.hero__dot {
  display: grid;
  align-items: center;
  width: 46px; height: 28px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.hero__dot span {
  position: relative;
  display: block;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .22);
  transform: skewX(var(--skew));
  transition: background var(--motion-duration-fast);
}
.hero__dot:hover span { background: rgba(255, 255, 255, .45); }
.hero__dot span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-brand);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}
.hero__dot.is-active span::after { transform: scaleX(var(--p, 1)); }

/* Pilares */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(255, 255, 255, .03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pillar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.3;
}
.pillar + .pillar { border-left: 1px solid var(--color-border); }
.pillar small {
  display: block;
  margin-top: .15rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.pillar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-duration-base) var(--ease-out);
}
.pillar:hover::after { transform: scaleX(1); }
.pillar__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  color: var(--color-brand);
  background: rgba(251, 49, 45, .12);
  border-radius: var(--radius-xs);
}

/* ---------- Ticker ---------- */
.ticker {
  position: relative;
  z-index: 2;
  padding-block: 2.75rem;
  overflow: hidden;
  background: var(--color-surface-base);
}
.ticker__band {
  position: relative;
  margin-inline: -6vw;
  overflow: hidden;
}
.ticker__band--red {
  z-index: 2;
  background: var(--color-brand-strong);
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px -10px rgba(224, 32, 28, .35);
}
.ticker__band--dark {
  z-index: 1;
  margin-top: .6rem;
  background: var(--color-surface-raised);
  border-block: 1px solid var(--color-border);
  transform: rotate(-.6deg);
}
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.ticker__track--reverse { animation-direction: reverse; animation-duration: 46s; }
.ticker__item {
  padding: 1rem 1.6rem;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__band--red .ticker__item { color: #fff; }
.ticker__band--red .slashes { color: var(--color-text-ink); }
.ticker__band--dark .ticker__item {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .5);
}
.ticker__band--dark .slashes { color: var(--color-brand); }
.ticker .slashes i { width: 6px; height: 16px; }

/* ---------- Problemas ---------- */
.problems { background: var(--color-surface-base); }
.problems::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 26px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
  pointer-events: none;
}
.problems__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.problems__head { position: sticky; top: calc(var(--header-h) + 2.5rem); }
.problems__head .lead { margin-block: 1.25rem 2.25rem; }
.problems__list { display: grid; gap: 1rem; }

.problem {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.6rem 1.5rem 1.6rem 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--motion-duration-base) var(--ease-out), border-color var(--motion-duration-fast), background var(--motion-duration-fast);
}
.problem::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--color-brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--motion-duration-base) var(--ease-out);
}
.problem:hover { transform: translateX(10px); border-color: rgba(251, 49, 45, .4); }
.problem:hover::before { transform: scaleY(1); }
.problem h3 { margin-bottom: .35rem; font-size: 1.15rem; font-weight: 800; }
.problem p { font-size: 1rem; color: var(--color-text-muted); }
.problem__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  color: var(--color-brand);
  background: rgba(251, 49, 45, .12);
  border-radius: var(--radius-xs);
  transition: background var(--motion-duration-fast), color var(--motion-duration-fast), transform var(--motion-duration-base) var(--ease-out);
}
.problem:hover .problem__icon { color: #fff; background: var(--color-brand-strong); transform: rotate(90deg); }
.problem__num {
  font-size: 2.6rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
}

/* ---------- Solução ---------- */
.solution { overflow: hidden; }
.solution__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.solution__media {
  position: relative;
  isolation: isolate;
  padding: 0 14% 16% 6%;
}
.solution__deco {
  position: absolute;
  left: -2%; top: 6%;
  z-index: -1;
  display: flex;
  gap: 16px;
  height: 72%;
}
.solution__deco i {
  display: block;
  width: 30px;
  height: 100%;
  background: var(--color-brand-strong);
  transform: skewX(var(--skew));
}
.solution__deco i:nth-child(2) { opacity: .6; height: 84%; margin-top: 8%; }
.solution__deco i:nth-child(3) { opacity: .3; height: 68%; margin-top: 16%; }

.solution__main {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .45);
}
.solution__main img { width: 100%; height: 100%; object-fit: cover; }

.solution__inset-wrap {
  position: absolute;
  right: 0; bottom: 0;
  width: 44%;
}
.solution__inset {
  aspect-ratio: 3 / 4;
  border: 6px solid var(--color-surface-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
}
.solution__inset img { width: 100%; height: 100%; object-fit: cover; }

.spin-badge {
  position: absolute;
  left: -2%; bottom: 10%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(104px, 11vw, 132px);
  aspect-ratio: 1;
  color: #fff;
  background: var(--color-text-ink);
  border-radius: 50%;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, .5);
}
.spin-badge svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spin 18s linear infinite;
}
.spin-badge text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  fill: currentColor;
}
.spin-badge .slashes { color: var(--color-brand); }
.spin-badge .slashes i { width: 7px; height: 22px; }

.benefits { margin-block: 2rem 2.5rem; }
.benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--color-border-ink);
}
.benefit:last-child { border-bottom: 1px solid var(--color-border-ink); }
.benefit h3 { margin-bottom: .2rem; font-size: 1.08rem; font-weight: 800; }
.benefit p { font-size: .98rem; color: var(--color-text-tertiary); }
.benefit__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  color: var(--color-brand);
  background: var(--color-text-ink);
  border-radius: var(--radius-xs);
  transition: background var(--motion-duration-fast), color var(--motion-duration-fast), transform var(--motion-duration-base) var(--ease-out);
}
.benefit:hover .benefit__icon { color: #fff; background: var(--color-brand-strong); transform: rotate(-10deg) scale(1.05); }

/* ---------- Serviços ---------- */
.services { background: var(--color-surface-alt); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.services__grid > li { display: flex; }

.service {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: clamp(440px, 40vw, 540px);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: transform var(--motion-duration-base) var(--ease-out), border-color var(--motion-duration-fast);
}
.service__media { position: absolute; inset: 0; z-index: -3; }
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .6s;
  filter: saturate(.9);
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(7, 7, 8, .05) 20%, rgba(7, 7, 8, .72) 55%, rgba(7, 7, 8, .97) 100%);
}
.service::after {
  content: "";
  position: absolute;
  inset: -10% -70%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 44%, rgba(255, 255, 255, .16) 50%, transparent 56%);
  transform: translateX(-70%);
  transition: transform 1.1s var(--ease-out);
  pointer-events: none;
}
.service__body { padding: 1.5rem; }
.service__body::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.service__num {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--color-brand);
}
.service h3 {
  margin: .6rem 0;
  font-size: 1.45rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.service p { margin-bottom: 1.1rem; font-size: .95rem; color: #cdd2d8; }
.service__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.service__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.service__link .icon { color: var(--color-brand); transition: transform var(--motion-duration-fast) var(--ease-out); }
.service__link:focus-visible { outline: none; }

.service:hover,
.service:focus-within { transform: translateY(-6px); border-color: rgba(251, 49, 45, .45); }
.service:hover .service__media img { transform: scale(1.08); filter: saturate(1.05); }
.service:hover::after { transform: translateX(70%); }
.service:hover .service__body::before,
.service:focus-within .service__body::before { transform: scaleX(1); }
.service:hover .service__link .icon { transform: translateX(6px); }
.service:focus-within { outline: 2px solid var(--color-brand); outline-offset: 3px; }

/* ---------- Processo ---------- */
.process { background: var(--color-surface-base); overflow: hidden; }
.process::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: min(900px, 90vw);
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 0%, rgba(251, 49, 45, .12), transparent 70%);
  pointer-events: none;
}
.process__track { --progress: 0; position: relative; margin-top: clamp(1rem, 3vw, 2rem); }
.process__rail {
  position: absolute;
  left: 22px; right: 0; top: 21px;
  height: 2px;
  background: var(--color-border-strong);
}
.process__fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 49, 45, .15), var(--color-brand));
  transform: scaleX(var(--progress));
  transform-origin: left;
}
.process__car {
  position: absolute;
  top: 50%;
  left: calc(var(--progress) * 100%);
  z-index: 2;
  display: flex;
  gap: 3px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 10px rgba(251, 49, 45, .9));
  opacity: calc(var(--progress) * 20);
}
.process__car i {
  display: block;
  width: 6px; height: 20px;
  background: var(--color-brand);
  transform: skewX(var(--skew));
}
.process__car i:nth-child(1) { opacity: .4; }
.process__car i:nth-child(2) { opacity: .7; }

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.step { position: relative; padding-top: 4.5rem; }
.step::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  background: var(--color-surface-base);
  border: 2px solid var(--color-border-strong);
  border-radius: 50%;
  transition: border-color .4s, box-shadow .4s;
}
.step::after {
  content: "";
  position: absolute;
  left: 15px; top: 15px;
  width: 14px; height: 14px;
  background: var(--color-border-strong);
  border-radius: 50%;
  transition: background .4s, transform .4s var(--ease-out);
}
.step.is-active::before { border-color: var(--color-brand); box-shadow: 0 0 0 7px rgba(251, 49, 45, .12); }
.step.is-active::after { background: var(--color-brand); transform: scale(1.15); }
.step__num {
  display: block;
  margin-bottom: .75rem;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .22);
  transition: color .5s, -webkit-text-stroke-color .5s, transform .6s var(--ease-out);
}
.step.is-active .step__num { color: var(--color-brand); -webkit-text-stroke-color: var(--color-brand); transform: translateX(6px); }
.step h3 { margin-bottom: .5rem; font-size: 1.2rem; font-weight: 800; }
.step p { font-size: .98rem; color: var(--color-text-muted); }
.process__cta { display: flex; justify-content: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ---------- Galeria ---------- */
.gallery { background: var(--color-surface-alt); overflow: hidden; }
.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery__head .section-head { margin-bottom: 0; }
.gallery__controls { display: flex; gap: .75rem; }

.gallery__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
  padding-block: .5rem 1rem;
}
.gallery__viewport::-webkit-scrollbar { display: none; }
.gallery__viewport:focus-visible { outline-offset: -3px; border-radius: 0; }
.gallery__viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }

.gallery__track {
  --pad: max(var(--gutter), calc((100% - var(--container)) / 2));
  display: flex;
  gap: clamp(.75rem, 1.6vw, 1.25rem);
  width: max-content;
  padding-inline: var(--pad);
}
.gallery__item {
  flex: none;
  width: clamp(240px, 27vw, 380px);
  scroll-snap-align: center;
}
.gallery__item:nth-child(even) { margin-top: clamp(1.5rem, 4vw, 3.5rem); }
.gallery__item figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #151619;
  border-radius: var(--radius-sm);
}
.gallery__item img {
  position: absolute;
  top: 0; left: 0;
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translate3d(calc(-7.6% - var(--gx, 0) * 6%), 0, 0) scale(var(--zoom));
  transition: --zoom .7s var(--ease-out);
  user-select: none;
  -webkit-user-drag: none;
}
.gallery__item:hover { --zoom: 1.07; }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 3rem 1.1rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}
.gallery__item figcaption::before {
  content: "";
  width: 14px; height: 3px;
  flex: none;
  background: var(--color-brand);
  transform: skewX(var(--skew));
}
.gallery__progress {
  height: 2px;
  margin-top: 2rem;
  overflow: hidden;
  background: var(--color-border);
}
.gallery__progress span {
  display: block;
  height: 100%;
  background: var(--color-brand);
  transform: scaleX(var(--gp, .12));
  transform-origin: left;
}

/* ---------- Depoimentos ---------- */
.reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.reviews__head .section-head { margin-bottom: 0; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.1rem;
  color: var(--color-text-ink);
  text-decoration: none;
  background: var(--color-surface-white);
  border: 1px solid var(--color-border-ink);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 30px -18px rgba(0, 0, 0, .3);
  transition: transform var(--motion-duration-fast) var(--ease-out), box-shadow var(--motion-duration-fast);
}
.google-badge:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -18px rgba(0, 0, 0, .35); }
.google-badge strong { display: block; margin-top: .2rem; font-size: .85rem; }
.google-badge__score { font-size: 2rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.google-badge__logo { width: 30px; height: 30px; }
.google-badge__arrow { color: var(--color-brand-deep); }

.stars { display: flex; gap: 2px; color: #e39a00; }
.stars svg { width: 16px; height: 16px; }
.stars .is-off { color: #cfd2d6; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.reviews__grid > li { display: flex; }
.review {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  padding: 2rem;
  background: var(--color-surface-white);
  border: 1px solid var(--color-border-ink);
  border-radius: var(--radius-md);
  transition: transform var(--motion-duration-base) var(--ease-out), box-shadow var(--motion-duration-base);
}
.review::before {
  content: "\201C";
  position: absolute;
  right: 1.25rem; top: -.4rem;
  font-size: 6.5rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--color-brand-strong);
  opacity: .14;
}
.review:hover { transform: translateY(-8px) rotate(-.6deg); box-shadow: 0 34px 60px -30px rgba(0, 0, 0, .3); }
.review blockquote p { font-size: 1.03rem; line-height: 1.6; color: #2a2f35; }
.review__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.review.is-expanded .review__text { display: block; -webkit-line-clamp: unset; }
.review__more {
  align-self: flex-start;
  margin-top: -.6rem;
  padding: .25rem 0;
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-brand-deep);
  background: none;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.review__more:hover { color: var(--color-text-ink); }
.review figcaption {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-ink);
  line-height: 1.3;
}
.review small { display: block; font-size: .82rem; color: var(--color-text-tertiary); }
.avatar {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  background: var(--color-text-ink);
  border-radius: 50%;
}

/* ---------- Orçamento ---------- */
.quote { background: var(--color-surface-base); overflow: hidden; isolation: isolate; }
.quote__bg { position: absolute; inset: 0; z-index: -1; }
.quote__bg img {
  position: absolute;
  right: 0; top: 0;
  width: 60%; height: 100%;
  object-fit: cover;
  opacity: .22;
  filter: grayscale(.3);
}
.quote__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--color-surface-base) 40%, rgba(7, 7, 8, .55) 75%, rgba(7, 7, 8, .8)),
    linear-gradient(0deg, var(--color-surface-base), transparent 25%, transparent 75%, var(--color-surface-base));
}
.quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.quote__steps { display: grid; gap: 1rem; margin-top: 2.25rem; }
.quote__steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.quote__steps h3 { margin-bottom: .3rem; font-size: 1.1rem; font-weight: 800; }
.quote__steps p { font-size: .98rem; color: var(--color-text-muted); }
.quote__step-n {
  min-width: 1.4ch;
  font-size: 2.1rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--color-brand);
}
.quote__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  margin-top: 1.75rem;
  font-size: .95rem;
  color: var(--color-text-muted);
}
.quote__contact a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.quote__contact a:hover { color: var(--color-brand); }
.quote__contact .icon { color: var(--color-brand); }

.quote__card {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--color-text-ink);
  background: var(--color-surface-white);
  border-radius: var(--radius-md);
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .8);
}
.quote__card::before {
  content: "";
  position: absolute;
  left: clamp(1.5rem, 3.5vw, 2.5rem);
  top: -6px;
  width: 96px; height: 12px;
  background: var(--color-brand-strong);
  border-radius: 2px;
  transform: skewX(var(--skew));
}

.form__title {
  margin-bottom: .3rem;
  font-size: 1.55rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.form__subtitle { margin-bottom: 1.5rem; font-size: .9rem; color: var(--color-text-tertiary); }
.field--hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: #22262b;
}
.field label span { color: var(--color-brand-deep); }

.input {
  width: 100%;
  min-height: 52px;
  padding: .8rem 1rem;
  font-size: 1rem;
  color: var(--color-text-ink);
  background: #f5f5f6;
  border: 1.5px solid #d3d7dc;
  border-radius: var(--radius-xs);
  appearance: none;
  transition: border-color var(--motion-duration-instant), background var(--motion-duration-instant), box-shadow var(--motion-duration-fast);
}
.input::placeholder { color: #66707b; }
.input:hover { border-color: #a9b0b8; }
.input:focus,
.input:focus-visible {
  outline: none;
  background: #fff;
  border-color: var(--color-text-ink);
  box-shadow: 0 0 0 4px rgba(224, 32, 28, .2);
}
.input:disabled { opacity: .6; cursor: not-allowed; }
.input--select {
  padding-right: 2.75rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b0b0c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
}
.field.is-error .input { border-color: var(--color-error); background-color: #fff6f6; }
.field.is-error .input:focus { box-shadow: 0 0 0 4px rgba(192, 20, 15, .18); }
.field__error {
  margin-top: .4rem;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-error);
}
.field__error::before { content: "! "; font-weight: 800; }

.form .btn--block { margin-top: 1.5rem; }
.quote__card .btn:focus-visible::before { box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--color-text-ink); }
.form__status {
  margin-top: .75rem;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-error);
}
.form__status:empty { display: none; }
.form__note { margin-top: .9rem; font-size: .8rem; text-align: center; color: var(--color-text-tertiary); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 1.5rem;
  text-align: center;
}
.form-success:focus { outline: none; }
.form-success__icon {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  margin-bottom: 1.25rem;
  color: #fff;
  background: var(--color-success);
  border-radius: 50%;
  animation: pop .6s var(--ease-out);
}
.form-success__icon .icon { width: 34px; height: 34px; }
.form-success__text { max-width: 36ch; margin-block: .5rem 1.75rem; color: var(--color-text-tertiary); }

/* ---------- FAQ ---------- */
.faq { background: var(--color-surface-alt); }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--header-h) + 2.5rem); }
.faq__head .lead { margin-block: 1.25rem 2rem; }
.faq__list { display: grid; gap: .75rem; }

.faq__item {
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--motion-duration-fast), background var(--motion-duration-fast);
}
.faq__item:hover { border-color: var(--color-border-strong); }
.faq__item[open] { background: rgba(251, 49, 45, .05); border-color: rgba(251, 49, 45, .45); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.3rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:focus-visible { outline-offset: -2px; }
.faq__icon {
  position: relative;
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  transition: background var(--motion-duration-fast), border-color var(--motion-duration-fast), transform var(--motion-duration-base) var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 2px;
  background: currentColor;
  translate: -50% -50%;
}
.faq__icon::after { rotate: 90deg; transition: rotate var(--motion-duration-base) var(--ease-out); }
.faq__item[open] .faq__icon { background: var(--color-brand-strong); border-color: var(--color-brand-strong); transform: rotate(180deg); }
.faq__item[open] .faq__icon::after { rotate: 0deg; }
.faq__answer { padding: 0 1.5rem 1.4rem; color: var(--color-text-muted); }

.faq__item::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size var(--motion-duration-base) var(--ease-out), content-visibility var(--motion-duration-base) allow-discrete;
}
.faq__item[open]::details-content { block-size: auto; }

/* ---------- Localização ---------- */
.location { background: var(--color-surface-base); }
.location__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}
.location__address {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-block: 2rem;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-brand);
  border-radius: var(--radius-sm);
  line-height: 1.35;
}
.location__address strong { display: block; font-size: clamp(1.15rem, 1vw + 1rem, 1.4rem); font-weight: 800; }
.location__address span span { color: var(--color-text-muted); }
.location__pin {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  flex: none;
  color: #fff;
  background: var(--color-brand-strong);
  border-radius: var(--radius-xs);
}
.location__actions { display: flex; flex-wrap: wrap; gap: 1rem 1.25rem; }
.location__photo {
  margin-top: 2.5rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.location__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }

.location__map {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #111214;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.9);
}


/* ---------- Footer ---------- */
.footer {
  position: relative;
  padding-top: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: #000;
  border-top: 1px solid var(--color-border);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
}
.footer .brand__logo { width: 116px; }
.footer__brand p { max-width: 36ch; margin-top: 1.25rem; font-size: .95rem; color: var(--color-text-muted); }
.footer__title {
  margin-bottom: 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.footer ul { display: grid; gap: .65rem; }
.footer ul a,
.footer address { font-size: .95rem; color: #d4d8dd; text-decoration: none; }
.footer ul a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  transition: background var(--motion-duration-fast), border-color var(--motion-duration-fast), transform var(--motion-duration-fast) var(--ease-out);
}
.socials a:hover { background: var(--color-brand-strong); border-color: var(--color-brand-strong); transform: translateY(-3px); }
.socials a:focus-visible { border-radius: 50%; }

.footer__big {
  margin-top: clamp(3rem, 6vw, 5rem);
  font-size: clamp(2rem, 10vw, 11rem);
  font-weight: 900;
  font-style: italic;
  line-height: .82;
  letter-spacing: -.05em;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translate3d(var(--fx, 0px), 0, 0);
  user-select: none;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-block: 1.5rem;
  font-size: .85rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

/* Crédito — mesma tipografia do link da Brumas */
.dev-credit {
  margin: 0;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom, 0px));
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #858c95;
  border-top: 1px solid var(--color-border);
}
.dev-credit a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--motion-duration-fast);
}
.dev-credit a:hover { color: var(--color-brand); }

/* ---------- WhatsApp flutuante ---------- */
.wa-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  color: #fff;
  background: var(--color-whatsapp);
  border-radius: 50%;
  box-shadow: 0 14px 30px -10px rgba(31, 170, 85, .6);
  opacity: 0;
  transform: translateY(120px) scale(.8);
  pointer-events: none;
  transition: transform .5s var(--ease-out), opacity .3s;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-whatsapp);
  border-radius: 50%;
  animation: ping 2.4s var(--ease-out) infinite;
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-fab:hover { transform: scale(1.07); }
.wa-fab:focus-visible { border-radius: 50%; outline-color: #fff; }
html:not(.js) .wa-fab { opacity: 1; transform: none; pointer-events: auto; }
.menu-open .wa-fab { opacity: 0; pointer-events: none; }

/* ---------- Reveal ao rolar ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.js [data-reveal="left"] { transform: translate3d(-60px, 0, 0); }
.js [data-reveal="clip"] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 100% 0 0 round var(--radius-md));
  transition: clip-path 1.3s var(--ease-in-out);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal="clip"].is-in { clip-path: inset(0 0 0 0 round var(--radius-md)); }

/* ---------- Keyframes ---------- */
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floor-move { to { background-position: 0 90px, 0 0; } }
@keyframes trail {
  0% { transform: translateX(-110%); opacity: 0; }
  12% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 20%)); opacity: 0; }
}
@keyframes ping {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes pop {
  0% { transform: scale(.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service { min-height: 460px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }

  .parallax-inner { transform: none; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
  .hero__visual { justify-self: center; max-width: 460px; }
  .hero__tag { left: 0; }

  .problems__grid,
  .solution__grid,
  .quote__grid,
  .faq__grid,
  .location__grid { grid-template-columns: minmax(0, 1fr); }
  .problems__head,
  .faq__head { position: static; }
  .solution__media { width: 100%; max-width: 560px; margin-inline: auto; }
  .reviews__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(86%, 420px);
    margin-inline: calc(var(--gutter) * -1);
    padding: .5rem var(--gutter) 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .reviews__grid > li { scroll-snap-align: center; }
  .review:hover { transform: none; box-shadow: none; }
  .location__map { min-height: 380px; }
}

@media (max-width: 760px) {
  .process__steps { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .step { padding: 0 0 0 4.25rem; }
  .step__num { font-size: 2.6rem; margin-bottom: .5rem; }
  .process__rail { left: 21px; right: auto; top: 22px; bottom: 0; width: 2px; height: auto; }
  .process__fill {
    background: linear-gradient(180deg, rgba(251, 49, 45, .15), var(--color-brand));
    transform: scaleY(var(--progress));
    transform-origin: top;
  }
  .process__car { left: 50%; top: calc(var(--progress) * 100%); transform: translate(-50%, -50%) rotate(90deg); }

  .gallery__head { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .gallery__item { width: 72vw; }
}

@media (max-width: 640px) {
  .hero__checks { grid-template-columns: minmax(0, 1fr); }
  .hero__actions .btn { width: 100%; }
  .hero__tag { bottom: 12%; font-size: .78rem; }
  .hero__dots { right: 10%; }
  .pillars { grid-template-columns: minmax(0, 1fr); }
  .pillar + .pillar { border-left: 0; border-top: 1px solid var(--color-border); }
  .pillar { padding: 1rem 1.2rem; }

  .problem { grid-template-columns: auto minmax(0, 1fr); padding: 1.35rem 1.2rem; }
  .problem__num { display: none; }

  .solution__media { padding: 0 10% 18% 4%; }
  .solution__deco { gap: 10px; }
  .solution__deco i { width: 20px; }

  .services__grid { grid-template-columns: minmax(0, 1fr); }
  .service { min-height: 420px; }

  .form__grid { grid-template-columns: minmax(0, 1fr); }
  .review { padding: 1.6rem; }

  .location__actions .btn,
  .problems__head .btn,
  .faq__head .btn { width: 100%; }

  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .eyebrow { letter-spacing: .14em; }
}

@media (max-width: 420px) {
  .btn { padding-inline: 1.1rem; font-size: .8rem; letter-spacing: .02em; }
}

/* ---------- Mobile: textos centralizados ---------- */
@media (max-width: 760px) {
  .hero__content,
  .section-head,
  .problems__head,
  .solution__content,
  .quote__intro,
  .faq__head,
  .location__info,
  .footer__top { text-align: center; }

  .lead,
  .hero__lead,
  .footer__brand p { margin-inline: auto; }
  .eyebrow { justify-content: center; }

  .nav { align-items: center; text-align: center; }
  .nav__extra p { justify-content: center; }

  .hero__checks { grid-template-columns: max-content; justify-content: center; text-align: left; }
  .hero__actions { justify-content: center; }
  .pillar { flex-direction: column; justify-content: center; gap: .6rem; padding: 1.25rem; text-align: center; }

  .problem { grid-template-columns: minmax(0, 1fr); justify-items: center; gap: .9rem; padding: 1.5rem 1.25rem; text-align: center; }
  .problem::before { inset: 0 0 auto; width: auto; height: 4px; transform: scaleX(0); transform-origin: center; }
  .problem:hover { transform: translateY(-4px); }
  .problem:hover::before { transform: scaleX(1); }

  .benefit { grid-template-columns: minmax(0, 1fr); justify-items: center; gap: .75rem; text-align: center; }

  .service__body { text-align: center; }

  .process__rail { left: 50%; margin-left: -1px; }
  .step { padding: 4.25rem 0 0; text-align: center; }
  .step::before { left: 50%; margin-left: -22px; }
  .step::after { left: 50%; margin-left: -7px; }
  .step__body { position: relative; padding: .5rem .75rem .25rem; background: var(--color-surface-base); }
  .step.is-active .step__num { transform: none; }

  .gallery__head { align-items: center; text-align: center; }
  .gallery__item figcaption { justify-content: center; }

  .reviews__head { flex-direction: column; align-items: center; text-align: center; }
  .review { align-items: center; text-align: center; }
  .review .stars { justify-content: center; }
  .review__more { align-self: center; }
  .review figcaption { justify-content: center; text-align: left; }

  .quote__steps li { grid-template-columns: minmax(0, 1fr); justify-items: center; gap: .5rem; text-align: center; }
  .quote__contact { justify-content: center; }
  .quote__card::before { left: 50%; margin-left: -48px; }
  .form__title,
  .form__subtitle { text-align: center; }

  .location__address {
    flex-direction: column;
    text-align: center;
    border-left-width: 1px;
    border-left-color: var(--color-border);
    border-top: 4px solid var(--color-brand);
  }
  .location__actions { justify-content: center; }

  .socials { justify-content: center; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0s !important;
  }
  .hero__trails,
  .hero__floor { display: none; }
  .ticker__track { animation: none !important; }
  .js [data-reveal],
  .js [data-intro],
  .js .hero__title .line > span,
  .js .hero__shape,
  .js .site-header { opacity: 1; transform: none; }
  .js [data-reveal="clip"] { clip-path: none; }
  .js .hero__stage { clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%); }
  .hero__slide img { transform: none !important; }
}
