/* ============================================================
   ZAPPO | Mobilidade — Landing Page
   Identidade oficial (manual ID - ZAPPO):
   Amarelo #FFC400 | Preto #0A0A0A | Branco #FFFFFF
   Tipografia oficial: Acumin Pro ExtraCondensed
   ============================================================ */

@font-face {
  font-family: 'Acumin Pro ExtraCondensed';
  src: url('../assets/fonts/AcuminProExtraCondensed.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #FFC400;
  --yellow-dark: #DBA800;
  --black: #0A0A0A;
  --black-soft: #161616;
  --gray: #5c5c5c;
  --gray-light: #f5f5f2;
  --white: #ffffff;
  --radius: 16px;
  --font-title: 'Acumin Pro ExtraCondensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3 {
  font-family: var(--font-title);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ico { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.12em; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 196, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.brand-name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav a:hover { color: var(--yellow); }

.btn {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}

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

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 24px;
  font-size: 0.9rem;
  box-shadow: 0 4px 18px rgba(255, 196, 0, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(255, 196, 0, 0.12), transparent 60%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 80px 0 90px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.4);
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.hl { color: var(--yellow); }

.hl-dark {
  background: var(--yellow);
  padding: 0 10px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 34rem;
  margin-bottom: 34px;
}

.hero-sub strong { color: var(--yellow); font-weight: 600; }

/* Botões das lojas */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-center { justify-content: center; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(255, 196, 0, 0.3);
  border-color: var(--yellow);
}

.store-ico { width: 26px; height: 26px; fill: currentColor; flex-shrink: 0; }

.store-btn span {
  display: flex;
  flex-direction: column;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.15;
}

.store-btn small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
}

.stat { display: flex; flex-direction: column; }

.stat strong {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
}

.stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Mockup do celular */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.bolt-bg {
  position: absolute;
  inset: -40px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bolt-bg svg {
  width: 480px;
  height: 480px;
  fill: rgba(255, 196, 0, 0.07);
  transform: rotate(12deg);
}

.phone {
  position: relative;
  width: 280px;
  background: #1d1d1d;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 196, 0, 0.25),
    0 0 80px rgba(255, 196, 0, 0.12);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #1d1d1d;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  background: var(--gray-light);
  border-radius: 28px;
  overflow: hidden;
  contain: paint;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 26px 16px 12px;
}

.app-logo { width: 22px; height: 22px; border-radius: 6px; }

.app-map {
  position: relative;
  height: 210px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(160deg, #232323, #2e2e2e);
  background-size: 28px 28px, 28px 28px, cover;
}

.map-route {
  position: absolute;
  top: 40px;
  left: 44px;
  width: 160px;
  height: 120px;
  border: 3px dashed var(--yellow);
  border-left: none;
  border-top: none;
  border-radius: 0 0 40px 0;
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--white);
}

.map-dot-a { top: 30px; left: 195px; background: var(--yellow); }
.map-dot-b { top: 152px; left: 36px; background: var(--black); }

.map-car {
  position: absolute;
  top: 120px;
  left: 168px;
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(255, 196, 0, 0.25);
}

.map-car svg { width: 22px; height: 22px; fill: var(--black); }

.app-card {
  background: var(--white);
  border-radius: 20px 20px 28px 28px;
  margin-top: -18px;
  position: relative;
  padding: 16px;
}

.app-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--gray);
  padding: 7px 0;
  border-bottom: 1px solid #eee;
}

.dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot-yellow { background: var(--yellow); }
.dot-black { background: var(--black); }

.app-btn {
  width: 100%;
  margin-top: 14px;
  background: var(--yellow);
  border: 0;
  border-radius: 12px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px;
  color: var(--black);
  cursor: default;
}

/* Faixa deslizante */
.hero-strip {
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  padding: 12px 0;
}

.strip-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: slide 28s linear infinite;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  padding-right: 48px;
  line-height: 1;
}

/* Slogan: destaque só tipográfico, sem caixa — maior e mais espaçado */
.strip-track span.strip-slogan {
  font-size: 1.2em;
  letter-spacing: 0.16em;
}

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

/* ============ SEÇÕES ============ */
.section { padding: 90px 0; }

.section-kicker {
  display: block;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 12px;
}

