﻿:root {
  --bg: #07080c;
  --bg-soft: #10131a;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.64);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.26);
  --red: #e01d28;
  --red-soft: #ff3140;
  --red-dark: #970d16;
  --green: #25d366;
  --gold: #d6aa67;
  --gold-soft: #f7e3c0;
  --shadow-red: rgba(224, 29, 40, 0.36);
  --shadow-gold: rgba(214, 170, 103, 0.26);
  --container: min(92vw, 1680px);
  --font-title: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 29, 40, 0.1), transparent 38%),
    radial-gradient(circle at 90% 16%, rgba(214, 170, 103, 0.1), transparent 34%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-page {
  min-height: 100vh;
  background: var(--bg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #030407;
}

.hero__bg,
.hero__noise,
.hero__radar,
.hero__luxury-glow,
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg {
  z-index: -7;
  background-image: url("../assets/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1.02));
  transition: transform 160ms linear;
}

.hero__noise {
  z-index: -6;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 3px);
}

.hero__radar {
  z-index: -5;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 44%), rgba(214, 170, 103, 0.13), transparent 18rem),
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 44%), rgba(224, 29, 40, 0.13), transparent 27rem),
    radial-gradient(circle at 50% 62%, rgba(224, 29, 40, 0.16), transparent 27rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.02) 30%, rgba(0, 0, 0, 0.78) 70%, rgba(0, 0, 0, 0.98) 100%);
}

.hero__luxury-glow {
  z-index: -4;
  overflow: hidden;
}

.hero__luxury-glow span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.62;
}

.hero__luxury-glow span:nth-child(1) {
  left: 50%;
  top: 58%;
  width: min(620px, 60vw);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(214, 170, 103, 0.78), rgba(224, 29, 40, 0.7), transparent);
  box-shadow: 0 0 42px rgba(224, 29, 40, 0.32), 0 0 60px rgba(214, 170, 103, 0.2);
  animation: lineBreath 4.8s ease-in-out infinite;
}

.hero__luxury-glow span:nth-child(2) {
  right: 10%;
  top: 18%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(214, 170, 103, 0.18), transparent 68%);
  animation: floatGlow 8s ease-in-out infinite;
}

.hero__luxury-glow span:nth-child(3) {
  left: 8%;
  bottom: 18%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(224, 29, 40, 0.16), transparent 70%);
  animation: floatGlow 9s ease-in-out infinite reverse;
}

.hero__particles {
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.76)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74), transparent 18%, transparent 48%, rgba(0, 0, 0, 0.96) 88%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -2;
  width: 150vw;
  height: 48%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 70%);
  pointer-events: none;
}

.header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 30;
  width: var(--container);
  min-height: 112px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 260px 1fr 230px;
  align-items: center;
  gap: 24px;
  transition: min-height 220ms ease, padding 220ms ease;
}

.header::after {
  content: "";
  position: absolute;
  inset: 0 -4vw auto;
  height: 126px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.9), rgba(4, 5, 8, 0));
  transition: opacity 220ms ease;
}

body.is-scrolled .header {
  min-height: 92px;
}

body.is-scrolled .header::after {
  opacity: 1;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.header__brand img {
  display: block;
  width: clamp(168px, 13vw, 220px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.46));
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 78px);
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease, transform 180ms ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.16, 0.84, 0.44, 1);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

/* CTA de WhatsApp dentro do menu (apenas no menu mobile) */
.nav__cta {
  display: none;
}

.header__whatsapp {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  padding: 0 24px;
  border: 1px solid rgba(37, 211, 102, 0.72);
  border-radius: 22px;
  color: var(--white);
  background: rgba(4, 12, 8, 0.34);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.06), 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.header__whatsapp i {
  font-size: 1.45rem;
  color: var(--green);
}

.header__whatsapp strong,
.header__whatsapp small {
  display: block;
  line-height: 1.1;
}

.header__whatsapp strong {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header__whatsapp small {
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
}

.header__whatsapp:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 1);
  background: rgba(37, 211, 102, 0.12);
  box-shadow: 0 20px 52px rgba(37, 211, 102, 0.14);
}

.header__toggle {
  display: none;
}

/* O scrim direcional substitui o antigo overlay que escurecia os dois lados */
.hero::before {
  display: none;
}

