﻿/* ============================================================
   GARAGEM DETAIL — Estética Automotiva
   Tema escuro premium · Azul elétrico #0066FF · Ciano #00BFFF
   ============================================================ */

:root {
  --bg: #05070A;
  --bg-soft: #0A0E13;
  --surface: #171B20;
  --surface-2: #1D232B;
  --line: rgba(168, 176, 186, .14);
  --text: #F5F7FA;
  --muted: #A8B0BA;
  --blue: #0066FF;
  --cyan: #00BFFF;
  --grad: linear-gradient(92deg, var(--blue), var(--cyan));
  --radius: 16px;
  --header-h: 76px;
  --shadow-glow: 0 14px 44px -14px rgba(0, 102, 255, .45);
  --ease: cubic-bezier(.22, .68, .26, .99);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: rgba(0, 102, 255, .45); color: #fff; }

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #232a33; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #2f3945; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---------- Utilitários ---------- */
.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); position: relative; }

.eyebrow {
  font-family: 'Michroma', sans-serif;
  font-size: .66rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--grad);
  flex: none;
}

h1, h2, h3 { font-family: 'Saira Condensed', 'Inter', sans-serif; text-transform: uppercase; }

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .015em;
  text-wrap: balance;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: .9em 1.7em;
  border-radius: 12px;
  font-family: 'Michroma', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn .ico { width: 17px; height: 17px; flex: none; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(0, 102, 255, .65);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px -12px rgba(0, 140, 255, .8);
}

.btn-ghost {
  border: 1px solid rgba(0, 191, 255, .4);
  color: var(--text);
  background: rgba(0, 191, 255, .04);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 191, 255, .85);
  background: rgba(0, 191, 255, .1);
  box-shadow: 0 10px 30px -14px rgba(0, 191, 255, .55);
}

.btn-lg { padding: 1.05em 1.9em; font-size: .74rem; }
.btn-xl { padding: 1.25em 2.6em; font-size: .84rem; border-radius: 14px; }

.btn:active { transform: translateY(0) scale(.98); }

.ico-check { width: 17px; height: 17px; color: var(--cyan); flex: none; }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 102, 255, .55);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 102, 255, .18), rgba(0, 191, 255, .07));
  border: 1px solid rgba(0, 191, 255, .28);
  margin-bottom: 22px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.card-icon svg { width: 27px; height: 27px; }
.card:hover .card-icon {
  box-shadow: 0 0 26px -6px rgba(0, 191, 255, .55);
  transform: translateY(-2px);
}

.card h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: .03em; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: 'Michroma', sans-serif;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.card-link .ico { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.card-link:hover .ico { transform: translateX(5px); }

/* Assinatura visual: brilho de verniz que percorre o elemento */
.sheen { position: relative; overflow: hidden; }
.sheen::after {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -80%;
  width: 46%;
  transform: skewX(-18deg) translateX(-160%);
  background: linear-gradient(90deg,
    transparent,
    rgba(130, 195, 255, .08) 32%,
    rgba(0, 191, 255, .17) 50%,
    rgba(130, 195, 255, .08) 68%,
    transparent);
  pointer-events: none;
  transition: transform 1s var(--ease);
}
.sheen:hover::after { transform: skewX(-18deg) translateX(520%); }

/* ---------- Frames de imagem + placeholders ---------- */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.img-frame > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: rgba(168, 176, 186, .55);
  background:
    radial-gradient(420px 220px at 50% 0%, rgba(0, 102, 255, .14), transparent 70%),
    repeating-linear-gradient(0deg, rgba(168, 176, 186, .05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(168, 176, 186, .05) 0 1px, transparent 1px 44px),
    var(--bg-soft);
  font-family: 'Michroma', sans-serif;
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  line-height: 1.9;
}
.ph svg { width: 34px; height: 34px; opacity: .6; }
.ph small { font-family: 'Inter', sans-serif; font-size: .72rem; letter-spacing: .04em; text-transform: none; }

.is-missing > img { display: none !important; }
.is-missing > figcaption, .is-missing > .ph { z-index: 2; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 15px;
  transition: background-color .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(5, 7, 10, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark img {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 9px;
}
.footer .brand-mark img { height: 36px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: .88rem;
  letter-spacing: .09em;
}
.brand-text small {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-list a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-block: 6px;
  transition: color .25s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-list a:hover { color: var(--text); }
.nav-list a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 110;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--header-h) + 48px) 72px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 176, 186, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 176, 186, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 420px at 78% 18%, rgba(0, 102, 255, .2), transparent 70%),
    radial-gradient(520px 360px at 8% 85%, rgba(0, 191, 255, .1), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
  font-weight: 800;
  line-height: .99;
  letter-spacing: .01em;
  margin-bottom: 24px;
}
.hl-gloss {
  display: inline-block;
  background: linear-gradient(92deg, var(--blue) 0%, var(--cyan) 38%, #8fd9ff 52%, var(--cyan) 66%, var(--blue) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glossSweep 5.5s var(--ease) 1.4s infinite;
}
@keyframes glossSweep {
  0%, 55% { background-position: 110% 0; }
  90%, 100% { background-position: -10% 0; }
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  max-width: 54ch;
  margin-bottom: 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
}
.hero-badges li { display: flex; align-items: center; gap: 9px; }

.hero-media {
  position: relative;
  border-radius: 20px;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(0, 191, 255, .32);
  box-shadow:
    0 0 70px -22px rgba(0, 102, 255, .6),
    0 30px 70px -40px rgba(0, 0, 0, .9);
  background: var(--bg-soft);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-media-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'Michroma', sans-serif;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(5, 7, 10, .66);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 191, 255, .3);
}
.hero-media-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.75); }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--muted);
  z-index: 2;
  animation: floatY 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 26px; height: 26px; }
