/* ============ Jà Motoshop ============ */
:root {
  --orange: #e87b1e;
  --orange-bright: #ff9433;
  --black: #0c0a09;
  --black-2: #16120f;
  --black-3: #1f1a16;
  --paper: #f4efe9;
  --text: #e8e2da;
  --text-dim: #a89f94;
  --blue-ink: #0b131d;
  --blue-line: #cfe4f5;
  --blue-grid: rgba(126, 176, 220, 0.08);
  --whats: #25d366;
  --radius: 14px;
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1120px, 92%); margin: 0 auto; }

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #fff;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 600; margin-bottom: 0.75rem; }
h3 { font-size: 1.15rem; font-weight: 600; }
.accent { color: var(--orange-bright); }

.kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-sub { color: var(--text-dim); max-width: 60ch; margin-bottom: 2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #14100c; }
.btn-primary:hover { background: var(--orange-bright); box-shadow: 0 8px 24px rgba(232, 123, 30, 0.35); }
.btn-whats { background: var(--whats); color: #06240f; }
.btn-whats:hover { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.25); color: #fff; }
.btn-ghost:hover { border-color: var(--orange-bright); color: var(--orange-bright); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 46px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  font-size: 1.05rem;
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--orange-bright); }
.main-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.main-nav a {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--orange-bright); text-decoration: none; border-bottom-color: var(--orange); }
.header-cta { font-size: 0.8rem; padding: 0.55rem 1.1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 110px 0 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(232, 123, 30, 0.14), transparent 65%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,0.025) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,0.025) 39px 40px),
    var(--black);
}
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: min(340px, 62vw);
  margin-bottom: 0.5rem;
  /* o PNG tem fundo preto sólido; screen faz o preto sumir sobre o fundo escuro */
  mix-blend-mode: screen;
}
.hero-sub { max-width: 54ch; color: var(--text-dim); margin: 1.1rem 0 1.8rem; font-size: 1.05rem; }
.hero-sub strong { color: var(--text); }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.4rem; }
.badge {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 0.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  min-width: 150px;
}
.badge strong { font-family: var(--font-head); text-transform: uppercase; color: var(--orange-bright); letter-spacing: 0.05em; }
.badge span { font-size: 0.8rem; color: var(--text-dim); }
.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-hint:hover { text-decoration: none; color: var(--orange-bright); }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ---------- Moto 3D ---------- */
.moto3d {
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(232, 123, 30, 0.08), transparent 70%),
    var(--black-2);
}
.moto3d-inner { text-align: center; }
.moto3d model-viewer {
  width: 100%;
  height: min(72svh, 640px);
  margin-top: 1rem;
  background: transparent;
  --progress-bar-color: transparent;
}
.mv-progress {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(280px, 60%);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.mv-progress-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.moto3d-note {
  color: var(--text-dim);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-head);
}

/* ---------- Sobre ---------- */
.sobre { background: var(--black-2); }
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sobre p { margin-top: 1rem; color: var(--text-dim); }
.sobre p strong { color: var(--text); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--orange-bright);
  letter-spacing: 0.03em;
}
.stat span { font-size: 0.85rem; color: var(--text-dim); }

/* ---------- Serviços ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(232, 123, 30, 0.5); }
.card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.card p { color: var(--text-dim); font-size: 0.93rem; margin-top: 0.5rem; }

/* ---------- Antes & Depois ---------- */
.antes-depois { background: var(--black-2); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.ba-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.ba-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  color: #14100c;
}
.ba-tag.antes { background: #c8c2ba; }
.ba-tag.depois { background: var(--orange); }
.galeria { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.2rem; }
.galeria figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.galeria img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.galeria-cta { margin-top: 1.6rem; color: var(--text-dim); }

/* ---------- Reviews ---------- */
.reviews { text-align: center; }
.reviews-inner { display: flex; flex-direction: column; align-items: center; }
.stars {
  color: var(--orange-bright);
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  margin: 0.4rem 0 0.6rem;
  text-shadow: 0 0 24px rgba(232, 123, 30, 0.5);
}

/* ---------- Horário ---------- */
.horario { background: var(--black-2); }
.feriado-nota {
  margin-top: 1rem;
  background: rgba(232, 123, 30, 0.1);
  border: 1px solid rgba(232, 123, 30, 0.35);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-size: 0.95rem;
  max-width: 46ch;
}
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.98rem;
}
.hours li span:last-child { font-variant-numeric: tabular-nums; color: var(--text-dim); }
.hours li.closed span:last-child { color: #d9695f; }
.hours li.today {
  background: rgba(232, 123, 30, 0.12);
  border-radius: 8px;
  border-bottom-color: transparent;
}
.hours li.today span:first-child::after {
  content: "hoje";
  margin-left: 0.6rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  background: var(--orange);
  color: #14100c;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  vertical-align: 2px;
}

/* ---------- Localização ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.loc-info {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
}
.address { font-size: 1.05rem; }
.phone a { font-size: 1.15rem; font-weight: 600; }
.loc-ctas { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #080706;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.8rem 0 2rem;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo { height: 84px; width: auto; opacity: 0.95; }
.footer-info { color: var(--text-dim); font-size: 0.9rem; }
.footer-note { color: #5f574e; font-size: 0.78rem; margin-top: 0.6rem; }

/* ---------- WhatsApp float ---------- */
.whats-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whats);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform 0.15s ease;
}
.whats-float:hover { transform: scale(1.08); }

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(12, 10, 9, 0.97);
    flex-direction: column;
    padding: 1.2rem 6%;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .ba-grid, .galeria { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .moto3d model-viewer { height: 58svh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-hint { animation: none; }
}
