/* ============================================================
   OlyverStudio — Landing Page
   Dark / Premium / Tech-Corporate
   Purple #7C3AED is reserved STRICTLY for action elements.
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #08070c;
  --bg-1:      #0b0a11;
  --bg-2:      #100e18;
  --bg-3:      #16131f;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);

  /* ink */
  --fg:        #f4f2f8;
  --fg-dim:    #a3a1b4;
  --fg-faint:  #6a6878;

  /* action (the ONLY color) */
  --accent:        #7c3aed;
  --accent-bright: #9a63f7;
  --accent-deep:   #5b21b6;
  --accent-glow:   rgba(124,58,237,0.45);
  --accent-ink:    #ffffff;

  /* studio fx — tunable strengths. These values ship to production; the
     Tweaks panel overrides them live (on :root) while tuning by hand. */
  --fx-spotlight: 0.40;   /* card glow opacity   0–1     (slider 40%) */
  --fx-aurora:    50.4px; /* hero aurora parallax 0–120px (slider 42%) */
  --fx-magnetic:  0.15;   /* button magnet factor 0–0.5   (slider 30%) */

  --maxw: 1240px;
  --r: 14px;
  --r-lg: 22px;

  --font-display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  /* hero headline font — switchable via the Tweaks panel.
     Weight is paired with the font since each family ships different weights. */
  --font-hero: "Clash Display", "Space Grotesk", system-ui, sans-serif;
  --font-hero-weight: 600;
}

/* accent can be re-themed by the tweaks panel */
[data-accent="orange"] {
  --accent:        #f04e23;
  --accent-bright: #ff6a3c;
  --accent-deep:   #a3290f;
  --accent-glow:   rgba(240,78,35,0.45);
}

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

/* ---- block text selection / copy (inputs stay selectable) ---- */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.04; }

