/* ═══════════════════════════════════════════════════════════
   Destravaí — Landing Page
   Direção: editorial-tech noturno · Manrope + Instrument Serif
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:            #0D0B14;
  --bg-2:          #110E1A;
  --card:          rgba(255, 255, 255, 0.04);
  --card-bright:   rgba(255, 255, 255, 0.07);
  --border:        rgba(255, 255, 255, 0.09);
  --border-bright: rgba(255, 255, 255, 0.16);

  --ink:           #F2F0FA;
  --ink-2:         rgba(242, 240, 250, 0.62);
  --ink-3:         rgba(242, 240, 250, 0.34);

  --purple:        #6D5DF6;
  --lilac:         #9B8CFF;
  --coral:         #FF7A6B;
  --mint:          #53D6A1;
  --amber:         #F7B955;

  --grad:          linear-gradient(135deg, #6D5DF6 0%, #9B8CFF 100%);
  --grad-coral:    linear-gradient(135deg, #FF7A6B 0%, #F7B955 100%);

  --maxw:          1180px;
  --radius:        26px;
  --radius-sm:     16px;

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ── Atmosfera: grão + orbs ─────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  mix-blend-mode: overlay;
}

.orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.orb-1 { top: -200px; right: -150px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(109,93,246,0.55), transparent 68%);
  animation: drift 18s var(--ease) infinite alternate; }
.orb-2 { bottom: -180px; left: -160px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,122,107,0.32), transparent 68%);
  animation: drift 22s var(--ease) infinite alternate-reverse; }
.orb-3 { top: 40%; left: 45%; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(83,214,161,0.18), transparent 70%);
  animation: drift 26s var(--ease) infinite alternate; }

@keyframes drift {
  to { transform: translate(60px, -40px) scale(1.12); }
}

/* ── Layout helpers ─────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lilac);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(109,93,246,0.1); border: 1px solid rgba(109,93,246,0.28);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lilac); box-shadow: 0 0 10px var(--lilac); }

.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }

.section-label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 18px;
}

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 800; font-size: 16px;
  padding: 16px 28px; border-radius: 16px; border: none; cursor: pointer;
  text-decoration: none; transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 0 30px rgba(109,93,246,0.5), 0 8px 24px rgba(0,0,0,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(109,93,246,0.7), 0 12px 32px rgba(0,0,0,0.45); }
.btn-ghost { background: var(--card-bright); color: var(--ink); border: 1px solid var(--border-bright); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--lilac); }
.btn-lg { padding: 19px 38px; font-size: 17px; }

/* ── Header ─────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(13,11,20,0.72);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.brand .brand-logo { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(109,93,246,0.45)); }
.foot-brand .brand-logo { width: 32px; height: 32px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { padding: 170px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6.4vw, 78px); margin: 26px 0 22px; }
.hero h1 .serif { font-size: 1.04em; }
.hero p.sub { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); max-width: 520px; margin-bottom: 34px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 10px; color: var(--ink-3); font-size: 14px; font-weight: 600; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.tagline { margin-top: 22px; font-size: 18px; color: var(--lilac); }

/* Phone mockup */
.phone {
  justify-self: center;
  width: 300px; aspect-ratio: 300 / 620;
  border-radius: 42px; padding: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03));
  border: 1px solid var(--border-bright);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 60px rgba(109,93,246,0.22);
  position: relative;
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease);
}
.phone:hover { transform: rotate(0deg) translateY(-6px); }
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, #16121f, #0d0b14);
  padding: 22px 16px; display: flex; flex-direction: column; gap: 13px;
}
.ph-eyebrow { font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.ph-hello { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.ph-quote { font-size: 11px; color: var(--ink-2); font-style: italic; border-left: 2px solid rgba(109,93,246,0.5); padding-left: 9px; line-height: 1.35; }
.ph-card {
  border-radius: 16px; padding: 14px;
  background: linear-gradient(135deg, rgba(109,93,246,0.16), rgba(155,140,255,0.06));
  border: 1px solid rgba(109,93,246,0.3); margin-top: auto;
}
.ph-tags { display: flex; gap: 6px; margin-bottom: 9px; }
.ph-tag { font-size: 8px; font-weight: 800; padding: 3px 8px; border-radius: 999px; }
.ph-tag.p { background: rgba(109,93,246,0.2); color: var(--lilac); border: 1px solid rgba(109,93,246,0.3); }
.ph-tag.a { background: rgba(247,185,85,0.15); color: var(--amber); border: 1px solid rgba(247,185,85,0.25); }
.ph-title { font-size: 14px; font-weight: 800; line-height: 1.2; margin-bottom: 4px; }
.ph-desc { font-size: 10px; color: var(--ink-2); line-height: 1.4; }
.ph-btn { margin-top: 12px; text-align: center; font-size: 11px; font-weight: 800; padding: 10px; border-radius: 11px; background: var(--grad); box-shadow: 0 0 16px rgba(109,93,246,0.4); }
.ph-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.ph-chip { font-size: 9px; font-weight: 700; padding: 6px 10px; border-radius: 999px; background: var(--card); border: 1px solid var(--border); color: var(--ink-2); }
.ph-chip.on { background: var(--grad); color: #fff; border-color: transparent; }
.ph-nav { margin-top: 12px; display: flex; justify-content: space-around; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); font-size: 15px; opacity: 0.5; }
.ph-nav .on { opacity: 1; filter: drop-shadow(0 0 8px rgba(109,93,246,0.6)); }

/* ── Dor ────────────────────────────────────────────────── */
.pain { padding: 80px 0; }
.pain h2 { font-size: clamp(30px, 4.4vw, 46px); max-width: 680px; margin-bottom: 14px; }
.pain .lead { color: var(--ink-2); font-size: 18px; margin-bottom: 40px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pain-card {
  padding: 26px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(255,122,107,0.35); background: var(--card-bright); }
.pain-card .ico { font-size: 26px; margin-bottom: 12px; display: block; }
.pain-card p { font-size: 15px; color: var(--ink-2); font-weight: 500; }
.pain-close { margin-top: 38px; font-size: clamp(20px, 2.6vw, 27px); font-weight: 800; max-width: 760px; letter-spacing: -0.02em; }

/* ── Solução / virada ───────────────────────────────────── */
.turn { padding: 90px 0; text-align: center; }
.turn .wrap { max-width: 820px; }
.turn h2 { font-size: clamp(32px, 5vw, 52px); margin: 18px 0 24px; }
.turn p { font-size: 19px; color: var(--ink-2); margin-bottom: 30px; }
.turn .quote {
  font-size: clamp(24px, 3.4vw, 34px); line-height: 1.3; padding: 30px;
  border-radius: var(--radius); background: var(--card);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.turn .quote::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(109,93,246,0.8), transparent); }

/* ── Como funciona ──────────────────────────────────────── */
.how { padding: 80px 0; }
.how h2 { font-size: clamp(30px, 4.4vw, 46px); max-width: 640px; margin-bottom: 48px; }
.how-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 18px; }
.step { position: relative; padding: 28px 28px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); transition: border-color 0.3s, background 0.3s; }
.step:hover { border-color: rgba(109,93,246,0.4); background: var(--card-bright); }
.step-num {
  font-family: 'Instrument Serif', serif; font-style: italic; font-size: 56px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px; display: block;
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15px; }
.step-num { font-size: 44px; margin-bottom: 8px; }