.kicker-dark { color: var(--black); opacity: 0.65; }

.section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 48px;
}

/* Vantagens */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.feature-ico {
  width: 54px;
  height: 54px;
  background: var(--black);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-ico svg { width: 28px; height: 28px; fill: var(--yellow); }

.feature h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; }

.feature p { font-size: 0.92rem; color: var(--gray); }

/* Como funciona */
.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .section-kicker { color: var(--yellow); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  background: var(--black-soft);
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.2s, border-color 0.2s;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 12px;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }

.step p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); }

/* Sustentabilidade */
.section-yellow {
  background: var(--yellow);
  color: var(--black);
}

.sust-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 40px;
}

.sust-text h2 { margin-bottom: 20px; }

.sust-text p {
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 24px;
}

.sust-list { list-style: none; }

.sust-list li {
  font-weight: 600;
  padding: 8px 0 8px 34px;
  position: relative;
}

.sust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--black);
  border-radius: 50%;
  clip-path: none;
}

.sust-list li::after {
  content: '⚡';
  position: absolute;
  left: 4px;
  top: 7px;
  font-size: 0.8rem;
}

.sust-badge {
  justify-self: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  width: 240px;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  transform: rotate(-6deg);
}

.sust-badge svg { width: 54px; height: 54px; fill: var(--yellow); }

.sust-badge strong {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.sust-badge span {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
}

/* Download CTA */
.cta { text-align: center; }

.cta-inner { display: flex; flex-direction: column; align-items: center; }

.cta-logo {
  width: 110px;
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 10px 30px rgba(255, 196, 0, 0.35));
}

.cta h2 { margin-bottom: 14px; }

.cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black-soft);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 36px 0;
}

.footer-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-loc .ico { color: var(--yellow); width: 1.1em; height: 1.1em; }

.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.footer-insta:hover { opacity: 0.8; }

.footer-insta .ico { width: 1.3em; height: 1.3em; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.dev-credit { margin-top: 6px; }

.dev-credit a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dev-credit a:hover { text-decoration: underline; }

/* ============ RESPONSIVO ============ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 0 70px;
    text-align: center;
  }

  .hero-content { display: flex; flex-direction: column; align-items: center; }

  .hero-visual { margin-top: 30px; }

  .features { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .sust-inner { grid-template-columns: 1fr; text-align: center; }

  .sust-text .sust-list { text-align: left; display: inline-block; }

  .btn-header { display: none; }

  /* Sem backdrop-filter no mobile: ele criaria um "containing block"
     e prenderia o painel fixo do menu dentro do header */
  .header { backdrop-filter: none; background: rgba(10, 10, 10, 0.97); }

  /* Menu offcanvas: painel lateral deslizante */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 16px 22px calc(28px + env(safe-area-inset-bottom));
    border-left: 1px solid rgba(255, 196, 0, 0.3);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.6);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0s linear 0.32s;
    overflow-y: auto;
    z-index: 220;
  }

  .nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.32s ease, visibility 0s;
  }

  .nav a {
    padding: 15px 2px;
    font-size: 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-toggle { display: flex; margin-left: auto; }
}

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

  .steps { grid-template-columns: 1fr; }

  .hero-stats { gap: 24px; }

  .store-buttons { flex-direction: column; width: 100%; }

  .store-btn { justify-content: center; }

  .section { padding: 64px 0; }
}

/* ============================================================
   MELHORIAS: movimento, telas do app e tab bar mobile
   ============================================================ */

/* Âncoras não escondem atrás do header fixo */
section[id] { scroll-margin-top: 76px; }

/* ---------- Barra de progresso de rolagem ---------- */
.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.7);
  z-index: 101;
}

/* ---------- Header compacto ao rolar ---------- */
.header-inner { transition: padding 0.25s ease; }

.header.scrolled .header-inner { padding: 8px 0; }

.brand-logo { transition: width 0.25s ease, height 0.25s ease; }

.header.scrolled .brand-logo { width: 34px; height: 34px; }

/* ---------- Animações de entrada (scroll reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Movimento contínuo no hero ---------- */
.phone { animation: float 6s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Anel de pulso animado por transform/opacity (roda no compositor,
   sem repaint — box-shadow animado travava a rolagem no mobile) */
.map-car::after,
.shot-car::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid rgba(255, 196, 0, 0.55);
  animation: ring 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(1.9); opacity: 0; }
}