.section-title {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.lead {
  color: var(--fg-dim);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  max-width: 60ch;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border-radius: 100px;
  padding: 16px 26px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 14px 40px -12px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 22px 60px -14px var(--accent-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--fg);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.28); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* keyboard focus — branded, visible ring for a11y.
   :focus-visible keeps it off mouse/touch, so it never disturbs the
   pointer experience. outline follows each element's own radius. */
a:focus-visible,
.btn:focus-visible,
.faq-item summary:focus-visible,
.menu-btn:focus-visible,
.drawer-close:focus-visible,
.consent input:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease, transform .4s cubic-bezier(.4,.0,.2,1);
  border-bottom: 1px solid transparent;
  will-change: transform;
}
.header.hidden {
  transform: translateY(-100%);
}
.header.scrolled {
  background: rgba(8,7,12,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.brand .mark {
  width: 44px; height: 44px;
  object-fit: contain;
  display: block;
}
.brand b { font-weight: 600; }
.brand span { color: var(--fg-dim); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--fg-dim);
  transition: color .18s ease; position: relative;
}
.nav-links a:hover { color: var(--fg); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.menu-btn { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 0 60px;
  overflow: hidden;
  isolation: isolate;
}

/* planet + glow stage */
.hero-stage { position: absolute; inset: 0; z-index: -2; pointer-events: none; }

.hero-glow {
  position: absolute;
  left: 50%; top: 44%;
  width: 1180px; height: 1180px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(124,58,237,0.10) 34%, transparent 62%);
  filter: blur(20px);
  opacity: .9;
}
.planet {
  position: absolute;
  left: 50%; top: 47%;
  width: 760px; height: 760px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background:
    radial-gradient(125% 125% at 72% 24%,
      rgba(208,180,255,0.95) 0%,
      var(--accent-bright) 9%,
      var(--accent) 15%,
      rgba(70,40,120,0.55) 27%,
      rgba(26,17,44,0.85) 41%,
      #06050a 58%);
  box-shadow:
    inset -60px -50px 150px rgba(0,0,0,0.85),
    inset 30px 20px 80px rgba(124,58,237,0.18),
    0 0 120px 10px rgba(124,58,237,0.20);
}
.planet::after {
  /* atmospheric rim */
  content: "";
  position: absolute; inset: -2px;
  border-radius: 50%;
  box-shadow: inset 0 0 60px 6px rgba(154,99,247,0.22);
}
.hero-ring {
  position: absolute;
  left: 50%; top: 47%;
  width: 1020px; height: 1020px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.hero-ring.two { width: 1320px; height: 1320px; border-color: rgba(255,255,255,0.03); }

/* ---- new hero background: grid + aurora + grain ----
   Switchable via the Tweaks panel. Scoped under [data-bg] so the
   production index.html (no data-bg attr) keeps the old planet. */
.hero-grid, .hero-aurora, .hero-noise { position: absolute; pointer-events: none; }

/* show new bg / hide old planet */
.hero-stage[data-bg="grid"] .planet,
.hero-stage[data-bg="grid"] .hero-ring,
.hero-stage[data-bg="grid"] .hero-glow { display: none; }
/* show old planet / hide new bg */
.hero-stage[data-bg="planet"] .hero-grid,
.hero-stage[data-bg="planet"] .hero-aurora,
.hero-stage[data-bg="planet"] .hero-noise { display: none; }

/* fine architectural grid, faded toward the edges */
.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(135% 90% at 50% 34%, #000 0%, rgba(0,0,0,0.7) 50%, transparent 80%);
  mask-image: radial-gradient(135% 90% at 50% 34%, #000 0%, rgba(0,0,0,0.7) 50%, transparent 80%);
}

/* ambient aurora light — diffuse, not a defined sphere */
.hero-aurora {
  left: 50%; top: -12%;
  width: min(1200px, 120vw); height: 760px;
  transform: translateX(-50%);
  background:
    radial-gradient(58% 56% at 50% 30%, rgba(124,58,237,0.30) 0%, transparent 68%),
    radial-gradient(42% 46% at 30% 24%, rgba(154,99,247,0.16) 0%, transparent 70%),
    radial-gradient(46% 48% at 72% 26%, rgba(91,33,182,0.20) 0%, transparent 72%);
  filter: blur(46px);
  opacity: .9;
}

/* subtle film grain — kills the flat "AI gradient" look */
.hero-noise {
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .045;
  mix-blend-mode: overlay;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-stage[data-bg="grid"] .hero-aurora { animation: auroraDrift 16s ease-in-out infinite alternate; }
  @keyframes auroraDrift {
    0%   { transform: translateX(calc(-50% + var(--ax,0px))) translateY(var(--ay,0px)) scale(1); opacity: .9; }
    100% { transform: translateX(calc(-50% + var(--ax,0px))) translateY(calc(-18px + var(--ay,0px))) scale(1.06); opacity: 1; }
  }
}

/* readability scrims */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 46%, rgba(8,7,12,0.66), transparent 70%),
    linear-gradient(180deg, rgba(8,7,12,0.85) 0%, transparent 22%, transparent 62%, var(--bg) 100%);
}

.hero-tagline { margin-bottom: 26px; }
.hero h1 {
  font-family: var(--font-hero);
  font-weight: var(--font-hero-weight, 600);
  font-size: clamp(44px, 8vw, 104px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 18ch;
  margin-inline: auto;
  text-wrap: balance;
}
.hero h1 .dim { color: var(--fg-dim); }
.hero-sub {
  margin: 28px auto 0;
  max-width: 58ch;
  color: var(--fg-dim);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-sub b { color: var(--fg); font-weight: 700; }

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.hero-micro {
  margin-top: 22px;
  color: var(--fg-faint);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.hero-micro .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-faint); }

/* portfolio / proof row */
.proof {
  margin-top: 76px;
  width: 100%;
}
.proof-cap {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-faint); text-align: center; margin-bottom: 24px;
}
.proof-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(28px, 6vw, 72px); flex-wrap: wrap;
}
.proof-row .logo {
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
  color: var(--fg); opacity: .58;
  transition: opacity .2s ease;
  display: flex; align-items: center; gap: 9px;
}
.proof-row .logo:hover { opacity: 1; }
.proof-row .logo i {
  width: 8px; height: 8px; border-radius: 2px; background: var(--fg-dim);
  font-style: normal; display: inline-block;
}
.proof-row .logo.c i { border-radius: 50%; }
.proof-row .logo.d i { clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { position: relative; padding: clamp(88px, 9vw, 112px) 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lead { margin-top: 20px; }

/* ============================================================
   DOR  (pain)
   ============================================================ */
.dor { background: var(--bg); border-top: 1px solid var(--line); }
.dor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.dor-item {
  background: var(--bg-1);
  padding: 34px 30px 36px;
  transition: background .25s ease;
  position: relative;
}
.dor-item:hover { background: var(--bg-2); }
.dor-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; color: var(--accent-bright);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.dor-item p { color: var(--fg); font-size: 16.5px; line-height: 1.5; }
.dor-item p b { font-weight: 700; }
.dor-close {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 40ch;
  text-wrap: balance;
}
.dor-close b { color: var(--fg); font-weight: 600; }
.dor-close .q { color: var(--fg-faint); font-weight: 500; }

/* ============================================================
   SOLUÇÃO
   ============================================================ */
.sol { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%); border-top: 1px solid var(--line); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.pillar {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px 34px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--bg-3); }
.pillar-ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(124,58,237,0.10);
  border: 1px solid rgba(124,58,237,0.28);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.pillar-ico .glyph { width: 20px; height: 20px; }
.pillar h3 { font-size: 22px; margin-bottom: 10px; }
.pillar p { color: var(--fg-dim); font-size: 16px; line-height: 1.55; }
.pillar .tag {
  position: absolute; top: 26px; right: 28px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint);
}
.sol-foot {
  margin-top: 36px;
  text-align: center;
  color: var(--fg-dim);
  font-size: 17px;
}
.sol-foot b { color: var(--fg); font-weight: 700; }

/* benefits strip */
.benefits {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.benefit {
  background: var(--bg-1);
  padding: 26px 28px;
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit .chk {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.10);
  display: grid; place-items: center; margin-top: 2px;
}
.benefit .chk::after { content: ""; width: 8px; height: 5px; border-left: 1.6px solid var(--accent-bright); border-bottom: 1.6px solid var(--accent-bright); transform: rotate(-45deg); margin-top: -2px; }
.benefit b { display: block; font-size: 15.5px; font-weight: 700; color: var(--fg); margin-bottom: 3px; }
.benefit span { font-size: 14px; color: var(--fg-dim); line-height: 1.45; }

/* ============================================================
   PLANOS
   ============================================================ */
.planos { background: var(--bg); border-top: 1px solid var(--line); }
.planos .section-head { text-align: left; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px 36px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.plan:hover { transform: translateY(-4px); border-color: var(--line-2); }
.plan.featured {
  background: linear-gradient(180deg, rgba(124,58,237,0.10), rgba(124,58,237,0.02) 40%, var(--bg-1) 100%);
  border-color: rgba(124,58,237,0.45);
  box-shadow: 0 30px 80px -40px var(--accent-glow);
  position: relative;
}
.plan.featured { padding-top: 42px; }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 10px 26px -10px var(--accent-glow);
}
.plan-name { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-dim); display: flex; align-items: center; gap: 8px; }
.plan-name .ar { color: var(--accent-bright); }
.plan-tag { margin-top: 14px; color: var(--fg-dim); font-size: 15px; line-height: 1.5; min-height: 44px; }
.plan-price { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan-price .from { font-size: 12.5px; color: var(--fg-faint); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.plan-price .val { font-family: var(--font-display); font-weight: 600; font-size: 34px; letter-spacing: -0.02em; margin-top: 6px; }
.plan-price .val small { font-size: 15px; color: var(--fg-dim); font-weight: 500; font-family: var(--font-body); }
.plan-feats { list-style: none; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; }
.plan-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--fg-dim); line-height: 1.45; }
.plan-feats li .tick { flex: none; width: 16px; height: 16px; margin-top: 3px; position: relative; }
.plan-feats li .tick::after { content: ""; position: absolute; left: 2px; top: 1px; width: 8px; height: 5px; border-left: 1.6px solid var(--accent-bright); border-bottom: 1.6px solid var(--accent-bright); transform: rotate(-45deg); }
.plan .btn { margin-top: auto; width: 100%; }

.planos-cond {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 26px;
  color: var(--fg-faint); font-size: 14px; font-weight: 600;
}
.planos-cond .c { display: inline-flex; align-items: center; gap: 9px; }
.planos-cond .c .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--accent-bright); }
.planos-note { margin-top: 18px; text-align: center; color: var(--fg-faint); font-size: 13.5px; font-style: italic; }

