/* ============================================================
   ENDLESS IMPORTS — Landing Page (produção)
   Design system: tokens extraídos do logotipo (fonte da verdade)
   ============================================================ */

:root {
  /* Cores */
  --bg-0: #0B0908;
  --bg-1: #14110E;
  --surface: #1E1A15;
  --border: #332C24;
  --ink: #F5F5F7;
  --muted: #B5AEA6;
  --brand: #F7A81B;
  --brand-deep: #E07C0C;
  --wa: #25D366;
  --wa-ink: #04210F;

  /* Gradiente da marca (logo) */
  --grad-brand: linear-gradient(135deg, var(--brand), var(--brand-deep));

  /* Tipografia */
  --font-display: 'Clash Display', 'Archivo', sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;

  /* Motion */
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-quart: cubic-bezier(.25, 1, .5, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); text-wrap: balance; }

::selection { background: rgba(247, 168, 27, .35); }

a { color: inherit; }

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

.skip-link {
  position: absolute; top: -64px; left: 16px; z-index: 100;
  background: var(--brand); color: #1A1208; font-weight: 700;
  padding: 12px 18px; border-radius: 0 0 12px 12px; text-decoration: none;
  transition: top .2s var(--ease-quart);
}
.skip-link:focus { top: 0; }

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

/* ------------------------------------------------------------
   Reveals on-scroll — conteúdo visível por padrão (gate .js)
   ------------------------------------------------------------ */
.rv { opacity: 1; transform: none; }
.js .rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-expo), transform .8s var(--ease-expo);
}
.js .rv.in { opacity: 1; transform: none; }
.js .rv.d1 { transition-delay: .08s; }
.js .rv.d2 { transition-delay: .16s; }
.js .rv.d3 { transition-delay: .24s; }

/* ------------------------------------------------------------
   Nav pílula flutuante
   ------------------------------------------------------------ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 50;
  display: flex; align-items: center; gap: 26px;
  padding: 10px 14px 10px 20px; border-radius: 999px;
  background: rgba(20, 17, 14, .6);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--border); white-space: nowrap;
  max-width: calc(100vw - 24px);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { background: rgba(20, 17, 14, .88); box-shadow: 0 8px 32px rgba(0, 0, 0, .5); }

/* Smart header: desliza para fora ao descer, volta ao subir */
.nav { transition: box-shadow .3s, background .3s, transform .45s var(--ease-expo), opacity .45s var(--ease-expo); }
.nav.hidden { transform: translateX(-50%) translateY(-140%); opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .nav.hidden { transform: translateX(-50%); opacity: 1; pointer-events: auto; }
}

.logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: .04em; text-decoration: none;
}
.logo .inf { font-size: 21px; font-weight: 700; line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 500;
  padding: 6px 2px; transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--wa); color: var(--wa-ink);
  font-family: var(--font-body); font-weight: 700; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: none;
  min-height: 44px; padding: 10px 18px;
  transition: transform .2s var(--ease-quart), box-shadow .2s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 211, 102, .45); }
.btn-wa svg { flex: none; }

.nav .btn-wa { font-size: 13px; padding: 9px 16px; min-height: 38px; }

/* Menu mobile */
.nav-toggle {
  display: none; background: none; border: none; color: var(--ink);
  width: 44px; height: 44px; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%;
}
.mobile-menu {
  position: fixed; top: 78px; left: 12px; right: 12px; z-index: 49;
  background: rgba(20, 17, 14, .96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 22px; padding: 10px;
  display: none; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 14px 18px; border-radius: 14px; min-height: 44px; display: flex; align-items: center;
}
.mobile-menu a:hover { background: rgba(247, 168, 27, .08); color: var(--brand); }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 130px 24px 72px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 62%, rgba(247, 168, 27, .16), transparent 70%);
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: .7; } 50% { opacity: 1; } }