/* Teleprompter / Studio mockup */
.phone-studio { transform: rotate(-2deg); justify-self: center; }
.phone-studio:hover { transform: rotate(0deg) translateY(-6px); }
.studio-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden; position: relative;
  background: linear-gradient(165deg, #2a2730 0%, #15131c 55%, #0a0910 100%);
  display: flex; flex-direction: column;
}
.studio-screen::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.st-script {
  margin: 14px; padding: 14px 16px; border-radius: 16px;
  background: rgba(20,18,26,0.82); border: 1px solid var(--border-bright);
  backdrop-filter: blur(6px);
}
.st-script-label { font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lilac); display: block; margin-bottom: 7px; }
.st-script p { font-size: 13px; line-height: 1.5; color: #fff; font-weight: 600; }
.st-rail { position: absolute; left: 12px; top: 44%; display: flex; flex-direction: column; gap: 18px; font-size: 15px; color: rgba(255,255,255,0.85); z-index: 2; }
.st-rail .st-x { font-size: 13px; font-weight: 800; }
.st-rail .st-t { color: var(--coral); font-weight: 800; font-family: Georgia, serif; }
.st-bottom { margin-top: auto; padding: 14px 0 20px; position: relative; z-index: 2; }
.st-zoom { display: flex; justify-content: center; gap: 14px; margin-bottom: 16px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); }
.st-zoom .on { background: #fff; color: #111; padding: 4px 10px; border-radius: 999px; }
.st-controls { display: flex; align-items: center; justify-content: space-around; font-size: 15px; color: rgba(255,255,255,0.85); }
.st-rec { width: 46px; height: 46px; border-radius: 50%; background: #FF2D55; border: 3px solid #fff; box-shadow: 0 0 22px rgba(255,45,85,0.6); }
.st-hd { font-size: 9px; font-weight: 800; line-height: 1.05; text-align: center; }

/* ── Funcionalidades ────────────────────────────────────── */
.features { padding: 80px 0; }
.features h2 { font-size: clamp(30px, 4.4vw, 46px); max-width: 620px; margin-bottom: 44px; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat {
  padding: 24px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.feat:hover { transform: translateY(-5px); border-color: rgba(109,93,246,0.4); background: var(--card-bright); }
.feat .ico { font-size: 24px; margin-bottom: 12px; display: block; }
.feat h3 { font-size: 16px; margin-bottom: 7px; }
.feat p { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }

/* ── Para quem ──────────────────────────────────────────── */
.who { padding: 80px 0; text-align: center; }
.who .wrap { max-width: 880px; }
.who h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 30px; }
.who-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-bottom: 28px; }
.who-chip {
  font-size: 15px; font-weight: 700; padding: 11px 20px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border); color: var(--ink-2);
  transition: all 0.25s var(--ease);
}
.who-chip:hover { border-color: var(--lilac); color: var(--ink); transform: translateY(-2px); }
.who .closing { font-size: 19px; color: var(--ink); font-weight: 700; }

/* ── Diferencial / tabela ───────────────────────────────── */
.diff { padding: 80px 0; }
.diff h2 { font-size: clamp(30px, 4.4vw, 46px); max-width: 620px; margin-bottom: 12px; }
.diff .lead { color: var(--ink-2); font-size: 18px; margin-bottom: 38px; }
.table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.table-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; }
.table-row + .table-row { border-top: 1px solid var(--border); }
.table-head { background: rgba(109,93,246,0.08); }
.table-cell { padding: 18px 22px; font-size: 15px; }
.table-cell.h { font-weight: 800; }
.table-cell.feat-name { color: var(--ink-2); font-weight: 600; }
.table-cell.pulse { color: var(--lilac); font-weight: 800; background: rgba(109,93,246,0.06); }
.table-cell.center { text-align: center; }
.x { color: var(--ink-3); } .check { color: var(--mint); font-weight: 800; }
.diff-close { margin-top: 28px; font-size: 19px; font-weight: 700; color: var(--ink); }