/* Scrim direcional: escurece a esquerda (texto) e libera a direita (imagem) */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.84) 28%, rgba(3, 4, 7, 0.34) 54%, rgba(3, 4, 7, 0.1) 72%, rgba(3, 4, 7, 0.5) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.5) 0%, transparent 24%, transparent 52%, rgba(3, 4, 7, 0.94) 100%);
}

/* Etiqueta vertical lateral */
.hero__side {
  position: absolute;
  left: clamp(16px, 2.6vw, 38px);
  top: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  rotate: 180deg;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}
.hero__side-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(var(--red-soft), transparent);
}

.hero__inner {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 184px;
}

.hero__copy {
  width: min(720px, 100%);
  text-align: left;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(20px, 3vw, 30px);
  padding: 9px 18px 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.5);
  backdrop-filter: blur(12px);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
}
.hero__pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #34e07a;
  box-shadow: 0 0 0 0 rgba(52, 224, 122, 0.55);
  animation: heroPulse 2.1s ease-out infinite;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.3vw, 2.75rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.62);
}
.hero__title em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(120deg, var(--gold-soft) 0%, var(--red-soft) 48%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(224, 29, 40, 0.28));
}

.hero__description {
  max-width: 510px;
  margin-top: clamp(18px, 2.4vw, 26px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(26px, 3vw, 36px);
}
.hero__actions .btn {
  min-width: auto;
}

/* Animação de entrada da hero */
.hero__status,
.hero__title,
.hero__description,
.hero__actions {
  opacity: 0;
  animation: heroUp 0.85s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
}
.hero__status { animation-delay: 0.08s; }
.hero__title { animation-delay: 0.2s; }
.hero__description { animation-delay: 0.42s; }
.hero__actions { animation-delay: 0.54s; }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: min(340px, 42vw);
  min-height: 72px;
  padding: 0 30px;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn i:first-child {
  font-size: 1.35rem;
}

.btn i:last-child {
  margin-left: auto;
  transition: transform 220ms ease;
}

.btn small {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.82;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(214, 170, 103, 0.26), transparent 46%);
  transition: opacity 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover i:last-child {
  transform: translateX(5px);
}

.btn--outline {
  border: 1px solid var(--border-strong);
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(0, 0, 0, 0.34));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn--outline i:first-child {
  color: var(--red-soft);
  filter: drop-shadow(0 0 18px rgba(224, 29, 40, 0.34));
}

.btn--outline:hover {
  border-color: rgba(214, 170, 103, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34), 0 0 36px rgba(224, 29, 40, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn--primary {
  border: 1px solid rgba(247, 227, 192, 0.18);
  color: var(--white);
  background: linear-gradient(135deg, #f02c38 0%, #c61824 48%, #8f0b13 100%);
  box-shadow: 0 22px 56px rgba(224, 29, 40, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary i:first-child {
  color: #60f09a;
  font-size: 1.55rem;
}

.btn--primary:hover {
  box-shadow: 0 28px 66px rgba(224, 29, 40, 0.34), 0 0 42px rgba(214, 170, 103, 0.13);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(108px, 14vh, 138px);
  z-index: 7;
  width: 25px;
  height: 42px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: 0.7;
  backdrop-filter: blur(10px);
}

.scroll-cue span {
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--white);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

/* Barra inferior da hero: métricas reais + ticker animado */
.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  padding: 18px clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, transparent, rgba(3, 4, 7, 0.86) 45%);
  backdrop-filter: blur(6px);
}

.hero__metrics {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
  list-style: none;
}
.hero__metrics li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: clamp(18px, 2.4vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__metrics li:first-child {
  padding-left: 0;
  border-left: 0;
}
.hero__metrics strong {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 1.9vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-soft), var(--red-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__metrics-stars {
  display: inline-flex;
  gap: 3px;
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
  font-size: 0.9rem;
}
.hero__metrics span {
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  color: rgba(255, 255, 255, 0.62);
}

.hero__ticker {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.hero__ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: heroTicker 34s linear infinite;
}
.hero__ticker span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero__ticker i {
  color: var(--red-soft);
  font-size: 0.5rem;
  font-style: normal;
}

@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0.16; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 224, 122, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(52, 224, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 224, 122, 0); }
}

@keyframes heroTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes lineBreath {
  0%, 100% { opacity: 0.36; transform: translateX(-50%) scaleX(0.82); }
  50% { opacity: 0.85; transform: translateX(-50%) scaleX(1); }
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.38; }
  50% { transform: translate3d(18px, -18px, 0) scale(1.08); opacity: 0.66; }
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: 220px 1fr 210px;
  }

  .nav {
    gap: 28px;
  }

  .hero__inner {
    padding-bottom: 172px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 116px;
  }

  .hero__bg {
    background-position: center top;
    background-size: cover;
    transform: scale(1.01);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.64), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.64)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.18) 25%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.96) 76%);
  }

  .header {
    width: min(92vw, 740px);
    min-height: 92px;
    grid-template-columns: 1fr auto;
  }

  .header::after {
    opacity: 1;
  }

  .header__brand img {
    width: 172px;
  }

  .header__toggle {
    justify-self: end;
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    cursor: pointer;
  }

  .header__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 200ms ease, opacity 200ms ease;
  }

  body.menu-open .header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.menu-open .header__toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 84px;
    left: 50%;
    width: min(92vw, 420px);
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: translateX(-50%) translateY(-12px) scale(0.98);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(180deg, rgba(14, 16, 22, 0.98), rgba(8, 9, 13, 0.98));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  body.menu-open .nav {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    transition: background 180ms ease, color 180ms ease;
  }

  .nav__link:hover,
  .nav__link.is-active {
    color: var(--white);
    background: rgba(224, 29, 40, 0.14);
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    min-height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c4b);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
  }
  .nav__cta i {
    font-size: 1.2rem;
  }

  /* No mobile o CTA de WhatsApp vira o botão flutuante (.wa-float),
     evitando sobreposição com o logo e o menu. */
  .header__whatsapp {
    display: none;
  }

  .hero__side {
    display: none;
  }

  .hero__title br {
    display: none;
  }

  .hero__inner {
    display: block;
    min-height: auto;
    padding-top: clamp(360px, 50svh, 500px);
    padding-bottom: 30px;
  }

  .hero__copy {
    width: 100%;
    max-width: 560px;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero__actions .btn {
    width: min(520px, 100%);
  }

  .btn {
    min-width: 0;
  }

  .scroll-cue {
    display: none;
  }

  .hero__bottom {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 22px clamp(18px, 5vw, 32px) 26px;
    background: rgba(3, 4, 7, 0.55);
  }

  .hero__metrics {
    justify-content: space-between;
    gap: 12px;
  }

  .hero__metrics li {
    flex: 1;
    align-items: flex-start;
    padding-left: clamp(12px, 3vw, 20px);
  }

  .hero__ticker {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 100px;
  }

  .hero__bg {
    background-position: center top;
    background-size: auto 100%;
  }

  .hero__radar {
    background:
      radial-gradient(circle at 50% 48%, rgba(214, 170, 103, 0.14), transparent 14rem),
      radial-gradient(circle at 50% 54%, rgba(224, 29, 40, 0.18), transparent 18rem),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.2) 38%, rgba(0, 0, 0, 0.94) 68%, rgba(0, 0, 0, 0.98) 100%);
  }

  .hero__luxury-glow span:nth-child(1) {
    top: 50%;
    width: 86vw;
  }

  .hero__luxury-glow span:nth-child(2),
  .hero__luxury-glow span:nth-child(3) {
    opacity: 0.42;
  }

  .header {
    width: 92vw;
    min-height: 86px;
  }

  .header__brand img {
    width: 154px;
  }

  .header__toggle {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .nav {
    top: 82px;
  }

  .hero__inner {
    padding-top: clamp(330px, 50svh, 460px);
  }

  .hero__copy {
    max-width: 450px;
  }

  .hero__title {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero__description {
    max-width: 390px;
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .btn {
    min-height: 62px;
    padding: 0 18px;
    font-size: 0.8rem;
    border-radius: 14px;
  }

  .btn i:first-child {
    font-size: 1.16rem;
  }

  .btn--primary i:first-child {
    font-size: 1.38rem;
  }

  .hero__metrics strong {
    font-size: 1.25rem;
  }
}

@media (max-width: 420px) {
  .hero__inner {
    padding-top: clamp(300px, 46svh, 420px);
  }

  .hero__title {
    font-size: clamp(1.9rem, 11vw, 2.6rem);
  }

  .hero__description {
    font-size: 0.9rem;
  }

  .btn {
    min-height: 58px;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero__particles {
    display: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__status,
  .hero__title,
  .hero__description,
  .hero__actions {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* =====================================================================
   SISTEMA DE SEÇÕES  ·  Fortal Executivo (landing page completa)
   ===================================================================== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--red);
  color: #fff;
  border-radius: 0 0 12px 0;
  font-weight: 800;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: min(92vw, 1240px);
  margin-inline: auto;
}

/* ---------- Cabeçalhos de seção ---------- */
.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .section-kicker {
  justify-content: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-kicker span {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.section-kicker--light {
  color: var(--gold-soft);
}

.section-title {
  font-family: var(--font-title);
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
  text-wrap: pretty;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.75s cubic-bezier(0.16, 0.84, 0.44, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Efeito spotlight: borda que acende na cor da marca ---------- */
[data-spotlight] {
  position: relative;
}
[data-spotlight]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 1.4px;
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 49, 64, 0.85),
    rgba(214, 170, 103, 0.35) 38%,
    transparent 68%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
[data-spotlight]:hover::before,
[data-spotlight].is-glow::before {
  opacity: 1;
}
[data-glow]:focus-within::before {
  opacity: 1;
}

/* ---------- Botões extras ---------- */
.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  min-width: auto;
}
.btn--ghost i:first-child {
  color: var(--gold-soft);
}
.btn--ghost:hover {
  border-color: rgba(214, 170, 103, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}
.btn--full {
  width: 100%;
  min-width: 0;
}

/* ---------- Link CTA com seta ---------- */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  transition: gap 0.25s ease, color 0.25s ease;
}
.link-cta i {
  color: var(--red-soft);
  transition: transform 0.25s ease;
}
.link-cta:hover {
  color: var(--gold-soft);
  gap: 14px;
}
.link-cta:hover i {
  transform: translateX(4px);
}

/* =====================  SOBRE + NÚMEROS  ===================== */
.about {
  padding: clamp(84px, 10vw, 150px) 0 clamp(70px, 8vw, 120px);
}
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__media-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 4;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid rgba(214, 170, 103, 0.32);
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(14px);
}
.about__media-badge strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--gold-soft);
}
.about__media-badge small {
  color: var(--muted);
  font-size: 0.82rem;
}
.about__text {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}
.about__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(36px, 4vw, 52px);
  list-style: none;
  border-top: 1px solid var(--border);
}
.about__stats li {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.about__stats li:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 170, 103, 0.32);
}
.about__stats strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--red);
}
.about__stats small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