.aurora {
  position: absolute; inset: -20%; pointer-events: none;
  filter: blur(90px); opacity: .35;
  background:
    radial-gradient(420px 300px at 18% 22%, rgba(224, 124, 12, .30), transparent 65%),
    radial-gradient(480px 320px at 82% 70%, rgba(247, 168, 27, .22), transparent 65%);
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora {
  from { transform: translate3d(-3%, -2%, 0) rotate(-2deg); }
  to   { transform: translate3d(3%, 2%, 0) rotate(2deg); }
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--brand);
  border: 1px solid rgba(247, 168, 27, .35); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 28px;
  background: rgba(247, 168, 27, .07);
  position: relative; overflow: hidden; z-index: 1;
}
.badge::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .18) 50%, transparent 60%);
  animation: shine 3.5s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { transform: translateX(-110%); } 100% { transform: translateX(110%); } }

.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem); font-weight: 600;
  line-height: 1.06; letter-spacing: -.025em;
  max-width: 18ch; perspective: 600px; position: relative; z-index: 1;
}
.hero h1 em { font-style: normal; color: var(--brand); }
.js .hero h1 .w {
  display: inline-block; opacity: 0;
  transform: translateY(40px) rotateX(40deg); filter: blur(6px);
  animation: wordIn .9s var(--ease-expo) forwards;
}
@keyframes wordIn { to { opacity: 1; transform: none; filter: blur(0); } }

.hero .sub {
  color: var(--muted); font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 22px 0 34px; max-width: 46ch; line-height: 1.65; position: relative; z-index: 1;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.hero .btn-wa {
  font-size: 15.5px; padding: 15px 28px;
  box-shadow: 0 0 38px rgba(37, 211, 102, .32);
}
/* Pulso de glow compositor-only: anima opacity de um halo, não box-shadow */
.wa-pulse { position: relative; isolation: isolate; }
.wa-pulse::after {
  content: ""; position: absolute; inset: -14px; border-radius: 999px; z-index: -1;
  background: radial-gradient(closest-side, rgba(37, 211, 102, .5), transparent 70%);
  opacity: .35; pointer-events: none;
  animation: waPulse 2.6s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: .25; }
  50% { opacity: .85; }
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  padding: 15px 28px; border-radius: 999px; border: 1px solid var(--border);
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15.5px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--brand); background: rgba(247, 168, 27, .06); }

/* iPhone do hero — tilt 3D + glow ∞ */
.phone-wrap {
  margin-top: 44px; position: relative;
  display: flex; justify-content: center; perspective: 1000px;
  width: 100%; min-height: 460px;
}
.inf-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 560px; height: 280px; max-width: 150vw; pointer-events: none;
}
.js .inf-glow path { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw 2.4s .4s cubic-bezier(.4, 0, .2, 1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.phone {
  width: 240px; height: 480px; border-radius: 44px; position: relative; z-index: 1;
  will-change: transform;
  background: linear-gradient(160deg, #262019, #0E0C0A 60%);
  border: 1.5px solid #3D352B;
  box-shadow: 0 0 80px rgba(247, 168, 27, .22), 0 40px 80px rgba(0, 0, 0, .6);
  transition: transform .15s ease-out;
}
.phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 24px; border-radius: 999px; background: #000; z-index: 2;
}
.phone .screen {
  position: absolute; inset: 8px; border-radius: 38px; overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #2A2118, #0B0908 75%);
}
.phone .screen::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .07) 45%, transparent 60%);
  animation: screenShine 6s ease-in-out infinite;
  pointer-events: none;
}
.screen-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* O ∞ fica visível só enquanto o vídeo não carrega (fallback/poster) */
.screen-video ~ .inf-mark { z-index: -1; }
@media (prefers-reduced-motion: reduce) {
  .screen-video { display: none; } /* JS também pausa; aqui o ∞ volta a aparecer */
  .screen-video ~ .inf-mark { z-index: auto; }
}
@keyframes screenShine { 0%, 55% { transform: translateX(-120%); } 90%, 100% { transform: translateX(120%); } }
.phone .t {
  position: absolute; bottom: 26px; width: 100%; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
}
.phone .inf-mark {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  font-size: 84px; font-weight: 700; font-family: var(--font-display);
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ------------------------------------------------------------
   Marquee ∞ (assinatura da marca)
   ------------------------------------------------------------ */
.marquee {
  border-block: 1px solid var(--border); padding: 18px 0;
  overflow: hidden; background: var(--bg-1);
}
.marquee .track { display: flex; gap: 48px; width: max-content; animation: scrollX 28s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(-50%); } }
.marquee span {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--muted); display: inline-flex; align-items: center; gap: 48px; white-space: nowrap;
}
.marquee b { color: var(--brand); font-weight: 700; }

