/* =========================================================
   ZONADEV — LANDING COMERCIAL
   Sistema visual próprio (não é o "console de rede" do portfólio):
   cards de pacote, prova social, FAQ — página feita pra vender.
   ========================================================= */

:root {
  --ink: #0e1416;
  --panel: #161f23;
  --panel-2: #1b262b;
  --line: #223236;
  --bone: #eef1f1;
  --fog: #93a3a8;
  --fog-dim: #6d7b7f;
  --amber: #f2a93b;
  --amber-soft: #3a2c14;
  --cyan: #4fd1c5;
  --cyan-soft: #16302c;
  --danger: #e2685b;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Sora", "Segoe UI", sans-serif;

  --max-w: 1160px;
  --radius: 18px;
  --radius-sm: 10px;
  --header-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(242,169,59,0.07), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 25%, rgba(79,209,197,0.06), transparent 55%),
    var(--ink);
  background-attachment: fixed;
  color: var(--bone);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(238,241,241,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,241,241,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, black 0%, transparent 75%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.01em; }
::selection { background: var(--amber); color: var(--ink); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6.5rem 0; position: relative; }
.section + .section::before,
.hero-intro-section + .section::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; max-width: 700px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.grid { display: grid; }

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

.tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; font-weight: 600; color: var(--amber);
  background: var(--amber-soft); border: 1px solid rgba(242,169,59,0.25);
  border-radius: 999px; padding: 0.45rem 1rem 0.45rem 0.8rem;
  margin-bottom: 1rem;
}
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); flex-shrink: 0; }

.section-head { margin-bottom: 3.2rem; max-width: 620px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 700; }
.section-sub { color: var(--fog); margin-top: 0.9rem; font-size: 1.05rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.8rem; border-radius: 999px;
  font-weight: 700; font-size: 0.96rem; border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.btn-primary { background: var(--amber); color: #1a1206; }
.btn-primary:hover { transform: translateY(-2px); background: #ffb84f; }
.btn-ghost { border-color: var(--line); color: var(--bone); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-whatsapp { background: var(--cyan-soft); color: #7fe9c9; border-color: #2c5a55; }
.btn-whatsapp:hover { border-color: var(--cyan); transform: translateY(-2px); }
.btn-block { width: 100%; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.header.scrolled { background: rgba(14,20,22,0.92); backdrop-filter: blur(10px); border-color: var(--line); }
.scroll-progress {
  position: absolute; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  transition: width 0.1s linear;
}

.cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(242,169,59,0.05), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }
@media (pointer: coarse) { .cursor-glow { display: none; } }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--amber), #ffb84f);
  box-shadow: 0 0 16px rgba(242,169,59,0.35);
  display: grid; place-items: center; color: #1a1206; font-weight: 700; font-size: 1rem;
}
.nav-menu { display: flex; align-items: center; gap: 2.3rem; }
.nav-menu .btn { display: none; }
.nav-close { display: none; }
.nav-list { display: flex; gap: 2.1rem; }
.nav-link { font-size: 0.92rem; color: var(--fog); font-weight: 500; transition: color 0.2s ease; }
.nav-link:hover { color: var(--bone); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; font-size: 1.5rem; color: var(--bone); }

@media (max-width: 900px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: min(80vw, 320px); height: 100vh;
    background: var(--panel); border-left: 1px solid var(--line);
    padding: 5rem 2rem 2rem; transition: right 0.35s ease;
    flex-direction: column; align-items: flex-start; gap: 2.4rem;
  }
  .nav-menu.show-menu { right: 0; }
  .nav-menu.show-menu .btn { display: inline-flex; }
  .nav-list { flex-direction: column; gap: 1.5rem; }
  .nav-toggle { display: block; }
  .nav-close { display: block; position: absolute; top: 1.6rem; right: 1.6rem; font-size: 1.4rem; color: var(--bone); }
  .nav-cta .btn-ghost { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
/* =========================================================
   HERO CINEMATOGRÁFICO (full-bleed, estilo editorial)
   ========================================================= */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-cinema-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-cinema-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,20,22,0.35) 0%, rgba(14,20,22,0.15) 35%, rgba(14,20,22,0.55) 70%, var(--ink) 100%);
}
.hero-cinema-content {
  position: relative; z-index: 2;
  padding-bottom: 5.5rem;
  padding-top: calc(var(--header-h) + 3rem);
}
.hero-cinema-title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 1.1rem 0 1.4rem;
}
.hero-cinema-line { display: block; color: var(--bone); }
.hero-cinema-line--accent {
  background: linear-gradient(100deg, var(--amber) 15%, #ffd580 45%, var(--cyan) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-cinema-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--fog);
  max-width: 44ch;
  margin-bottom: 2.5rem;
}
.hero-cinema-scroll {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.85rem; color: var(--fog-dim); font-weight: 500;
}
.hero-cinema-scroll-line { width: 42px; height: 1px; background: var(--fog-dim); position: relative; overflow: hidden; }
.hero-cinema-scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--cyan);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