/* =====================  SERVIÇOS  ===================== */
.services {
  padding: clamp(70px, 8vw, 120px) 0;
}

.service--featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 90px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.22));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}
.service__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
.service__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.service--featured:hover .service__media img {
  transform: scale(1.04);
}
.service__flag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--red-soft), var(--red-dark));
  box-shadow: 0 10px 30px var(--shadow-red);
}
.service__flag i {
  color: var(--gold-soft);
}
.service__index {
  display: block;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red-soft);
}
.service__body h3 {
  margin: 10px 0 16px;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}
.service__body p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}
.service__features {
  margin: 22px 0 26px;
  list-style: none;
  display: grid;
  gap: 12px;
}
.service__features--inline {
  gap: 10px;
}
.service__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.45;
}
.service__features i {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--gold-soft);
  background: rgba(214, 170, 103, 0.14);
  border: 1px solid rgba(214, 170, 103, 0.3);
}

/* Linhas de serviço alternadas */
.service-rows {
  display: grid;
  gap: clamp(32px, 4vw, 60px);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.service-row--reverse .service-row__media {
  order: 2;
}
.service-row__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}
.service-row__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.service-row:hover .service-row__media img {
  transform: scale(1.04);
}
.service-row__body h3 {
  margin: 10px 0 14px;
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.service-row__body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

/* =====================  FROTA  ===================== */
.fleet {
  padding: clamp(70px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(214, 170, 103, 0.08), transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(224, 29, 40, 0.08), transparent 38%);
}
.fleet__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.fleet__filter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.fleet__filter i {
  font-size: 1rem;
  color: var(--red-soft);
}
.fleet__filter:hover {
  color: var(--white);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.fleet__filter.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #f02c38, #970d16);
  box-shadow: 0 16px 40px var(--shadow-red);
}
.fleet__filter.is-active i {
  color: var(--gold-soft);
}

.fleet__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vehicle {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.22));
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.vehicle.is-hidden {
  display: none;
}
.vehicle.is-enter {
  animation: fadeUp 0.45s ease both;
}
.vehicle:hover {
  transform: translateY(-5px);
}
.vehicle__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.vehicle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.vehicle:hover .vehicle__media img {
  transform: scale(1.06);
}
.vehicle__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  backdrop-filter: blur(6px);
}
.vehicle__badge--armored {
  background: linear-gradient(135deg, var(--red-soft), var(--red-dark));
  box-shadow: 0 8px 22px var(--shadow-red);
}
.vehicle__badge--armored i {
  color: var(--gold-soft);
}
.vehicle__badge--hybrid {
  background: linear-gradient(135deg, #25d366, #128c4b);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
}
.vehicle__info {
  padding: 20px 22px 24px;
}
.vehicle__type {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.vehicle__info h3 {
  margin-top: 8px;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.vehicle__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  list-style: none;
}
.vehicle__tags li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
}
.vehicle__tags i {
  color: var(--red-soft);
  font-size: 0.78rem;
}

.fleet__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 44px);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}
.fleet__note i {
  color: var(--gold-soft);
}