/* ============================================================
   GARANTIA
   ============================================================ */
.garantia { border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.garantia-inner {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.garantia-inner::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  opacity: .5; pointer-events: none;
}
.garantia h2 { font-size: clamp(28px, 3.6vw, 44px); }
.garantia .lead { margin-top: 20px; }
.garantia .lead b { color: var(--fg); font-weight: 700; }
.garantia-close { margin-top: 24px; font-family: var(--font-display); font-size: 19px; color: var(--accent-bright); }
.guard-cards { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.guard-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex; gap: 18px; align-items: flex-start;
}
.guard-card .n { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--accent-bright); line-height: 1; flex: none; }
.guard-card b { display: block; font-size: 16.5px; margin-bottom: 5px; }
.guard-card span { color: var(--fg-dim); font-size: 14.5px; line-height: 1.5; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final { position: relative; text-align: center; padding: clamp(100px, 11vw, 140px) 0; overflow: hidden; border-top: 1px solid var(--line); }
.final-stage { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.final-glow {
  position: absolute; left: 50%; bottom: -360px; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 64%);
  filter: blur(10px); opacity: .8;
}
.final h2 { font-size: clamp(34px, 5.5vw, 70px); letter-spacing: -0.03em; max-width: 18ch; margin: 0 auto; text-wrap: balance; }
.final .lead { margin: 26px auto 0; text-align: center; }
.final-cta { margin-top: 42px; }
.final-cta .btn { padding: 19px 34px; font-size: 16px; }
.final-micro { margin-top: 22px; color: var(--fg-faint); font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; display: flex; gap: 10px; justify-content: center; align-items: center; }
.final-micro .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg); padding: 56px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .brand { font-size: 18px; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--fg-dim); transition: color .18s ease; }
.footer-links a:hover { color: var(--fg); }
.footer-legal {
  margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  color: var(--fg-faint); font-size: 13px; line-height: 1.6;
}
.footer-legal .lgpd { max-width: 62ch; }
.footer-legal a { color: var(--fg-dim); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 55;
  display: none;
  transform: translateY(140%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.sticky-cta.show { transform: translateY(0); }
body.cookie-open .sticky-cta { transform: translateY(160%); }
.sticky-cta .btn { width: 100%; padding: 17px; box-shadow: 0 -4px 40px -8px var(--accent-glow), 0 18px 50px -16px rgba(0,0,0,0.7); }

/* ============================================================
   REVEAL
   Content is visible by default. The fade-up entrance is applied
   ONLY as a progressive enhancement, gated on a `.js-reveal` flag
   that JS sets after it confirms the animation timeline advances —
   so environments that freeze the timeline never hide content.
   ============================================================ */
.reveal { opacity: 1; transform: none; }

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.js-reveal .reveal.in { opacity: 1; transform: none; }
.js-reveal .reveal.d1 { transition-delay: .07s; }
.js-reveal .reveal.d2 { transition-delay: .14s; }
.js-reveal .reveal.d3 { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .dor-grid, .pillars, .benefits, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .garantia-inner { grid-template-columns: 1fr; gap: 36px; }
  .plan.featured { order: -1; }
  .depo-grid { grid-template-columns: 1fr; }
  .final.has-form .final-inner { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .menu-btn {
    display: grid; place-items: center; width: 42px; height: 42px;
    border-radius: 11px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.03);
    cursor: pointer;
  }
  .menu-btn span { display: block; width: 17px; height: 1.6px; background: var(--fg); position: relative; }
  .menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; width: 17px; height: 1.6px; background: var(--fg); }
  .menu-btn span::before { top: -5px; } .menu-btn span::after { top: 5px; }
  .dor-grid, .pillars, .benefits, .plan-grid { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr; }
  .pf-grid > .pf-card { width: 100%; }
  .planet { width: 520px; height: 520px; }
  .hero-glow { width: 760px; height: 760px; }
  .hero-ring { display: none; }
  .sticky-cta { display: block; }
  .hero { padding-top: 130px; min-height: auto; }
  .footer-top { flex-direction: column; gap: 26px; }

  /* --- header: hide the CTA on mobile so logo + menu não estouram a tela
         (o CTA já está no drawer e no sticky de baixo) --- */
  .nav-cta .btn-primary { display: none; }
  /* mais respiro lateral só no header (simétrico: logo e hambúrguer p/ dentro) */
  .header .wrap { padding-left: 36px; padding-right: 36px; }

  /* --- hero eyebrow: sem o traço, menor e centralizado com wrap limpo --- */
  .hero-tagline { margin-bottom: 18px; }
  .hero-tagline .eyebrow { display: inline; font-size: 11px; letter-spacing: 0.16em; line-height: 1.5; }
  .hero-tagline .eyebrow::before { display: none; }

  /* --- hero micro (linha de credibilidade): mais compacta, centraliza sem cortar --- */
  .hero-micro { gap: 6px 12px; font-size: 12.5px; }

  /* --- CTAs do hero ocupam a largura toda no celular --- */
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(8,7,12,0.96); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; padding: 26px 24px;
  transform: translateY(-100%); transition: transform .3s ease;
  pointer-events: none;
}
.drawer.open { transform: translateY(0); pointer-events: auto; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.drawer-close { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-2); background: transparent; color: var(--fg); font-size: 22px; cursor: pointer; }
.drawer a { font-family: var(--font-display); font-size: 28px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--fg); }
.drawer .btn { margin-top: 30px; }