.hero-scroll:hover { color: var(--cyan); }
@keyframes floatY {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Animação de entrada */
.fade-up {
  opacity: 0;
  animation: fadeUp .85s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Revelação ao rolar */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Escalonamento dos cards */
.pricing-grid > :nth-child(2), .gallery-grid > :nth-child(2), .why-grid > :nth-child(2) { transition-delay: .08s; }
.pricing-grid > :nth-child(3), .gallery-grid > :nth-child(3), .why-grid > :nth-child(3) { transition-delay: .16s; }
.pricing-grid > :nth-child(4), .gallery-grid > :nth-child(4), .why-grid > :nth-child(4) { transition-delay: .24s; }
.pricing-grid > :nth-child(5), .gallery-grid > :nth-child(5) { transition-delay: .32s; }
.pricing-grid > :nth-child(6), .gallery-grid > :nth-child(6) { transition-delay: .4s; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 55%, var(--bg) 100%); }

/* Tabelas de preço */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px 30px;
}
.price-card:hover { transform: none; }

.price-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.price-head .card-icon { margin-bottom: 0; width: 52px; height: 52px; }
.price-head .card-icon svg { width: 25px; height: 25px; }
.price-title h3 { font-size: 1.7rem; line-height: 1; margin-bottom: 4px; }
.price-title span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Michroma', sans-serif;
}