@media (max-width: 700px) {
  .hero-cinema { min-height: 92vh; }
  .hero-cinema-content { padding-bottom: 3.5rem; }
}

/* --- Intro logo abaixo do hero: texto + CTA + stats --- */
.hero-intro-section { padding-top: 4rem; padding-bottom: 3rem; }
.hero-intro-grid { grid-template-columns: 1.3fr 0.7fr; gap: 2.5rem; align-items: center; margin-bottom: 3rem; }
.hero-intro-text { font-size: 1.15rem; color: var(--bone); font-weight: 500; line-height: 1.55; }
.hero-intro-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-self: start; }

.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero-stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--amber); display: block; }
.hero-stat-label { color: var(--fog-dim); font-size: 0.85rem; }

@media (max-width: 800px) {
  .hero-intro-grid { grid-template-columns: 1fr; }
  .hero-intro-actions { justify-self: stretch; }
}

/* =========================================================
   BENTO GRID — vitrine visual (padrão 2026: cards modulares,
   raio consistente, espaçamento uniforme, um card líder)
   ========================================================= */
.bento-section { padding: 1rem 0 5rem; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(160px, auto));
  gap: 1.25rem;
}
.bento-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.9rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  --mx: 50%; --my: 50%;
}
.bento-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(242,169,59,0.10), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.bento-card:hover::after { opacity: 1; }
.bento-card:hover { transform: translateY(-3px); border-color: var(--cyan-dim, #2c5a55); }

.bento-eyebrow {
  font-size: 0.78rem; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.05em;
  display: block; margin-bottom: 0.7rem;
}
.bento-title { font-size: 1.3rem; margin-bottom: 0.6rem; }
.bento-desc { color: var(--fog); font-size: 0.94rem; max-width: 42ch; }

/* Card grande — desenvolvimento (líder visual do grid) */
.bento-card--lg {
  grid-column: span 2; grid-row: span 2;
  background:
    radial-gradient(ellipse 380px 260px at 100% 0%, rgba(242,169,59,0.10), transparent 65%),
    var(--panel);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-status {
  position: absolute; top: 1.9rem; left: 1.9rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--fog-dim); font-weight: 500;
}
.bento-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); flex-shrink: 0; animation: bentoBlink 2.4s ease-in-out infinite; }
@keyframes bentoBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.bento-card--lg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(238,241,241,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,241,241,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 0%, transparent 70%);
}
.bento-title, .bento-desc, .bento-eyebrow, .bento-chips { position: relative; }
.bento-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.bento-chip {
  font-size: 0.78rem; font-weight: 600; color: var(--bone);
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.35rem 0.8rem;
}

/* Card rede — segunda frente do negócio */
.bento-card--net {
  grid-column: span 2; grid-row: span 1;
  background:
    radial-gradient(ellipse 300px 200px at 0% 100%, rgba(79,209,197,0.10), transparent 65%),
    var(--panel);
}