/* ============================================================
   COOKIE CONSENT (LGPD)
   ============================================================ */
.cookie {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 80;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.3,1);
}
.cookie.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-card {
  background: rgba(18,16,26,0.86);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 30px 80px -24px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.cookie-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-2);
  position: relative;
  margin-bottom: 14px;
}
.cookie-icon::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 34% 38%, var(--fg-dim) 0 2px, transparent 2.5px),
    radial-gradient(circle at 64% 34%, var(--fg-dim) 0 1.6px, transparent 2px),
    radial-gradient(circle at 58% 64%, var(--fg-dim) 0 2px, transparent 2.5px),
    radial-gradient(circle at 38% 66%, var(--fg-dim) 0 1.4px, transparent 1.8px);
  opacity: .8;
}
.cookie-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 7px; }
.cookie-text { color: var(--fg-dim); font-size: 13.5px; line-height: 1.55; }
.cookie-text a { color: var(--fg); text-decoration: underline; text-underline-offset: 2px; }
.cookie-text b { color: var(--fg); font-weight: 700; }
.cookie-actions { display: flex; gap: 10px; margin-top: 18px; }
.cookie-actions .btn { flex: 1; justify-content: center; }

@media (max-width: 720px) {
  .cookie { left: 14px; right: 14px; bottom: 14px; max-width: none; }
  .cookie-actions { flex-direction: column-reverse; }
}

