/* ===========================================================
   Prit × Salão99 — landing page styles
   Brand:
     navy   #201D4D
     blue   #39ADC4
     pink   #B443CB
     off    #F1F1F1
   Type: Nunito (regular, semibold, bold, black)
   =========================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy: #201D4D;
  --navy-2: #2A2660;
  --navy-soft: #3D3878;
  --blue: #39ADC4;
  --blue-soft: #C7E9EF;
  --pink: #B443CB;
  --pink-soft: #EFD5F4;
  --off: #F6F4FA;
  --off-2: #ECE9F4;
  --line: #E4E0EF;
  --ink: #201D4D;
  --ink-2: #4F4980;
  --ink-3: #7A75A6;
  --white: #FFFFFF;
  --ok: #1FA572;
  --bad: #D94A66;
  --warn: #E8A93A;

  --grad: linear-gradient(45deg, #39ADC4 0%, #B443CB 100%);
  --grad-soft: linear-gradient(135deg, #DAF1F6 0%, #F1DCF7 100%);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 6px rgba(32,29,77,.06);
  --shadow-md: 0 12px 32px rgba(32,29,77,.10);
  --shadow-lg: 0 24px 60px rgba(32,29,77,.14);
}

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.15; color: var(--navy); font-weight: 900; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5.6vw, 60px); }
h2 { font-size: clamp(30px, 3.8vw, 44px); }
h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
p  { margin: 0; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.grad-text--invert { background: linear-gradient(45deg, #8FE0EE 0%, #F0B5FA 100%); -webkit-background-clip: text; background-clip: text; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--off-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
}
.section-eyebrow--invert {
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
}

.section-head { max-width: 780px; margin: 0 0 48px; }
.section-head--center { margin: 0 auto 48px; text-align: center; }
.section-head h2 { margin: 16px 0 12px; }
.section-lede { color: var(--ink-2); font-size: 18px; max-width: 720px; }
.section-head--center .section-lede { margin: 0 auto; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 22px rgba(180,67,203,.28), 0 4px 10px rgba(57,173,196,.18);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(180,67,203,.34); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--off); border-color: var(--navy); }

.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--off); }

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(228,224,239,.6);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 22px; color: var(--navy); letter-spacing: -0.02em; }
.logo-mark { display: inline-flex; }
.logo-word { padding-top: 1px; }
.logo-word--light { color: #fff; }
.logo-img { display: block; height: auto; }
.logo-img--header { width: 56px; height: 56px; }
.logo-img--footer { width: 56px; height: 56px; }
.logo-img--cmp { width: 48px; height: 48px; }

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: 28px;
  flex: 1;
}
.site-nav a { font-weight: 700; color: var(--ink-2); font-size: 15px; }
.site-nav a:hover { color: var(--navy); }

.header-cta { padding: 11px 18px; font-size: 14px; }

.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; flex-direction: column; gap: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

@media (max-width: 880px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(57,173,196,.08), transparent 60%),
    radial-gradient(50% 60% at 100% 0%, rgba(180,67,203,.08), transparent 60%),
    var(--white);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
}
.hero-blob--1 { width: 460px; height: 460px; background: var(--blue); top: -120px; right: -80px; }
.hero-blob--2 { width: 360px; height: 360px; background: var(--pink); bottom: -100px; left: -100px; opacity: .4; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--grad);
  border-radius: 50%;
}

.hero-copy h1 { margin: 22px 0 20px; }
.lede { font-size: 19px; color: var(--ink-2); max-width: 560px; margin-bottom: 28px; }
.lede strong { color: var(--navy); font-weight: 800; }

.hero-checks { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 10px; }
.hero-checks li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero-meta { display: flex; align-items: center; gap: 12px; color: var(--ink-2); font-size: 14px; }
.hero-meta strong { color: var(--navy); }
.hero-meta-stars { color: #F4B400; letter-spacing: 2px; font-size: 16px; }

/* phone */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 580px; }