/* =====================  DIFERENCIAIS  ===================== */
.benefits {
  padding: clamp(70px, 8vw, 120px) 0;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}
.benefit {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.benefit:hover {
  transform: translateY(-4px);
}
.benefit i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 16px;
  font-size: 1.45rem;
  color: var(--red-soft);
  background: rgba(224, 29, 40, 0.1);
  border: 1px solid rgba(224, 29, 40, 0.24);
  filter: drop-shadow(0 0 18px rgba(224, 29, 40, 0.2));
}
.benefit h3 {
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.benefit p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* =====================  CTA BAND  ===================== */
.cta-band {
  position: relative;
  isolation: isolate;
  padding: clamp(80px, 11vw, 160px) 0;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/img/bg-cta.webp"), url("../assets/hero-bg.webp");
  background-size: cover, cover;
  background-position: center, center;
  transform: scale(1.04);
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 40%, rgba(224, 29, 40, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(4, 5, 8, 0.82), rgba(4, 5, 8, 0.92));
}
.cta-band__inner {
  max-width: 760px;
  text-align: center;
}
.cta-band__inner h2 {
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--white);
  text-wrap: balance;
}
.cta-band__text {
  margin: 20px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.cta-band__actions .btn {
  min-width: auto;
}

/* =====================  DEPOIMENTOS  ===================== */
.reviews {
  padding: clamp(70px, 8vw, 120px) 0;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}
.review {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.2));
}
.review__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.9rem;
}
.review p {
  flex: 1;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}