/* ============================================================
   PORTFÓLIO
   ============================================================ */
.portfolio { background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg) 100%); border-top: 1px solid var(--line); }
.portfolio .section-head { margin-bottom: 40px; }
.pf-stats {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-bottom: 44px;
  color: var(--fg-dim); font-size: 14.5px; font-weight: 600;
}
.pf-stats .s { display: inline-flex; align-items: center; gap: 10px; }
.pf-stats .s .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-bright); }
.pf-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.pf-grid > .pf-card { width: calc(50% - 10px); }
.pf-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.pf-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.pf-shot {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 14px, rgba(255,255,255,0.012) 14px 28px),
    var(--bg-3);
  border-bottom: 1px solid var(--line);
  display: grid; place-items: center;
}
.pf-shot .ph {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--fg-faint);
  border: 1px dashed var(--line-2);
  padding: 7px 13px; border-radius: 8px;
  background: rgba(8,7,12,0.4);
}
.pf-shot > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.pf-shot.light { background: #eef0f3; }
.pf-tagchip {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 5px 11px; border-radius: 100px;
}
.pf-body { padding: 24px 26px 26px; }
.pf-body h3 { font-size: 21px; margin-bottom: 8px; }
.pf-body p { color: var(--fg-dim); font-size: 15px; line-height: 1.5; }

/* in-progress (WIP) feature card — spans full width */
.pf-card.wip { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; }
.pf-card.wip .pf-shot { aspect-ratio: auto; border-bottom: none; border-right: 1px solid var(--line); min-height: 340px; }
.pf-card.wip .pf-shot > img { object-fit: cover; object-position: top center; }
.pf-card.wip .pf-body { display: flex; flex-direction: column; justify-content: center; padding: 34px 38px; }
.pf-card.wip .pf-body h3 { font-size: 26px; }
.pf-card.wip .pf-body p { font-size: 16px; }
.pf-status {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  margin-bottom: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.3);
  padding: 7px 14px; border-radius: 100px;
}
.pf-status .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-bright); position: relative; }
.pf-status .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--accent-bright); opacity: .6; }
.pf-status.done { color: var(--accent-bright); }
.pf-status.done .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent-bright); position: relative; }
.pf-status.done .dot::after { content: ""; position: absolute; left: 4.5px; top: 2.5px; width: 4px; height: 7px; border-right: 1.6px solid #fff; border-bottom: 1.6px solid #fff; transform: rotate(45deg); }
@media (prefers-reduced-motion: no-preference) {
  .pf-status .pulse { animation: pfpulse 1.8s ease-in-out infinite; }
  @keyframes pfpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.5); } 50% { box-shadow: 0 0 0 5px rgba(124,58,237,0); } }
}
.pf-wipnote { margin-top: 18px; font-size: 13.5px; color: var(--fg-faint); }