/* ── Depoimentos ────────────────────────────────────────── */
.testi { padding: 80px 0; }
.testi h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 44px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote-card { padding: 30px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); position: relative; }
.quote-card .mark { font-family: 'Instrument Serif', serif; font-size: 72px; line-height: 0.6; color: rgba(109,93,246,0.35); height: 30px; display: block; }
.quote-card p { font-size: 16px; color: var(--ink); line-height: 1.55; margin-bottom: 22px; }
.who-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--grad); }
.who-person .nm { font-weight: 800; font-size: 14px; }
.who-person .rl { font-size: 13px; color: var(--ink-3); }

/* ── Preços ─────────────────────────────────────────────── */
.pricing { padding: 80px 0; text-align: center; }
.pricing h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 12px; }
.pricing .lead { color: var(--ink-2); font-size: 18px; margin-bottom: 48px; }
.plans {
  display: grid;
  grid-template-columns: minmax(0, 540px);
  justify-content: center;
  gap: 20px;
  text-align: left;
}
.plan {
  padding: 32px 28px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.3s var(--ease);
}
.plan:hover { transform: translateY(-5px); }
.plan.featured {
  background: linear-gradient(160deg, rgba(109,93,246,0.16), rgba(155,140,255,0.05));
  border-color: rgba(109,93,246,0.45);
  box-shadow: 0 0 50px rgba(109,93,246,0.18);
  position: relative;
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; background: var(--grad); color: #fff;
  box-shadow: 0 0 18px rgba(109,93,246,0.5);
}
.plan-name { font-size: 14px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--lilac); }
.plan-tag { font-size: 14px; color: var(--ink-3); }
.plan-price { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; }
.plan-price span { font-size: 16px; font-weight: 600; color: var(--ink-3); }
.plan-renew { margin-top: -8px; color: var(--ink-2); font-size: 15px; font-weight: 700; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.plan li { font-size: 14.5px; color: var(--ink-2); display: flex; gap: 9px; align-items: flex-start; }
.plan li::before { content: "✓"; color: var(--mint); font-weight: 800; flex-shrink: 0; }
.plan .btn { width: 100%; margin-top: auto; }
.pricing .fine { margin-top: 28px; color: var(--ink-3); font-size: 14px; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { padding: 80px 0; }
.faq .wrap { max-width: 760px; }
.faq h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 38px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 18px; font-weight: 700; color: var(--ink);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .sign { font-size: 24px; color: var(--lilac); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { color: var(--ink-2); font-size: 16px; padding-bottom: 24px; line-height: 1.6; }

/* ── CTA final ──────────────────────────────────────────── */
.final { padding: 60px 0 100px; }
.final-box {
  border-radius: 34px; padding: clamp(40px, 6vw, 76px); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(140deg, rgba(109,93,246,0.28), rgba(155,140,255,0.1));
  border: 1px solid rgba(109,93,246,0.35);
}
.final-box::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(circle at 70% 20%, rgba(109,93,246,0.4), transparent 55%);
  pointer-events: none;
}
.final-box h2 { font-size: clamp(30px, 4.6vw, 50px); margin-bottom: 18px; max-width: 720px; margin-inline: auto; position: relative; }
.final-box p { font-size: 18px; color: var(--ink-2); margin-bottom: 32px; position: relative; }
.final-box .btn { position: relative; }
.final-box .tagline { margin-top: 24px; }

/* ── Footer ─────────────────────────────────────────────── */
footer { padding: 56px 0 40px; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.foot { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 280px; }
.foot-brand p { color: var(--ink-3); font-size: 14px; margin-top: 12px; }
.foot-links { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; font-weight: 800; }
.foot-col a { display: block; color: var(--ink-2); text-decoration: none; font-size: 14px; margin-bottom: 9px; transition: color 0.2s; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--ink-3); font-size: 13px; }

/* ── Exemplos ilustrativos (rotina) ─────────────────────── */
.testi-note { margin-top: 26px; text-align: center; color: var(--ink-3); font-size: 13px; }

/* ── WhatsApp ───────────────────────────────────────────── */
.final-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-whats { background: #25D366; color: #07241a; box-shadow: 0 0 30px rgba(37,211,102,0.4), 0 8px 24px rgba(0,0,0,0.35); }
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(37,211,102,0.6), 0 12px 32px rgba(0,0,0,0.45); }
.whats-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.55);
  animation: whatsPulse 2.6s var(--ease) infinite;
  transition: transform 0.25s var(--ease);
}
.whats-float:hover { transform: scale(1.08); }
@keyframes whatsPulse {
  0% { box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Animação de revelação ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* Hero load-in */
.load { opacity: 0; transform: translateY(24px); animation: loadUp 0.9s var(--ease) forwards; }
.load.l1 { animation-delay: 0.1s; } .load.l2 { animation-delay: 0.24s; }
.load.l3 { animation-delay: 0.38s; } .load.l4 { animation-delay: 0.52s; }
.load.l5 { animation-delay: 0.66s; }
@keyframes loadUp { to { opacity: 1; transform: none; } }

/* ── Menu mobile (sidebar) ──────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 200;
  height: 100%; width: 80%; max-width: 320px;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
  padding: 76px 28px 28px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mm-links { display: flex; flex-direction: column; gap: 4px; }
.mm-links a {
  color: var(--ink); text-decoration: none;
  font-size: 18px; font-weight: 700; padding: 14px 4px;
  border-bottom: 1px solid var(--border);
}
.mm-entrar {
  margin-top: 20px; text-align: center; justify-content: center;
  border-bottom: none !important; padding: 13px 22px;
}
.mm-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none; color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
}

/* ── Responsivo ─────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  /* O mockup do celular aparece DEPOIS do texto do hero (antes da seção "O problema"). */
  .phone { order: 0; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-studio { order: -1; }
  .pain-grid, .testi-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-entrar { display: none; }   /* Entrar fica dentro do menu lateral no mobile */
  .menu-toggle { display: grid; place-items: center; }
  .table-row { grid-template-columns: 1.3fr 0.85fr 0.85fr; }
  .table-cell { padding: 14px 12px; font-size: 13px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 130px 0 70px; }
  .feat-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .foot-links { gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .load { opacity: 1; transform: none; }
}