.pill .ico { animation: blink 1.8s ease-in-out infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- Seção "O app" (telas) ---------- */
.section-app { background: var(--gray-light); }

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: -32px 0 44px;
}

.shots {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  /* "proximity" + touch-action deixam a rolagem VERTICAL da página livre
     quando o toque começa sobre o carrossel (mandatory prende o gesto) */
  scroll-snap-type: x proximity;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 22px;
  scrollbar-width: none;
}

.shots::-webkit-scrollbar { display: none; }

.shot {
  flex: 0 0 240px;
  scroll-snap-align: center;
  text-align: center;
}

.shot h3 { font-size: 1.05rem; font-weight: 800; margin-top: 18px; }

.shot > p { font-size: 0.88rem; color: var(--gray); margin-top: 4px; }

.shot-phone {
  background: #1d1d1d;
  border-radius: 30px;
  padding: 9px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* Cada "celular" vira uma camada própria: o mapa quadriculado é
     rasterizado uma vez e a rolagem horizontal só compõe a camada,
     em vez de repintar os gradientes a cada quadro (evita a trava) */
  will-change: transform;
}

.shot:hover .shot-phone {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.3), 0 0 0 2px var(--yellow);
}

.shot-screen {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  text-align: left;
  contain: paint;
}

.shot-bar {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 14px 14px 11px;
  flex-shrink: 0;
}

.shot-map {
  position: relative;
  flex: 1;
  min-height: 120px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(160deg, #232323, #2e2e2e);
  background-size: 22px 22px, 22px 22px, cover;
}

.shot-route {
  position: absolute;
  top: 26px;
  left: 34px;
  right: 44px;
  bottom: 34px;
  border: 3px dashed var(--yellow);
  border-left: none;
  border-top: none;
  border-radius: 0 0 34px 0;
}

.shot-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid var(--white);
}

.shot-dot-a { top: 18px; right: 36px; background: var(--yellow); }
.shot-dot-b { bottom: 26px; left: 26px; background: var(--black); }

.shot-car {
  position: absolute;
  bottom: 14px;
  right: 34px;
  width: 34px;
  height: 34px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot-car svg { width: 19px; height: 19px; fill: var(--black); }

.shot-card {
  background: var(--white);
  padding: 12px 14px 14px;
  flex-shrink: 0;
}

.shot-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  color: var(--gray);
  padding: 7px 0;
  border-bottom: 1px solid #eee;
}

.shot-btn {
  width: 100%;
  margin-top: 12px;
  background: var(--yellow);
  border: 0;
  border-radius: 11px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 11px;
  color: var(--black);
  cursor: default;
}

.shot-btn-ghost {
  background: transparent;
  border: 2px solid var(--black);
}

.shot-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray-light);
}

.shot-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 13px;
  padding: 10px 12px;
}

.shot-option.selected { border-color: var(--yellow); }

.shot-option svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
  flex-shrink: 0;
}

.shot-option span { display: flex; flex-direction: column; line-height: 1.25; }

.shot-option strong { font-size: 0.8rem; }

.shot-option small { font-size: 0.68rem; color: var(--gray); }

.shot-option em {
  margin-left: auto;
  font-style: normal;
  font-weight: 800;
  color: var(--yellow-dark);
}

.shot-driver {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0 8px;
}

.shot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shot-driver span:not(.shot-avatar) { display: flex; flex-direction: column; line-height: 1.3; }

.shot-driver strong { font-size: 0.82rem; }

.shot-driver small { font-size: 0.7rem; color: var(--gray); }

.shot-plate {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.66rem;
  background: var(--gray-light);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 4px 7px;
}

.shot-check {
  width: 52px;
  height: 52px;
  margin: 6px auto 0;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.shot-done {
  text-align: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.shot-stars {
  text-align: center;
  color: var(--yellow-dark);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  margin-top: auto;
}

.shots-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.shots-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: transparent;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.shots-nav button:hover:not(:disabled) {
  background: var(--yellow);
  transform: scale(1.08);
}

.shots-nav button:disabled { opacity: 0.3; cursor: default; }

.shots-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 18px;
}

/* ---------- Tab bar mobile (estilo app) ---------- */
.tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 196, 0, 0.25);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
}

.tabbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 0 3px;
  border-radius: 12px;
  transition: color 0.2s;
}

.tabbar a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.2s;
}

.tabbar a.active { color: var(--yellow); }

.tabbar a.active svg { transform: translateY(-2px) scale(1.12); }

@media (max-width: 900px) {
  .tabbar { display: flex; }

  body { padding-bottom: 64px; }

  .shot { flex-basis: 225px; }
}

/* ============================================================
   IDENTIDADE OFICIAL ZAPPO (manual da marca)
   ============================================================ */

/* Tipografia: Acumin ExtraCondensed pede caixa alta e corpos maiores */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 { font-size: clamp(2.9rem, 6.4vw, 5rem); line-height: 1.02; }

.section h2 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); }

.feature h3 { font-size: 1.5rem; }

.step h3 { font-size: 1.4rem; }

.shot h3 { font-size: 1.4rem; }

.stat strong { font-size: 2rem; }

.section-kicker { letter-spacing: 0.3em; font-size: 0.95rem; }

.btn, .store-btn span, .shot-btn, .app-btn {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-yellow { font-size: 1.05rem; padding: 10px 26px; }

.nav a {
  font-family: var(--font-title);
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.store-btn span { font-size: 1.2rem; }

/* Logotipo oficial no header/footer */
.brand-lockup { height: 30px; width: auto; transition: height 0.25s ease; }

.header.scrolled .brand-lockup { height: 24px; }

.footer .brand-lockup { height: 34px; }

.brand-icon { width: 40px; height: auto; }

/* Tagline oficial */
.tagline,
.cta .tagline {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-size: 1.05rem;
}

/* Marca d'água com o ícone Z */
.section-yellow { position: relative; overflow: hidden; }

.watermark {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 380px;
  opacity: 0.08;
  pointer-events: none;
}

/* ---------- Seção Serviços & Tarifas ---------- */
.tarifa-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.tarifa-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tarifa-box::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 170px;
  height: 170px;
  background: url('../assets/icone-amarelo.png') no-repeat center / contain;
  opacity: 0.14;
}

.tarifa-label {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  font-size: 0.95rem;
}

.tarifa-price {
  font-family: var(--font-title);
  font-size: clamp(3.6rem, 7vw, 5rem);
  line-height: 1;
  color: var(--yellow);
  margin: 10px 0 6px;
}

.tarifa-price small { font-size: 0.4em; color: var(--white); }

.tarifa-desc { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }

.tarifa-rows { margin-top: 22px; border-top: 1px solid rgba(255, 196, 0, 0.25); }

.tarifa-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.tarifa-row strong { font-family: var(--font-title); font-size: 1.15rem; color: var(--yellow); white-space: nowrap; }

.tarifa-note { margin-top: 16px; font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); }

.servicos { display: flex; flex-direction: column; gap: 20px; }

.servico {
  display: flex;
  gap: 18px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
  flex: 1;
  align-items: center;
}

.servico:hover { transform: translateX(6px); border-color: var(--yellow); }