/* Cards de estatística — pequenos, numéricos */
.bento-card--stat {
  grid-column: span 1; grid-row: span 1;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.bento-stat-num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.4rem;
  color: var(--bone); margin-bottom: 0.3rem; line-height: 1;
}
.bento-card--accent .bento-stat-num {
  background: linear-gradient(135deg, var(--amber), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bento-stat-label { color: var(--fog-dim); font-size: 0.82rem; }

/* Card citação — fecha o grid com voz de marca */
.bento-card--quote {
  grid-column: span 2; grid-row: span 1;
  border-color: var(--amber);
  background: linear-gradient(135deg, var(--amber-soft), var(--panel) 70%);
  display: flex; flex-direction: column; justify-content: center;
}
.bento-quote-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.8rem; }
.bento-quote-tag { font-size: 0.8rem; color: var(--amber); font-weight: 700; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--lg { grid-column: span 2; }
  .bento-card--net { grid-column: span 2; }
  .bento-card--quote { grid-column: span 2; }
}
@media (max-width: 620px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--lg, .bento-card--net, .bento-card--quote, .bento-card--stat { grid-column: span 1; }
}

/* =========================================================
   PIN SCROLL — seção cinematográfica (estilo "Apple")
   ========================================================= */
.pin-section { position: relative; }
.pin-spacer { height: 240vh; }
.pin-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 700px 500px at 20% 30%, rgba(242,169,59,0.07), transparent 60%),
    radial-gradient(ellipse 600px 500px at 85% 70%, rgba(79,209,197,0.07), transparent 60%),
    var(--ink);
}
.pin-sticky > .container { width: 100%; }
.pin-content { position: relative; height: 260px; width: 100%; }
.pin-progress-track {
  position: absolute; top: -3.5rem; left: 1.5rem;
  display: flex; gap: 0.6rem;
}
.pin-progress-dot {
  width: 34px; height: 3px; border-radius: 2px;
  background: var(--line);
  transition: background 0.3s ease;
}
.pin-progress-dot.is-active { background: linear-gradient(90deg, var(--amber), var(--cyan)); }

.pin-frame {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  max-width: 720px;
}
.pin-frame.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pin-num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--fog-dim); display: block; margin-bottom: 0.8rem;
}
.pin-title {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin: 0.6rem 0 1.1rem;
  line-height: 1.08;
}
.pin-desc { color: var(--fog); font-size: 1.1rem; max-width: 46ch; }

@media (max-width: 700px) {
  .pin-spacer { height: 200vh; }
  .pin-progress-track { top: -2.6rem; }
  .pin-content { height: 300px; }
}

/* =========================================================
   PROBLEMA → SOLUÇÃO
   ========================================================= */
.problem-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.problem-card {
  border-radius: var(--radius); padding: 2rem; border: 1px solid var(--line);
}
.problem-card--pain { background: var(--panel); border-radius: 22px 22px 22px 4px; }
.problem-card--fix { background: var(--panel); border-color: #2c5a55; border-radius: 22px 22px 4px 22px; }
.problem-card-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1.2rem; display: block; }
.problem-card--pain .problem-card-label { color: var(--danger); }
.problem-card--fix .problem-card-label { color: var(--cyan); }
.problem-list li { display: flex; gap: 0.7rem; padding: 0.55rem 0; font-size: 0.96rem; color: var(--fog); }
.problem-card--pain .problem-list li::before { content: "✕"; color: var(--danger); flex-shrink: 0; font-weight: 700; }
.problem-card--fix .problem-list li::before { content: "✓"; color: var(--cyan); flex-shrink: 0; font-weight: 700; }

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

/* =========================================================
   PACOTES / SERVIÇOS (estilo pricing)
   ========================================================= */
.pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem; display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 20px 50px -35px rgba(0,0,0,0.8);
  position: relative; overflow: hidden;
  --mx: 50%; --my: 50%;
}
.price-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(300px circle at var(--mx) var(--my), rgba(79,209,197,0.09), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.price-card:hover::after { opacity: 1; }
.price-card:hover { transform: translateY(-6px); border-color: var(--cyan-dim, #2c5a55); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.85); }
.price-card--featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, var(--amber-soft), var(--panel) 45%);
  transform: translateY(-12px);
  box-shadow: 0 30px 70px -30px rgba(242,169,59,0.25);
}
.price-card--featured:hover { transform: translateY(-16px); box-shadow: 0 35px 80px -30px rgba(242,169,59,0.32); }
.price-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.price-desc { color: var(--fog); font-size: 0.9rem; margin-bottom: 1.4rem; }
.price-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.6rem; color: var(--cyan); }
.price-value small { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: var(--fog-dim); }
.price-features { flex: 1; margin-bottom: 1.8rem; }
.price-features li { display: flex; gap: 0.65rem; padding: 0.5rem 0; font-size: 0.9rem; color: var(--fog); }
.price-features li::before { content: "✓"; color: var(--cyan); font-weight: 700; flex-shrink: 0; }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.diff-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.diff-card { text-align: center; padding: 1rem; }
.diff-card:nth-child(2), .diff-card:nth-child(4) { margin-top: 1.8rem; }
.diff-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; margin-bottom: 0.7rem;
  background: linear-gradient(135deg, var(--amber), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.9;
}
.diff-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.diff-desc { color: var(--fog); font-size: 0.88rem; }

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-card:nth-child(2), .diff-card:nth-child(4) { margin-top: 0; }
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.process-num { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); background: var(--cyan); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1.2rem; }
.process-title { font-size: 1rem; margin-bottom: 0.5rem; }
.process-desc { color: var(--fog); font-size: 0.88rem; }

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

/* =========================================================
   SOBRE (empresa primeiro, pessoa depois)
   ========================================================= */
.about-strip {
  display: flex; align-items: center; gap: 1.4rem;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 2rem;
}
.about-strip-mark {
  width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--amber-soft);
  color: var(--amber); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  flex-shrink: 0;
}
.about-strip-text { color: var(--fog); font-size: 0.96rem; }
.about-strip-text strong { color: var(--bone); }

@media (max-width: 700px) {
  .about-strip { flex-direction: column; text-align: center; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0; text-align: left; font-size: 1rem; font-weight: 600; color: var(--bone);
}
.faq-q-icon { font-size: 1.3rem; color: var(--fog); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); color: var(--amber); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--fog); font-size: 0.95rem; max-width: 62ch; }

/* =========================================================
   CONTATO
   ========================================================= */
.contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 3rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon {
  width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: var(--radius-sm); background: var(--panel-2); color: var(--cyan);
}
.contact-info-label { font-size: 0.82rem; color: var(--fog-dim); }
.contact-info-value { color: var(--bone); font-size: 1rem; margin-top: 0.15rem; }
.contact-info-value a:hover { color: var(--amber); }

.contact-form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem; }
.form-row { grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.85rem; color: var(--fog); margin-bottom: 0.5rem; font-weight: 500; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; color: var(--bone); font-family: var(--font-body); transition: border-color 0.2s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--cyan); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-msg { margin-top: 1rem; font-size: 0.92rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { color: var(--cyan); }
.form-msg.err { color: var(--danger); }

.typing-dots { display: inline-flex; gap: 5px; align-items: center; }
.typing-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: typingBounce 1.2s infinite ease-in-out; }
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce { 0%,60%,100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-5px); opacity: 1; } }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--amber-soft), var(--panel) 65%);
  border: 1px solid var(--amber);
  border-radius: 28px; padding: 4rem 3.5rem; text-align: center;
  box-shadow: 0 40px 90px -40px rgba(242,169,59,0.3);
}
.final-cta::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(242,169,59,0.18), transparent 65%);
  pointer-events: none;
}
.final-cta-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 1rem; position: relative; }
.final-cta-desc { color: var(--fog); max-width: 50ch; margin: 0 auto 2rem; font-size: 1.05rem; position: relative; }
.final-cta .btn { position: relative; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.4rem; }
.footer-tag { color: var(--fog-dim); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { color: var(--fog); font-size: 0.9rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { color: var(--fog-dim); font-size: 0.82rem; text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* =========================================================
   SCROLL TOP
   ========================================================= */
.scroll-up {
  position: fixed; right: 1.4rem; bottom: 1.4rem; width: 44px; height: 44px;
  display: grid; place-items: center; background: var(--panel); border: 1px solid var(--line);
  border-radius: 50%; color: var(--cyan);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; z-index: 90;
}
.scroll-up.show { opacity: 1; visibility: visible; transform: translateY(0); }

.hero-grid > *, .contact-grid > * { min-width: 0; }

@media (max-width: 760px) {
  .section { padding: 4.5rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
}