/* hero logo strip — in-progress marker */
.proof-row .logo.wip { color: var(--accent-bright); opacity: .85; }
.proof-row .logo.wip i { background: var(--accent-bright); border-radius: 50%; animation: pfpulse 1.8s ease-in-out infinite; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo { background: var(--bg); border-top: 1px solid var(--line); }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* infinite draggable marquee */
.depo-marquee {
  overflow: hidden;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.depo-marquee.dragging { cursor: grabbing; }
.depo-track { display: flex; align-items: stretch; gap: 20px; width: max-content; will-change: transform; }
.depo-track .depo-card {
  width: 380px; max-width: 80vw; flex: none;
  user-select: none; -webkit-user-select: none;
}
.depo-track .depo-card blockquote { flex: 1 1 auto; }
.depo-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.depo-card .quote-mark {
  font-family: var(--font-display); font-size: 56px; line-height: 0.6;
  color: var(--accent-bright); opacity: .5; height: 28px;
}
.depo-card blockquote { font-size: 16.5px; line-height: 1.6; color: var(--fg); margin: 18px 0 24px; flex: 1; }
.depo-who { display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid var(--line); }
.depo-who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); flex: none; }
.depo-who .av.has-img { background-size: cover; background-position: center; }
.depo-who .av.logo-pad { background-color: #fff; background-size: 80%; background-repeat: no-repeat; background-position: center; }
.depo-who b { display: block; font-size: 15px; line-height: 1.3; color: var(--fg); }
.depo-who span { display: block; font-size: 13px; line-height: 1.3; color: var(--fg-faint); }
.depo-who > div { min-width: 0; }
.depo-flag {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--fg-faint);
  border: 1px dashed var(--line-2); border-radius: 100px; padding: 8px 15px;
}
.depo-flag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); }