/* ------------------------------------------------------------
   Seções
   ------------------------------------------------------------ */
section { padding: 72px 24px; }
.wrap { max-width: 1080px; margin: 0 auto; }
.sec-title { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
.sec-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; line-height: 1.65; max-width: 60ch; }

/* Linhas de produto */
.lines { background: var(--bg-1); }
.line-row { display: flex; align-items: center; gap: 56px; margin-top: 48px; flex-wrap: wrap; }
.line-row.rev { flex-direction: row-reverse; }
.line-art { flex: 1; min-width: 280px; display: flex; justify-content: center; position: relative; padding: 40px 0; }
.blob {
  position: absolute; width: 300px; height: 300px; max-width: 80vw;
  border-radius: 46% 54% 60% 40% / 50% 45% 55% 50%;
  background: linear-gradient(135deg, rgba(247, 168, 27, .30), rgba(224, 124, 12, .12));
  filter: blur(4px);
  animation: morph 9s ease-in-out infinite alternate;
}
@keyframes morph {
  from { border-radius: 46% 54% 60% 40% / 50% 45% 55% 50%; transform: rotate(-3deg) scale(1); }
  to   { border-radius: 58% 42% 45% 55% / 42% 58% 42% 58%; transform: rotate(4deg) scale(1.06); }
}
.mini-phone-wrap { position: relative; z-index: 1; will-change: transform; perspective: 1100px; }
.mini-phone {
  width: 150px; height: 300px; border-radius: 28px;
  background: linear-gradient(160deg, #2A2219, #0E0C0A);
  border: 1px solid #3D352B; position: relative; z-index: 1;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .55); will-change: transform;
  transform-style: preserve-3d;
}
/* Flutuação 3D dos aparelhos (gentil, sem girar 360° porque iPhone é
   uma 'lasca' — rotação completa mostraria apenas a borda). Dois ritmos
   diferentes para os dois aparelhos parecerem vivos, não clones. */
@keyframes phoneFloatA {
  0%   { transform: translateY(-10px) rotateZ(-2deg) rotateY( 8deg); }
  50%  { transform: translateY(  5px) rotateZ( 2.5deg) rotateY(-6deg); }
  100% { transform: translateY(-10px) rotateZ(-2deg) rotateY( 8deg); }
}
@keyframes phoneFloatB {
  0%   { transform: translateY(  8px) rotateZ( 2.4deg) rotateY(-9deg); }
  50%  { transform: translateY( -7px) rotateZ(-2deg)   rotateY( 7deg); }
  100% { transform: translateY(  8px) rotateZ( 2.4deg) rotateY(-9deg); }
}
.float-a { animation: phoneFloatA 7s ease-in-out infinite; }
.float-b { animation: phoneFloatB 8.5s ease-in-out infinite; }
.mini-phone::before {
  content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 15px; border-radius: 999px; background: #000;
}
.mini-phone .mini-mark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 48px; font-weight: 700; font-family: var(--font-display);
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.line-txt { flex: 1.2; min-width: 300px; }
.line-txt h3 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 600; }
.line-txt p { color: var(--muted); margin: 14px 0 22px; line-height: 1.7; }
.checks { list-style: none; }
.checks li { display: flex; gap: 10px; align-items: center; font-weight: 500; font-size: 15px; margin-bottom: 11px; }
.checks svg { flex: none; }
.line-txt .btn-wa { font-size: 14px; padding: 12px 22px; margin-top: 10px; }