.review__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--red-soft), var(--red-dark));
}
.review__person strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
}
.review__person small {
  color: var(--muted);
  font-size: 0.84rem;
}
.reviews__cta {
  margin-top: 38px;
  text-align: center;
}
.reviews__cta .link-cta i {
  color: var(--gold-soft);
}

/* =====================  CONTATO  ===================== */
.contact {
  padding: clamp(70px, 8vw, 120px) 0 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact__channels {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  list-style: none;
}
.contact__channels a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.contact__channels a:hover {
  transform: translateX(4px);
}
.contact__channels i {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.2rem;
  color: var(--gold-soft);
  background: rgba(214, 170, 103, 0.1);
  border: 1px solid rgba(214, 170, 103, 0.24);
}
.contact__channels .fa-whatsapp {
  color: #60f09a;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.28);
}
.contact__channels strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
}
.contact__channels small {
  color: var(--muted);
  font-size: 0.86rem;
  word-break: break-word;
}
.contact__hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}
.contact__hours i {
  color: var(--red-soft);
}
.contact__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.contact__social a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.contact__social a:hover {
  transform: translateY(-3px);
  color: var(--gold-soft);
  border-color: rgba(214, 170, 103, 0.4);
}

/* Formulário com borda que acende */
.contact__form-wrap {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.26));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.contact__form {
  padding: clamp(24px, 3vw, 40px);
}
.contact__form-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field {
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d6aa67' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field select option {
  background: #0c0f16;
  color: #fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(224, 29, 40, 0.6);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(224, 29, 40, 0.16), 0 0 28px rgba(224, 29, 40, 0.14);
}
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--red-soft);
  box-shadow: 0 0 0 3px rgba(224, 29, 40, 0.18);
}
.contact__form .btn {
  margin-top: 6px;
}
.contact__form-note {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}
.contact__form-note a {
  color: var(--gold-soft);
  font-weight: 700;
}
.form-feedback {
  margin-top: 14px;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  min-height: 1px;
}
.form-feedback.is-ok {
  color: #60f09a;
}
.form-feedback.is-error {
  color: var(--red-soft);
}