/* ============================================================
   QUEBRA DE OBJEÇÕES
   ============================================================ */
.obj { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%); border-top: 1px solid var(--line); }
.obj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.obj-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 32px 32px;
  transition: border-color .25s ease;
}
.obj-card:hover { border-color: var(--line-2); }
.obj-q { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.obj-q .x {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-2);
  position: relative; margin-top: 2px;
}
.obj-q .x::before, .obj-q .x::after { content: ""; position: absolute; left: 6px; top: 11px; width: 11px; height: 1.5px; background: var(--fg-faint); }
.obj-q .x::before { transform: rotate(45deg); } .obj-q .x::after { transform: rotate(-45deg); }
.obj-q p { font-family: var(--font-display); font-size: 17.5px; font-weight: 500; color: var(--fg); line-height: 1.4; letter-spacing: -0.01em; }
.obj-a { color: var(--fg-dim); font-size: 15.5px; line-height: 1.65; padding-left: 37px; }
.obj-a b { color: var(--fg); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); border-top: 1px solid var(--line); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq .section-head { text-align: left; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(17px, 2vw, 20px);
  letter-spacing: -0.01em; color: var(--fg);
  transition: color .18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-bright); }
.faq-item .ico { flex: none; width: 22px; height: 22px; position: relative; }
.faq-item .ico::before, .faq-item .ico::after { content: ""; position: absolute; background: var(--accent-bright); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.faq-item .ico::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq-item .ico::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq-item[open] .ico::after { transform: scaleY(0); opacity: 0; }
.faq-item .ans { padding: 0 4px 28px; color: var(--fg-dim); font-size: 16px; line-height: 1.7; max-width: 64ch; }
/* subtle entrance for the answer on open — pure CSS, independent of the
   open/close JS, so it can't reintroduce the old flash bug. */
.faq-item[open] .ans { animation: faqAns .28s ease both; }
@keyframes faqAns { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq-item[open] .ans { animation: none; } }
.faq-item .ans b { color: var(--fg); font-weight: 700; }

/* ============================================================
   FINAL — two-column with form
   ============================================================ */
.final.has-form { text-align: left; }
.final.has-form .final-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.final.has-form .eyebrow { justify-content: flex-start; }
.final.has-form h2 { margin: 24px 0 0; max-width: 16ch; text-align: left; font-size: clamp(32px, 4.2vw, 56px); }
.final.has-form .lead { margin: 22px 0 0; text-align: left; }
.final.has-form .final-or { margin: 30px 0 0; display: flex; align-items: center; gap: 16px; }
.final.has-form .final-or .ln { flex: 1; height: 1px; background: var(--line); }
.final.has-form .final-or span { font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); }
.final.has-form .final-wa { margin-top: 26px; }
.final.has-form .final-wa .btn { padding: 18px 30px; font-size: 15.5px; }
.final.has-form .final-micro { justify-content: flex-start; margin-top: 18px; }

/* mobile: empilhar o formulário abaixo do texto. Precisa ficar DEPOIS da regra
   base de 2 colunas acima, senão a base vence por ordem de cascata e o card do
   form vaza pra fora da tela no celular. */
@media (max-width: 980px) {
  .final.has-form .final-inner { grid-template-columns: 1fr; gap: 40px; }
  .final.has-form h2 { font-size: clamp(30px, 7vw, 44px); }
}

/* lead form card */
.lead-form {
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 38px);
  box-shadow: 0 40px 100px -50px var(--accent-glow);
  text-align: left;
}
.lead-form h3 { font-size: 23px; margin-bottom: 6px; }
.lead-form .sub { color: var(--fg-dim); font-size: 14.5px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--fg-dim); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--fg);
  background: var(--bg-3); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 14px 16px; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,58,237,0.18); }