/* ------------------------------------------------------------
   Catálogo — cards com spotlight
   ------------------------------------------------------------ */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin-top: 40px;
}
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 24px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease-quart), box-shadow .25s;
  will-change: transform;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s; pointer-events: none;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(247, 168, 27, .13), transparent 65%);
}
.card:hover { border-color: rgba(247, 168, 27, .6); transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0, 0, 0, .5); }
.card:hover::before { opacity: 1; }
.card .ph-img {
  height: 150px; border-radius: 14px;
  background: radial-gradient(circle at 50% 30%, #2E251A, #14110E);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .ph-img span {
  font-family: var(--font-display); font-weight: 700; font-size: 34px;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: transform .35s var(--ease-expo);
}
.card:hover .ph-img span { transform: scale(1.12); }
.cond {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.cond.novo { color: var(--brand); background: rgba(247, 168, 27, .1); border: 1px solid rgba(247, 168, 27, .3); }
.cond.semi { color: #9CC4FF; background: rgba(120, 170, 255, .08); border: 1px solid rgba(120, 170, 255, .25); }
.card h3 { font-weight: 600; font-size: 19px; }
.card .gb { color: var(--muted); font-size: 13.5px; margin: 3px 0 14px; }
.price { font-size: 13px; color: var(--muted); }
.price strong { display: block; font-size: 24px; color: var(--ink); font-family: var(--font-display); }
.card .btn-wa { width: 100%; font-size: 14px; padding: 12px; margin-top: 16px; }
.cat-note { margin-top: 28px; color: var(--muted); font-size: 13.5px; text-align: center; }

.noscript-list { margin-top: 40px; }
.noscript-list ul { list-style: none; }
.noscript-list li { padding: 14px 0; border-bottom: 1px solid var(--border); }
.noscript-list a { color: var(--brand); }

/* ------------------------------------------------------------
   Números
   ------------------------------------------------------------ */
.nums { background: var(--bg-1); }
.nums-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.num b {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem); display: block;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.num > span { color: var(--muted); font-size: 14.5px; font-weight: 500; margin-top: 6px; display: block; }
.num b .count { font: inherit; color: inherit; display: inline; }

/* ------------------------------------------------------------
   FAQ (objeções rápidas)
   ------------------------------------------------------------ */
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: border-color .25s;
  position: relative;
}
.faq-list details[open] { border-color: rgba(247, 168, 27, .45); }

/* Flash sutil na linha superior do card, disparado apenas no hover:
   o glint atravessa a linha uma vez a cada passagem do mouse */
.faq-list details::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 30%, rgba(247, 168, 27, .55) 50%, transparent 70%);
  transform: translateX(-100%);
}
.faq-list details:hover::after { animation: faqShine .9s var(--ease-quart) forwards; }
.faq-list details[open]::after { animation: none; opacity: 0; }
@keyframes faqShine {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none; padding: 20px 22px; min-height: 44px;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .chev { flex: none; transition: transform .3s var(--ease-quart); color: var(--brand); }
.faq-list details[open] summary .chev { transform: rotate(180deg); }
.faq-list .ans { padding: 0 22px 22px; color: var(--muted); line-height: 1.7; max-width: 62ch; }

/* ------------------------------------------------------------
   Manifesto
   ------------------------------------------------------------ */
.manifesto { background: var(--bg-1); }
.manifesto-quote {
  position: relative; margin-top: 36px; max-width: 720px;
  padding: 8px 0 0 32px; border-left: 1px solid rgba(247, 168, 27, .4);
}
.manifesto-mark {
  position: absolute; top: -34px; left: 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1;
  opacity: .9;
}
.manifesto-quote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.45;
  color: var(--ink); margin-bottom: 18px; text-wrap: pretty; max-width: 30ch;
}
.manifesto-quote footer {
  margin-top: 26px; color: var(--brand); font-weight: 600; font-size: 14.5px;
  border-top: 0; padding: 0; /* anula o estilo do footer global da página */
}
@media (max-width: 760px) {
  .manifesto-quote { padding-left: 22px; }
  .manifesto-mark { left: 16px; }
}

/* ------------------------------------------------------------
   Especialista + loja
   ------------------------------------------------------------ */
.spec-card {
  display: flex; gap: 40px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 28px;
  padding: 48px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.spec-card::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 168, 27, .14), transparent 70%);
}
.avatar {
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 38px; color: #1A1208; flex: none;
}
.spec-txt h3 { font-size: 1.7rem; font-weight: 600; }
.spec-txt .role { color: var(--brand); font-weight: 600; font-size: 14px; margin: 4px 0 12px; }
.spec-txt .role a { color: inherit; text-decoration: none; }
.spec-txt .role a:hover { text-decoration: underline; }
.spec-txt p { color: var(--muted); line-height: 1.7; max-width: 54ch; }
.addr { margin-top: 16px; font-size: 14px; line-height: 1.6; font-style: normal; }
.addr a { color: var(--brand); text-decoration: none; }
.addr a:hover { text-decoration: underline; }