.servico-ico {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.servico-ico svg { width: 26px; height: 26px; fill: var(--black); }

.servico h3 { font-size: 1.4rem; margin-bottom: 2px; }

.servico p { font-size: 0.9rem; color: var(--gray); }

/* ---------- Nossa frota ---------- */
.frota-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.frota-visual {
  position: relative;
  margin-bottom: 40px;
}

.frota-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.frota-foto-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.frota-foto-mini {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 46%;
  border-radius: 14px;
  border: 5px solid var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.frota-sub {
  color: var(--gray);
  font-size: 1.02rem;
  margin: -28px 0 22px;
}

@media (max-width: 900px) {
  .frota-grid { grid-template-columns: 1fr; gap: 32px; }

  .frota-foto-mini { right: 4px; bottom: -28px; }

  .frota-visual { margin-bottom: 24px; }
}

/* ---------- Fluxo de energia solar ---------- */
.solar-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.solar-step {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.02rem;
  line-height: 1.15;
  padding: 12px 18px;
  border-radius: 12px;
  text-align: center;
}

.solar-arrow {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--black);
  opacity: 0.6;
}

/* ---------- Quem somos ---------- */
.equipe-sub {
  color: var(--gray);
  font-size: 1.02rem;
  max-width: 44rem;
  margin: -28px 0 24px;
}

.equipe-valores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.valor-chip {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
  padding: 8px 18px;
  border-radius: 999px;
}

.equipe-fotos {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}

.equipe-foto-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.equipe-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.equipe-foto-wrap:hover img { transform: scale(1.04); }

.equipe-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(10, 10, 10, 0.82);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

@media (max-width: 900px) {
  .equipe-fotos { grid-template-columns: 1fr; }
}

/* ---------- Seção Motorista Parceiro ---------- */
.driver { background: var(--black-soft); color: var(--white); position: relative; overflow: hidden; }

.driver::before {
  content: '';
  position: absolute;
  left: -70px;
  top: -70px;
  width: 340px;
  height: 340px;
  background: url('../assets/icone-branco.png') no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
}

.driver .section-kicker { color: var(--yellow); }

.driver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.driver-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.driver-card:hover { transform: translateY(-6px); border-color: var(--yellow); }

.driver-card .feature-ico { background: var(--yellow); }

.driver-card .feature-ico svg { fill: var(--black); }

.driver-card h3 { font-size: 1.45rem; margin-bottom: 8px; }

.driver-card p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.65); }

.driver-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-outline {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  padding: 10px 26px;
  font-size: 1.05rem;
  border-radius: 999px;
}

.btn-outline:hover { background: var(--yellow); color: var(--black); }

/* ---------- Instagram (SnapWidget + overlay) ---------- */
.section-insta { background: var(--gray-light); text-align: center; }

.section-insta .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

.insta-embed {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  background: #fff;
  border: 1px solid var(--linha, #e7e7e3);
}

/* O feed é só visual — todos os cliques vão para o overlay */
.insta-embed .snapwidget-widget {
  display: block;
  pointer-events: none;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  transition: background 0.25s ease;
}

.insta-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.insta-hint svg { width: 22px; height: 22px; fill: currentColor; }

.insta-overlay:hover { background: rgba(10, 10, 10, 0.32); }

.insta-overlay:hover .insta-hint { opacity: 1; transform: translateY(0) scale(1); }

.insta-cta { margin-top: 28px; }

.insta-cta .btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.insta-cta .btn-yellow .ico { width: 1.2em; height: 1.2em; }

@media (prefers-reduced-motion: reduce) {
  .insta-hint { transition: none; }
}

/* Contatos no rodapé */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
}

.footer-contacts a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contacts a:hover { color: var(--yellow); }

.footer-contacts .ico { color: var(--yellow); }

.footer-tagline {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-size: 0.95rem;
  margin-top: 8px;
}

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

  .driver-grid { grid-template-columns: 1fr; }

  .solar-flow { justify-content: center; }

  .brand-lockup { height: 26px; }
}

/* ---------- Offcanvas: overlay, cabeçalho/rodapé do painel ---------- */
.nav-head, .nav-foot { display: none; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.show { opacity: 1; pointer-events: auto; }

@media (min-width: 901px) {
  .nav-overlay { display: none; }
}

body.menu-aberto { overflow: hidden; }

/* Hambúrguer vira X */
.menu-toggle span { transition: transform 0.3s ease, opacity 0.2s ease; }

.menu-toggle.ativo span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.ativo span:nth-child(2) { opacity: 0; }
.menu-toggle.ativo span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0 16px;
    border-bottom: 2px solid var(--yellow);
    margin-bottom: 6px;
  }

  .nav-logo { height: 26px; width: auto; }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 196, 0, 0.12);
    border: 1px solid rgba(255, 196, 0, 0.4);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
  }

  .nav-close svg { width: 18px; height: 18px; fill: var(--yellow); }

  .nav-foot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
  }

  .nav-foot .tagline { font-size: 0.82rem; letter-spacing: 0.12em; }

  .nav-foot a.nav-insta {
    border-bottom: none;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    padding: 0;
  }
}

/* ---------- Acessibilidade: reduz movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  .phone, .map-car, .shot-car, .map-car::after, .shot-car::after,
  .pill .ico, .strip-track { animation: none !important; }

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

  html { scroll-behavior: auto; }
}