.field textarea { resize: vertical; min-height: 76px; }
.field.invalid input, .field.invalid textarea { border-color: #e0556b; box-shadow: 0 0 0 3px rgba(224,85,107,0.15); }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 22px; cursor: pointer; }
.consent input { appearance: none; -webkit-appearance: none; flex: none; width: 20px; height: 20px; margin-top: 1px; border: 1px solid var(--line-2); border-radius: 6px; background: var(--bg-3); cursor: pointer; position: relative; transition: background .18s ease, border-color .18s ease; }
.consent input:checked { background: var(--accent); border-color: var(--accent); }
.consent input:checked::after { content: ""; position: absolute; left: 6px; top: 3px; width: 6px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
.consent span { font-size: 12.5px; color: var(--fg-faint); line-height: 1.5; }
.consent span a { color: var(--fg-dim); text-decoration: underline; text-underline-offset: 2px; }
.consent.invalid span { color: #e0808f; }
.lead-form .btn { width: 100%; padding: 17px; }
.form-success { text-align: center; padding: 22px 10px; }
.form-success .ok { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.4); position: relative; }
.form-success .ok::after { content: ""; position: absolute; left: 20px; top: 17px; width: 12px; height: 22px; border-right: 2.5px solid var(--accent-bright); border-bottom: 2.5px solid var(--accent-bright); transform: rotate(45deg); }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--fg-dim); font-size: 15px; line-height: 1.6; }

/* ============================================================
   P.S. / CLOSING
   ============================================================ */
.ps { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(70px, 9vw, 110px) 0; }
.ps-inner { max-width: 760px; }
.ps-tag { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--accent-bright); letter-spacing: 0.04em; }
.ps p { color: var(--fg-dim); font-size: clamp(17px, 1.9vw, 21px); line-height: 1.6; margin-top: 20px; text-wrap: pretty; }
.ps p b { color: var(--fg); font-weight: 700; }

/* ============================================================
   STUDIO FX — cursor spotlight on cards
   JS feeds --mx/--my (cursor pos); strength via --fx-spotlight.
   Direct children are lifted above the glow so text stays crisp.
   ============================================================ */
/* position:relative is REQUIRED so the ::after glow anchors to each card —
   without it the absolute pseudo-element resolves against .section and the
   spotlight lands in the wrong place. */
.pillar, .plan, .pf-card, .obj-card { position: relative; --mx: 50%; --my: 50%; }
.pillar::after, .plan::after, .pf-card::after, .obj-card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none; z-index: 1;
  opacity: 0; transition: opacity .3s ease;
  background: radial-gradient(380px circle at var(--mx) var(--my),
    rgba(154,99,247,calc(0.22 * var(--fx-spotlight, 0))), transparent 56%);
}
.pillar:hover::after, .plan:hover::after,
.pf-card:hover::after, .obj-card:hover::after { opacity: 1; }
.pillar > *, .plan > *, .pf-card > *, .obj-card > * { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .pillar::after, .plan::after, .pf-card::after, .obj-card::after { transition: none; }
}

/* ============================================================
   MOBILE OVERRIDES — colocados POR ÚLTIMO de propósito.
   As grids das seções Portfólio/Objeções/Final são definidas mais
   abaixo no arquivo do que os @media de 760/980px, então venciam a
   cascata e ficavam multi-coluna no celular (cards estreitos, texto
   quebrando palavra por palavra). Aqui, vindo por último, garantimos
   o empilhamento em 1 coluna no mobile.
   ============================================================ */
@media (max-width: 760px) {
  .obj-grid { grid-template-columns: 1fr; }
  .pf-grid > .pf-card { width: 100%; }
  /* texto das objeções respira melhor em largura total */
  .obj-q p { font-size: 18px; }
  .obj-a { font-size: 15.5px; padding-left: 37px; }
}