.map-wrap {
  margin-top: 28px; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 16 / 7; background: var(--surface);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.4) contrast(1.05); }

/* ------------------------------------------------------------
   CTA final
   ------------------------------------------------------------ */
.final { text-align: center; position: relative; padding: 96px 24px; overflow: hidden; }
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 50% at 50% 55%, rgba(247, 168, 27, .18), transparent 70%);
  animation: breathe 5s ease-in-out infinite;
}
.final h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 600; position: relative; }
.final p { color: var(--muted); margin: 18px 0 36px; font-size: 1.1rem; position: relative; }
.final .btn-wa {
  font-size: 17px; padding: 18px 38px;
  box-shadow: 0 0 48px rgba(37, 211, 102, .35);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
footer {
  border-top: 1px solid var(--border); padding: 40px 24px;
  color: var(--muted); font-size: 13.5px;
}
.foot-grid {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
footer .logo { font-size: 14px; color: var(--ink); margin-bottom: 8px; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--brand); }
footer address { font-style: normal; line-height: 1.7; }
.legal { max-width: 1080px; margin: 24px auto 0; padding-top: 18px; border-top: 1px solid rgba(51, 44, 36, .5); font-size: 12.5px; }

/* ------------------------------------------------------------
   Voltar ao topo (discreto, no rodapé)
   ------------------------------------------------------------ */
.to-top-wrap { max-width: 1080px; margin: 20px auto 0; text-align: center; }
.to-top {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--border); border-radius: 999px;
  color: var(--muted); font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  padding: 10px 18px; min-height: 44px; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.to-top:hover { color: var(--brand); border-color: rgba(247, 168, 27, .45); }

/* ------------------------------------------------------------
   Aviso de cookies
   ------------------------------------------------------------ */
.cookies {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70;
  margin: 0 auto; max-width: 620px;
  display: flex; align-items: center; gap: 18px;
  background: rgba(30, 26, 21, .95);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 16px 20px;
}
.cookies[hidden] { display: none; }
.cookies p { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 0; }
.cookies-ok {
  flex: none; background: var(--grad-brand); color: #1A1208;
  border: none; border-radius: 999px; font-family: var(--font-body);
  font-weight: 700; font-size: 13px; padding: 10px 20px; min-height: 44px;
  cursor: pointer; transition: transform .2s var(--ease-quart), box-shadow .2s;
}
.cookies-ok:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(247, 168, 27, .35); }
@media (max-width: 560px) { .cookies { flex-direction: column; align-items: stretch; text-align: center; bottom: 12px; } }

/* ------------------------------------------------------------
   FAB WhatsApp flutuante
   ------------------------------------------------------------ */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  color: var(--wa-ink); box-shadow: 0 8px 30px rgba(37, 211, 102, .45);
  opacity: 0; transform: translateY(16px) scale(.8); pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease-expo); text-decoration: none;
}
.fab.show { opacity: 1; transform: none; pointer-events: auto; }
.no-js .fab { opacity: 1; transform: none; pointer-events: auto; }

/* ------------------------------------------------------------
   Responsivo
   ------------------------------------------------------------ */
@media (max-width: 760px) {
  .nav { gap: 12px; top: 12px; padding: 8px 10px 8px 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  section { padding: 72px 20px; }
  .hero { padding-top: 110px; padding-bottom: 48px; }
  .phone-wrap { min-height: 440px; }
  .phone { width: 210px; height: 420px; }
  .inf-glow { width: 460px; height: 230px; }
  .line-row, .line-row.rev { flex-direction: column; gap: 24px; margin-top: 56px; }
  .spec-card { padding: 32px 24px; gap: 24px; }
  .map-wrap { aspect-ratio: 4 / 3; }
  .foot-grid { flex-direction: column; }
}

/* ------------------------------------------------------------
   Reduced motion — desliga TUDO
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .js .rv, .js .hero h1 .w { opacity: 1; transform: none; filter: none; }
  .js .inf-glow path { stroke-dashoffset: 0; }
  .fab { opacity: 1; transform: none; pointer-events: auto; }
}