.size-block + .size-block { border-top: 1px dashed rgba(168, 176, 186, .16); }
.size-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}
.size-chip {
  width: 27px;
  height: 27px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(0, 102, 255, .16);
  border: 1px solid rgba(0, 191, 255, .4);
  color: var(--cyan);
  font-family: 'Michroma', sans-serif;
  font-size: .62rem;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(168, 176, 186, .12);
}
.price-list li:last-child { border-bottom: 0; padding-bottom: 2px; }
.p-name { color: var(--muted); font-size: .95rem; }
.p-value {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: .02em;
  white-space: nowrap;
  color: var(--text);
}
.price-list li.hl .p-name { color: var(--text); font-weight: 500; }
.price-list li.hl .p-value {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-block { width: 100%; margin-top: 26px; }

.price-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
  padding: 28px 30px;
}
.price-extra-info { display: flex; align-items: center; gap: 18px; min-width: 240px; }
.price-extra-info .card-icon { margin-bottom: 0; }
.price-extra h3 { font-size: 1.45rem; margin-bottom: 4px; }
.price-extra-info p { color: var(--muted); font-size: .93rem; max-width: 44ch; }
.price-extra-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.price-from-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.price-from-wrap .from {
  font-family: 'Michroma', sans-serif;
  font-size: .56rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-from-wrap .value {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-note {
  text-align: center;
  color: rgba(168, 176, 186, .75);
  font-size: .86rem;
  margin-top: 24px;
}

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid { display: block; }

.about-body { max-width: 820px; }

.about-body h2 { margin-bottom: 20px; }
.about-body .section-sub { margin-top: 0; margin-bottom: 36px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 20px clamp(1.6rem, 4vw, 3.4rem);
}
.stat dt {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: baseline;
}
.stat-stars dt { gap: 2px; }
.stat .star { width: clamp(17px, 2vw, 21px); height: auto; fill: var(--cyan); filter: drop-shadow(0 0 6px rgba(0, 191, 255, .6)); }
.stat dd { color: var(--muted); font-size: .86rem; margin-top: 8px; max-width: 13ch; }

/* ============================================================
   GALERIA / ANTES-DEPOIS
   ============================================================ */
.gallery { background: var(--bg-soft); }

.ba-wrap { margin-bottom: clamp(3rem, 6vw, 4.5rem); }

.ba {
  position: relative;
  aspect-ratio: 16 / 8.4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, .28);
  box-shadow: 0 24px 70px -40px rgba(0, 102, 255, .55);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}

.ba-pane { position: absolute; inset: 0; }
.ba-pane img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-before { clip-path: inset(0 var(--pos) 0 0); }

.ba-chip {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Michroma', sans-serif;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(5, 7, 10, .66);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
}
.ba-chip-a { left: 16px; }
.ba-chip-b { right: 16px; border-color: rgba(0, 191, 255, .4); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 3px;
  z-index: 4;
  background: linear-gradient(180deg, transparent, var(--cyan) 12% 88%, transparent);
  box-shadow: 0 0 18px rgba(0, 191, 255, .8);
  cursor: ew-resize;
  touch-action: none;
}
.ba-handle:focus-visible { outline-offset: 0; }
.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(5, 10, 16, .78);
  border: 1px solid rgba(0, 191, 255, .65);
  box-shadow: 0 0 24px rgba(0, 191, 255, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.ba-grip svg { width: 20px; height: 20px; }

.ba-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}
.ba-thumb {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 500;
  background: rgba(23, 27, 32, .6);
  transition: all .3s var(--ease);
}
.ba-thumb:hover { border-color: rgba(0, 191, 255, .5); color: var(--text); }
.ba-thumb.is-active {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(0, 102, 255, .7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item { aspect-ratio: 4 / 3; cursor: zoom-in; }
.gallery-item > img { transition: transform .6s var(--ease), filter .6s var(--ease); }
.gallery-item:hover > img { transform: scale(1.06); filter: brightness(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(5, 7, 10, .62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 4, 7, .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox[hidden] { display: none; pointer-events: none; }
.lightbox.is-open { opacity: 1; }
.lightbox img {
  max-width: min(1000px, 94vw);
  max-height: 86vh;
  border-radius: 14px;
  border: 1px solid rgba(0, 191, 255, .3);
  box-shadow: 0 30px 90px -30px rgba(0, 102, 255, .5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(23, 27, 32, .8);
  border: 1px solid var(--line);
  transition: border-color .3s ease, transform .3s ease;
}
.lightbox-close:hover { border-color: var(--cyan); transform: rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card { padding: 30px 26px; }
.why-card h3 { font-size: 1.18rem; }
.why-card p { font-size: .92rem; }
.why-card .card-icon { width: 50px; height: 50px; margin-bottom: 18px; }
.why-card .card-icon svg { width: 24px; height: 24px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { background: var(--bg-soft); }

.t-carousel {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  padding: 0 58px;
}

.t-viewport { overflow: hidden; border-radius: var(--radius); }
.t-track {
  display: flex;
  transition: transform .55s var(--ease);
}
.t-slide { flex: 0 0 100%; }

.t-slide > * { padding-inline: 8px; }
.t-slide .stars { display: flex; gap: 4px; margin-bottom: 20px; }
.t-slide .star { width: 19px; height: 19px; fill: var(--cyan); filter: drop-shadow(0 0 6px rgba(0, 191, 255, .55)); }

.t-slide blockquote {
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  text-wrap: balance;
  margin-bottom: 26px;
}

.t-slide footer { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Michroma', sans-serif;
  font-size: .68rem;
  letter-spacing: .08em;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 6px 18px -6px rgba(0, 102, 255, .7);
}
.t-slide cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.t-slide cite strong { font-size: .95rem; }
.t-slide cite small { color: var(--muted); font-size: .8rem; }

.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(23, 27, 32, .8);
  border: 1px solid var(--line);
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.t-arrow:hover { color: var(--cyan); border-color: rgba(0, 191, 255, .55); box-shadow: 0 0 20px -6px rgba(0, 191, 255, .6); }
.t-prev { left: 0; }
.t-next { right: 0; }
.t-arrow svg { width: 20px; height: 20px; }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.t-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(168, 176, 186, .3);
  transition: background .3s ease, width .3s var(--ease);
}
.t-dot::before { content: ""; position: absolute; inset: -9px; border-radius: 50%; }
.t-dot.is-active { width: 26px; background: var(--grad); }

/* ============================================================
   CTA
   ============================================================ */
.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.2rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 26px;
  border: 1px solid rgba(0, 191, 255, .3);
  background:
    radial-gradient(700px 340px at 18% 0%, rgba(0, 102, 255, .38), transparent 65%),
    radial-gradient(600px 300px at 85% 100%, rgba(0, 191, 255, .22), transparent 65%),
    linear-gradient(160deg, #071021, #0A1226 55%, #060B18);
  box-shadow: 0 40px 90px -50px rgba(0, 102, 255, .6);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 176, 186, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 176, 186, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 90% at 50% 50%, black, transparent);
  mask-image: radial-gradient(70% 90% at 50% 50%, black, transparent);
  pointer-events: none;
}
.cta-panel h2 {
  position: relative;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-bottom: 18px;
}
.cta-panel p {
  position: relative;
  color: var(--muted);
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 36px;
  font-size: 1.06rem;
}
.cta-panel .btn { position: relative; }
.cta-note {
  position: relative;
  margin-top: 22px;
  font-size: .84rem !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.loc-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.loc-info { display: flex; flex-direction: column; gap: 26px; justify-content: center; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-item .ico { width: 24px; height: 24px; color: var(--cyan); flex: none; margin-top: 3px; }
.loc-item strong { display: block; font-size: 1.02rem; }
.loc-item span { color: var(--muted); font-size: .92rem; }
.loc-info .btn { align-self: flex-start; margin-top: 6px; }

.loc-map { min-height: 380px; }
.loc-map iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(1) invert(.91) contrast(1.06) hue-rotate(185deg) saturate(1.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #04060A;
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 18px; max-width: 30ch; }

.footer-nav h3, .footer-contact h3 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.footer-nav ul { display: grid; gap: 10px; }
.footer-nav a, .footer-contact a {
  color: var(--muted);
  font-size: .93rem;
  transition: color .25s ease, padding-left .25s var(--ease);
}
.footer-nav a:hover { color: var(--text); padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact span { color: var(--muted); font-size: .93rem; line-height: 1.6; }
.footer-contact a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(168, 176, 186, .75); font-size: .8rem; }

/* Botão flutuante WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 12px 34px -10px rgba(0, 102, 255, .8);
  transition: transform .3s var(--ease);
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 191, 255, .5);
  animation: ringPulse 2.6s var(--ease) infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes ringPulse {
  0% { transform: scale(.9); opacity: 1; }
  70%, 100% { transform: scale(1.45); opacity: 0; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-top: calc(var(--header-h) + 30px); }
  .hero-media { max-width: 640px; }
  .hero-scroll { display: none; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    z-index: 105;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: calc(var(--header-h) + 18px) 28px 30px;
    background: rgba(4, 6, 10, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-104%);
    transition: transform .45s var(--ease);
  }
  .nav.is-open { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-list a { font-size: 1.15rem; padding-block: 12px; display: block; width: 100%; }
  .nav-cta { margin-top: 18px; }
}

@media (max-width: 640px) {
  .container { width: min(1180px, 100% - 36px); }
  .brand-mark img { height: 36px; }
  .brand-text strong { font-size: .76rem; letter-spacing: .06em; }
  .brand-text small { font-size: .54rem; letter-spacing: .22em; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:last-child { grid-column: span 2; }
  .t-carousel { padding: 0; }
  .t-arrow { position: static; transform: none; }
  .t-carousel { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .t-viewport { order: -1; flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .wa-float { right: 16px; bottom: 16px; }
}

/* ---------- Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .fade-up, [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hl-gloss { animation: none; }
  .hero-scroll { animation: none; }
}