.phone {
  width: 320px;
  height: 640px;
  background: #1a1830;
  border-radius: 46px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(32,29,77,.22),
    0 12px 24px rgba(32,29,77,.12),
    inset 0 0 0 2px rgba(255,255,255,.04);
  position: relative;
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #0a0a18;
  border-radius: 16px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fbfaff 100%);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 16px 28px 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.phone-statusbar-icons { letter-spacing: 1px; opacity: .8; font-size: 11px; }

.phone-app { padding: 24px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.phone-app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.phone-app-title { font-weight: 900; font-size: 22px; color: var(--navy); letter-spacing: -0.02em; }
.muted-xs { font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.phone-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 900;
}

.phone-stat {
  background: var(--grad);
  color: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.phone-stat .muted-xs { color: rgba(255,255,255,.85); }
.phone-stat-value { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.phone-stat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.18);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 800;
}
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot-green { background: #6CE3A8; }

.phone-slot {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  background: #fff;
  border: 1px solid var(--off-2);
  border-radius: 14px;
}
.phone-slot--paid { border-left: 4px solid var(--blue); }
.phone-slot--pending { border-left: 4px solid var(--warn); background: #FFFCF6; }

.phone-slot-time { font-weight: 900; color: var(--navy); font-size: 13px; }
.phone-slot-name { font-weight: 800; font-size: 13px; color: var(--navy); line-height: 1.2; }
.phone-slot-svc { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.phone-slot-tag {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.tag-paid { background: #E5F8EE; color: var(--ok); }
.tag-pending { background: #FDF1DF; color: #B47F1A; }

.phone-fab {
  margin-top: auto;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  padding: 13px;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 24px rgba(180,67,203,.3);
}

/* phone floating badges */
.phone-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 16px 12px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  max-width: 220px;
}
.phone-badge--top { top: 60px; left: -10px; animation: float 5s ease-in-out infinite; }
.phone-badge--bottom { bottom: 80px; right: -10px; animation: float 6s ease-in-out infinite -2s; }

.phone-badge-icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #DAF1F6 0%, #B7E4ED 100%);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.phone-badge-icon--pink {
  background: linear-gradient(135deg, #F1DCF7 0%, #E5C0EE 100%);
  color: var(--pink);
}
.phone-badge-title { font-weight: 900; font-size: 13px; color: var(--navy); line-height: 1.2; }
.phone-badge-sub { font-size: 11px; color: var(--ink-3); font-weight: 600; margin-top: 2px; }

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

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 560px; }
  .phone-badge { max-width: 200px; }
  .phone-badge--top { top: 30px; left: 0; }
  .phone-badge--bottom { bottom: 30px; right: 0; }
}

/* ============================ TRUST STRIP ============================ */
.trust { padding: 28px 0; background: var(--navy); color: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.trust-item { text-align: center; }
.trust-num {
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  background: linear-gradient(45deg, #8FE0EE 0%, #F0B5FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-lbl { font-size: 13px; color: rgba(255,255,255,.78); margin-top: 2px; font-weight: 600; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,.18); }

@media (max-width: 880px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }
  .trust-item { padding: 12px 0; }
}

/* ============================ INTRO COMPARISON ============================ */
.intro-cmp { padding: 96px 0 32px; text-align: center; }
.intro-cmp-inner { max-width: 880px; margin: 0 auto; }
.intro-cmp h2 { margin: 18px 0 16px; }
.intro-cmp .section-lede { margin: 0 auto; }

/* ============================ COMPARISON TABLE ============================ */
.cmp-table-wrap { padding: 32px 0 96px; }

.cmp-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.cmp-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.cmp-row:first-child { border-top: 0; }

.cmp-cell { padding: 22px 24px; }
.cmp-cell-feat { padding-left: 32px; }
.cmp-cell-prit, .cmp-cell-other { text-align: center; padding: 22px 12px; }

.cmp-head { background: rgba(255,255,255,.92); }
.cmp-head .cmp-cell { padding-top: 28px; padding-bottom: 28px; }
.cmp-cell[role="columnheader"] { font-weight: 900; }

.cmp-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 22px; color: var(--navy); letter-spacing: -0.02em; }
.cmp-brand-other { color: var(--ink-3); }
.cmp-badge {
  margin-left: 6px;
  background: var(--grad);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-pill);
}

.cmp-cell-prit {
  background: rgba(255,255,255,.7);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.cmp-head .cmp-cell-prit {
  position: relative;
}
.cmp-head .cmp-cell-prit::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--grad);
  opacity: .08;
  pointer-events: none;
}

.feat-name { font-weight: 800; color: var(--navy); font-size: 16px; }
.feat-sub { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

.cmp-yes, .cmp-no, .cmp-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 18px;
}
.cmp-yes { background: linear-gradient(135deg, #1FE38C 0%, #14A368 100%); color: #fff; box-shadow: 0 6px 14px rgba(20,163,104,.30); }
.cmp-yes--neutral { background: var(--off-2); color: var(--ink-3); box-shadow: none; }
.cmp-no { background: #FBE3E8; color: var(--bad); }
.cmp-partial { background: var(--off-2); color: var(--ink-3); }

.cmp-text-pill {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  line-height: 1.2;
}
.cmp-text-pill--good { background: rgba(57,173,196,.14); color: #1F7A8C; }
.cmp-text-pill--bad { background: var(--off-2); color: var(--ink-3); text-decoration: line-through; }

.cmp-row-cta .cmp-cell { padding: 28px 24px; }

.cmp-footnote { margin-top: 18px; font-size: 13px; color: var(--ink-3); text-align: center; }
.cmp-footnote a { color: var(--navy); text-decoration: underline; }

@media (max-width: 760px) {
  .cmp-row { grid-template-columns: 1.6fr .8fr .8fr; }
  .cmp-cell, .cmp-cell-feat { padding: 16px 10px; }
  .feat-sub { display: none; }
  .cmp-brand { font-size: 16px; }
  .cmp-badge { display: none; }
  .cmp-yes, .cmp-no, .cmp-partial { width: 30px; height: 30px; font-size: 15px; }
  .cmp-text-pill { font-size: 11px; padding: 6px 10px; }
}

/* ============================ DIFFERENTIALS ============================ */
.diffs { padding: 96px 0; background: var(--off); position: relative; overflow: hidden; }
.diffs::before, .diffs::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  pointer-events: none;
}
.diffs::before { background: var(--blue); top: -120px; right: -80px; }
.diffs::after { background: var(--pink); bottom: -120px; left: -120px; }

.diffs .container { position: relative; z-index: 1; }

.diffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.diff-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.diff-card--featured {
  background: var(--navy);
  color: #fff;
  border: 0;
  position: relative;
  overflow: hidden;
}
.diff-card--featured::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: var(--grad);
  border-radius: 50%;
  opacity: .35;
  filter: blur(20px);
}
.diff-card.diff-card--featured h3 { color: #fff; }
.diff-card.diff-card--featured p { color: #fff; }
.diff-card.diff-card--featured .diff-icon { background: rgba(255,255,255,.14); color: #fff; }

.diff-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.diff-card h3 { margin-bottom: 8px; }
.diff-card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

@media (max-width: 980px) {
  .diffs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .diffs-grid { grid-template-columns: 1fr; }
  .diff-card { padding: 24px; }
}

/* ============================ MIGRATION ============================ */
.migration { padding: 96px 0; background: #fff; }

.steps { list-style: none; padding: 0; margin: 0 auto; max-width: 880px; display: grid; gap: 16px; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  border: 1px solid var(--line);
  align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }

.step-num {
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.step-body h3 { margin-bottom: 6px; }
.step-body p { color: var(--ink-2); font-size: 15px; }

.migration-cta {
  margin-top: 48px;
  text-align: center;
  background: var(--off);
  border-radius: var(--r-xl);
  padding: 32px;
  border: 1px dashed var(--line);
}
.migration-cta p { font-weight: 700; color: var(--navy); margin-bottom: 16px; }

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .step-num { font-size: 28px; }
}

/* ============================ TESTIMONIALS ============================ */
.testi { padding: 96px 0; background: var(--off); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: #F4B400; letter-spacing: 2px; font-size: 16px; }
.testi-card blockquote { margin: 0; }
.testi-card p { font-size: 16px; line-height: 1.5; color: var(--ink); font-weight: 600; }
.testi-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 18px;
}
.testi-name { font-weight: 800; color: var(--navy); }
.testi-role { font-size: 13px; color: var(--ink-3); font-weight: 600; }

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

/* ============================ WHATSAPP BANNER ============================ */
.wa-banner {
  background: linear-gradient(135deg, #201D4D 0%, #2D2670 60%, #6B2B85 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.wa-banner::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: var(--grad);
  filter: blur(80px);
  opacity: .4;
}

.wa-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wa-copy h2 { color: #fff; margin: 16px 0 16px; }
.wa-copy > p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 520px; }
.wa-copy strong { color: #fff; }

.wa-checks { display: grid; gap: 10px; margin-bottom: 28px; }
.wa-check { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.wa-check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1FE38C, #1FA572);
  color: #fff;
  font-weight: 900;
  display: grid; place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* whatsapp visual */
.wa-visual {
  background: #075E54;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.018) 0 4px, transparent 4px 16px);
  border-radius: var(--r-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.wa-msg {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  position: relative;
}
.wa-msg p { margin: 0; }
.wa-msg-name { font-weight: 800; font-size: 12px; color: var(--pink); margin-bottom: 2px; }
.wa-msg-time { display: block; font-size: 10px; color: #888; margin-top: 4px; text-align: right; }
.wa-msg--in { align-self: flex-start; border-top-left-radius: 2px; }
.wa-msg--out { align-self: flex-end; background: #DCF8C6; border-top-right-radius: 2px; }
.wa-msg--out .wa-msg-time { color: #4A8A6E; }
.wa-msg--paid { background: #E2F7E1; }

.wa-msg--link { padding: 8px; }
.wa-link {
  background: rgba(255,255,255,.6);
  border-left: 3px solid var(--pink);
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 4px;
}
.wa-link-host { font-size: 11px; color: #4A8A6E; font-weight: 700; }
.wa-link-title { font-weight: 800; font-size: 13px; color: var(--navy); margin-top: 2px; }
.wa-link-meta { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

@media (max-width: 920px) {
  .wa-grid { grid-template-columns: 1fr; gap: 48px; }
  .wa-visual { max-width: 380px; margin: 0 auto; width: 100%; }
}

/* ============================ FAQ ============================ */
.faq { padding: 96px 0; background: #fff; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: var(--off);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: background .2s ease;
}
.faq-item[open] { background: #fff; border-color: transparent; box-shadow: var(--shadow-md); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 18px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-chev { transform: rotate(45deg); }

.faq-body {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.faq-body strong { color: var(--navy); font-weight: 800; }

/* ============================ FINAL CTA ============================ */
.final-cta {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}
.final-cta-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: var(--grad);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-cta h2 { color: #fff; margin: 16px 0 14px; }
.final-cta p { font-size: 19px; color: rgba(255,255,255,.85); margin-bottom: 32px; }

.final-cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.final-cta-stores { display: inline-flex; gap: 18px; color: rgba(255,255,255,.7); font-weight: 700; font-size: 13px; }
.store-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.18); }

/* ============================ FOOTER ============================ */
.site-footer { background: #14122E; color: rgba(255,255,255,.78); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { color: #fff; }
.footer-tag { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,.65); max-width: 280px; }

.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; font-weight: 800; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-col a:hover { color: #fff; }

.footer-base {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-base { flex-direction: column; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================ ACCESSIBILITY ============================ */
*:focus-visible {
  outline: 3px solid #B443CB;
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

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