.contact__map {
  position: relative;
  margin-top: clamp(48px, 6vw, 80px);
  height: clamp(340px, 42vw, 480px);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0a0c12, #06070b);
  overflow: hidden;
}
.contact__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) invert(0.92) hue-rotate(180deg) contrast(0.9);
}
.contact__map-legend {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(560px, calc(100% - 40px));
  padding: 15px 18px;
  border: 1px solid rgba(214, 170, 103, 0.32);
  border-radius: 16px;
  background: rgba(8, 9, 13, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact__map-legend:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 170, 103, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 28px rgba(224, 29, 40, 0.16);
}
.contact__map-pin {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--red-soft), var(--red-dark));
  box-shadow: 0 10px 26px var(--shadow-red);
}
.contact__map-pin i {
  transform: rotate(45deg);
  color: #fff;
  font-size: 1.2rem;
}
.contact__map-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--white);
}
.contact__map-text small {
  color: var(--muted);
  font-size: 0.82rem;
}
.contact__map-open {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f02c38, #970d16);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
  box-shadow: 0 10px 26px var(--shadow-red);
}
.contact__map-open i {
  transition: transform 0.25s ease;
}
.contact__map-legend:hover .contact__map-open i {
  transform: translateX(3px);
}

/* =====================  FOOTER  ===================== */
.footer {
  margin-top: clamp(60px, 7vw, 100px);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #060709, #04050a);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(48px, 6vw, 84px) 0 clamp(36px, 4vw, 56px);
}
.footer__brand img {
  width: 200px;
  height: auto;
  margin-bottom: 18px;
}
.footer__brand p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.footer__social a:hover {
  transform: translateY(-3px);
  color: var(--gold-soft);
  border-color: rgba(214, 170, 103, 0.4);
}
.footer__col h4 {
  margin-bottom: 18px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer__col a,
.footer__col span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.25s ease;
}
.footer__col a:hover {
  color: var(--gold-soft);
}
.footer__contact i {
  color: var(--red-soft);
  width: 16px;
  text-align: center;
}
.footer__bottom {
  border-top: 1px solid var(--border);
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

/* Créditos do desenvolvedor (destaque) */
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214, 170, 103, 0.3);
  background: linear-gradient(135deg, rgba(224, 29, 40, 0.12), rgba(214, 170, 103, 0.1));
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.footer__credit-name {
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-soft), var(--red-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__credit-url {
  color: var(--gold-soft);
  font-weight: 600;
}
.footer__credit-url::before {
  content: "·";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.footer__credit i {
  font-size: 0.72rem;
  color: var(--gold-soft);
}
.footer__credit:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 170, 103, 0.6);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), 0 0 26px rgba(224, 29, 40, 0.16);
}

@media (max-width: 560px) {
  .footer__credit {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =====================  WHATSAPP FLUTUANTE  ===================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px 0 16px;
  height: 56px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #0fa84d);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.42), 0 4px 12px rgba(0,0,0,0.28);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease,
              bottom 0.45s cubic-bezier(0.34,1.56,0.64,1),
              opacity 0.3s ease,
              visibility 0.3s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float i {
  font-size: 1.65rem;
  flex-shrink: 0;
}
.wa-float__label {
  letter-spacing: 0.01em;
}
.wa-float:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 22px 56px rgba(37, 211, 102, 0.52), 0 6px 16px rgba(0,0,0,0.3);
}
/* Sobe o botão quando o rodapé fica visível — evita sobrepor os créditos */
.wa-float.is-lifted {
  bottom: 108px;
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.42), 0 4px 12px rgba(0,0,0,0.28), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.42), 0 4px 12px rgba(0,0,0,0.28), 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* =====================  RESPONSIVO  ===================== */
@media (max-width: 1080px) {
  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__media {
    max-height: 420px;
  }
  .benefits__grid,
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .service--featured,
  .service-row,
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .service-row--reverse .service-row__media {
    order: 0;
  }
  .service__media,
  .service-row__media {
    max-height: 320px;
  }
  .fleet__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
  .contact__form-wrap {
    order: -1;
  }
}

@media (max-width: 560px) {
  .benefits__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .fleet__gallery {
    grid-template-columns: 1fr;
  }
  .fleet__filter {
    padding: 11px 16px;
    font-size: 0.82rem;
  }
  .wa-float {
    padding: 0 16px 0 13px;
    height: 50px;
    font-size: 0.84rem;
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }
  .wa-float i {
    font-size: 1.45rem;
  }
  .wa-float.is-lifted {
    bottom: 96px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

