/* =========================================================
   PRECIFICA. — DESIGN SYSTEM
   Identidade canônica: tijolo + areia, Fraunces + Manrope.
   Eixo: "feche mais clientes — do preço ao contrato assinado".
   Tijolo só na ação/fechamento. Verde só pro "sim" conquistado.
========================================================= */

:root {
  /* Areia — base neutra quente */
  --sand-50:  #FBF8F3;
  --sand-100: #F6F1E8;
  --sand-200: #EDE5D8;
  --sand-300: #E0D5C3;
  --sand-400: #C9BBA5;

  /* Backgrounds */
  --bg-primary:  #FBF8F3;
  --bg-secondary:#F6F1E8;
  --bg-elevated: #FFFFFF;
  --bg-dark:     #1A1613;
  --bg-darker:   #141009;

  /* Surfaces */
  --card-bg:      #FFFFFF;
  --card-bg-dark: #211C17;
  --surface-muted: rgba(26, 22, 19, 0.045);
  --surface-muted-2: rgba(26, 22, 19, 0.07);

  /* Glass */
  --glass-bg: rgba(251, 248, 243, 0.78);
  --glass-border: rgba(26, 22, 19, 0.09);
  --glass-blur: 22px;
  --glass-dark-bg: rgba(28, 23, 19, 0.78);
  --glass-dark-border: rgba(255, 255, 255, 0.1);

  /* Tipografia */
  --text-primary:   #1C1714;
  --text-secondary: #6E6155;
  --text-muted:     #A99B89;
  --text-on-dark:   #FBF8F3;
  --text-on-dark-muted: rgba(251, 248, 243, 0.62);

  /* Bordas */
  --border-color:  rgba(26, 22, 19, 0.10);
  --border-subtle: rgba(26, 22, 19, 0.05);
  --border-strong: rgba(26, 22, 19, 0.16);

  /* Tijolo — cor de ação e fechamento */
  --accent:        #D34638;
  --accent-rgb:    211, 70, 56;
  --accent-deep:   #A8392D;
  --accent-light:  #E2685B;
  --accent-subtle: rgba(211, 70, 56, 0.08);
  --accent-soft:   rgba(211, 70, 56, 0.14);

  /* Verde — só pro "sim" conquistado */
  --win:        #1E9E6A;
  --win-rgb:    30, 158, 106;
  --win-subtle: rgba(30, 158, 106, 0.12);

  /* Espaçamento / raios */
  --section-padding: clamp(5rem, 10vw, 8.5rem);
  --container-max: 1180px;
  --container-wide: 1260px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 32px;

  /* Sombras quentes */
  --shadow-sm: 0 2px 8px rgba(60, 40, 25, 0.05);
  --shadow:    0 12px 40px rgba(60, 40, 25, 0.08);
  --shadow-lg: 0 28px 70px rgba(60, 40, 25, 0.12), 0 8px 22px rgba(60, 40, 25, 0.07);
  --shadow-xl: 0 40px 100px rgba(40, 26, 16, 0.16);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Brilho decorativo quente */
body::before {
  content: '';
  position: fixed;
  top: -240px; right: -200px;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.07), transparent 70%);
  filter: blur(90px);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -320px; left: -220px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 187, 165, 0.28), transparent 70%);
  filter: blur(110px);
  pointer-events: none; z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.container-wide { max-width: var(--container-wide); }

/* ====================== TIPOGRAFIA ====================== */

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--accent);
  opacity: 0.55;
}
.eyebrow.eyebrow--center { justify-content: center; }
.eyebrow.eyebrow--center::before { display: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 480;
  letter-spacing: -0.022em;
  line-height: 1.04;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.55rem); font-weight: 560; line-height: 1.18; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.66; }
p.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--text-secondary); }

.text-win { color: var(--win); }
.serif { font-family: 'Fraunces', serif; }

/* ====================== BOTÕES ====================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: 13px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s cubic-bezier(.2,.7,.3,1), box-shadow 0.25s, background 0.25s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform 0.25s cubic-bezier(.2,.7,.3,1); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(var(--accent-rgb), 0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(var(--accent-rgb), 0.40);
}
.btn-primary:hover svg.arrow { transform: translateX(4px); }
.btn-secondary {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost { background: transparent; color: var(--text-primary); padding: 0.95rem 0.5rem; }
.btn-ghost:hover { color: var(--accent); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-on-dark { background: #fff; color: var(--bg-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-on-dark:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ====================== NAVBAR + MEGA-MENU ====================== */

.nav-wrapper {
  position: fixed;
  top: 1rem; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  pointer-events: none;
}
nav.navbar {
  pointer-events: all;
  width: 100%;
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.8rem 0.7rem 1.4rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 6px 28px rgba(60, 40, 25, 0.07);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav-wrapper.scrolled nav.navbar { box-shadow: 0 10px 36px rgba(60, 40, 25, 0.12); }

.brand { display: inline-flex; align-items: center; transition: opacity 0.2s; }
.brand:hover { opacity: 0.72; }
.brand-logo { height: 25px; width: auto; }
.brand-logo--sm { height: 21px; }

.nav-menu { display: flex; gap: 0.25rem; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--text-secondary);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.nav-link:hover { color: var(--text-primary); background: var(--surface-muted); }
.nav-link .chev { transition: transform 0.25s; opacity: 0.6; }
.nav-item.open > .nav-link .chev { transform: rotate(180deg); }
.nav-item.open > .nav-link { color: var(--text-primary); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-signin { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); padding: 0.55rem 0.7rem; transition: color 0.2s; }
.nav-signin:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.62rem 1.1rem;
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.3);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(var(--accent-rgb), 0.4); }

/* Mega-menu painel */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(680px, 90vw);
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.18s cubic-bezier(.2,.7,.3,1), visibility 0.16s;
  z-index: 210;
}
.nav-item.open .mega { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.85rem;
  border-radius: 13px;
  transition: background 0.18s;
}
.mega-card:hover { background: var(--accent-subtle); }
.mega-ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--surface-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background 0.18s, color 0.18s;
}
.mega-card:hover .mega-ico { background: var(--accent); color: #fff; }
.mega-card > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.mega-title { display: block; font-size: 0.92rem; font-weight: 650; color: var(--text-primary); line-height: 1.2; margin-bottom: 3px; }
.mega-desc { display: block; font-size: 0.78rem; color: var(--text-muted); line-height: 1.35; }
.mega-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.5rem; padding: 0.85rem 0.95rem;
  background: var(--bg-dark); border-radius: 14px;
}
.mega-foot-txt { color: var(--text-on-dark); font-size: 0.86rem; font-weight: 550; }
.mega-foot-txt span { color: var(--text-on-dark-muted); display: block; font-size: 0.76rem; font-weight: 400; }
.mega-foot a { color: #fff; font-weight: 650; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.mega-foot a:hover { color: var(--accent-light); }

/* Mobile toggle + drawer */
.nav-burger { display: none; width: 42px; height: 42px; border-radius: 11px; align-items: center; justify-content: center; color: var(--text-primary); }
.nav-burger:hover { background: var(--surface-muted); }
.mobile-drawer { display: none; }

@media (max-width: 940px) {
  .nav-menu, .nav-signin { display: none; }
  .nav-burger { display: inline-flex; }
  .mobile-drawer {
    display: block;
    position: fixed; inset: 0;
    z-index: 300;
    visibility: hidden;
    pointer-events: none;
  }
  .mobile-drawer.open { visibility: visible; pointer-events: all; }
  .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 16, 9, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0; transition: opacity 0.25s;
  }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(360px, 86vw);
    background: var(--bg-primary);
    box-shadow: -20px 0 60px rgba(40,26,16,0.2);
    padding: 1.25rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.2,.7,.3,1);
    display: flex; flex-direction: column;
  }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
  .drawer-close { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .drawer-close:hover { background: var(--surface-muted); }
  .acc-item { border-top: 1px solid var(--border-color); }
  .acc-head {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 1rem 0.25rem;
    font-size: 1.05rem; font-weight: 650; color: var(--text-primary);
    font-family: inherit;
  }
  .acc-head .chev { transition: transform 0.25s; color: var(--text-muted); }
  .acc-item.open .acc-head .chev { transform: rotate(180deg); }
  .acc-body { display: none; padding: 0 0.25rem 0.75rem; flex-direction: column; gap: 0.1rem; }
  .acc-item.open .acc-body { display: flex; }
  .acc-body a { padding: 0.6rem 0.5rem; font-size: 0.95rem; color: var(--text-secondary); border-radius: 9px; }
  .acc-body a:hover { background: var(--surface-muted); color: var(--accent); }
  .drawer-cta { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
}

/* ====================== SECTION HEADER ====================== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head p { margin-top: 1.1rem; font-size: 1.12rem; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ====================== HERO INTERATIVO ====================== */
.hero { padding: 9.5rem 0 5rem; position: relative; overflow: hidden; }
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(201,187,165,0.55) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 10%, black 30%, transparent 75%);
  mask-image: radial-gradient(120% 80% at 70% 10%, black 30%, transparent 75%);
  opacity: 0.7;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.08fr; align-items: center; gap: 4rem; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy p.lead { margin-bottom: 2rem; max-width: 510px; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--card-bg); border: 1px solid var(--border-color);
  padding: 0.4rem 0.85rem 0.4rem 0.5rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 1.6rem; box-shadow: var(--shadow-sm);
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--win); box-shadow: 0 0 0 3px var(--win-subtle); }

/* Seletor de serviço */
.hero-selector { margin-bottom: 1.5rem; }
.hero-selector-label { font-size: 0.9rem; font-weight: 650; color: var(--text-primary); margin-bottom: 0.8rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.55rem 1rem;
  border-radius: 100px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  font-size: 0.88rem; font-weight: 600; color: var(--text-secondary);
  transition: all 0.2s cubic-bezier(.2,.7,.3,1);
}
.chip:hover { border-color: var(--border-strong); color: var(--text-primary); transform: translateY(-1px); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(var(--accent-rgb),0.3); }

.hero-build {
  margin-top: 1.4rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.hero-build-line { font-size: 1.02rem; color: var(--text-secondary); }
.hero-build-line strong { color: var(--text-primary); font-weight: 700; }
.hero-ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero-microcopy {
  margin-top: 1.1rem;
  font-size: 0.85rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.hero-microcopy .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--sand-400); }

/* Visual — propcard sendo montado */
.hero-visual { position: relative; }
.propcard {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative; z-index: 2;
}
.propcard-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
}
.propcard-brandrow { display: flex; align-items: center; gap: 0.6rem; }
.propcard-avatar {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; font-family: 'Fraunces', serif;
}
.propcard-brandname { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); line-height: 1.1; }
.propcard-brandsub { font-size: 0.72rem; color: var(--text-muted); }
.propcard-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 650;
  background: var(--accent-subtle); color: var(--accent);
  padding: 0.35rem 0.7rem; border-radius: 100px;
}
.propcard-badge .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.propcard-body { padding: 1.4rem; }
.propcard-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.propcard-title {
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 500;
  letter-spacing: -0.02em; color: var(--text-primary); line-height: 1.1;
  margin-bottom: 1.2rem; min-height: 2.2em;
  transition: opacity 0.3s;
}
.propcard-rows { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 1.2rem; }
.propcard-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}
.propcard-row:last-child { border-bottom: none; }
.propcard-row .lbl { color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; }
.propcard-row .lbl svg { color: var(--win); }
.propcard-row .val { color: var(--text-primary); font-weight: 650; font-family: 'Fraunces', serif; }
.propcard-total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1rem 1.1rem; background: var(--surface-muted); border-radius: 13px; margin-bottom: 1.1rem;
}
.propcard-total .lbl { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; }
.propcard-total .amt { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 600; color: var(--text-primary); letter-spacing: -0.02em; }
.propcard-cta {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem; border-radius: 12px;
  background: var(--bg-dark); color: var(--text-on-dark);
  font-weight: 600; font-size: 0.92rem;
}

/* Floats reaproveitados */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.8rem 1.05rem;
  z-index: 5;
  display: flex; align-items: center; gap: 0.7rem;
}
.float-card.win { border-color: rgba(var(--win-rgb), 0.3); }
.float-ico {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.float-ico.brick { background: var(--accent-soft); color: var(--accent); }
.float-ico.win { background: var(--win-subtle); color: var(--win); }
.float-lbl { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1px; }
.float-val { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); line-height: 1; }
.float-status { display: flex; align-items: center; gap: 0.5rem; }
.float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--win); box-shadow: 0 0 0 3px var(--win-subtle); }
.float-status-txt { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.float-a { top: -22px; right: -18px; }
.float-b { bottom: -26px; left: -26px; }

/* ====================== SOCIAL PROOF ====================== */
.social { padding: 2.5rem 0 1rem; }
.social-eyebrow { text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); margin-bottom: 1.6rem; }
.social-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; max-width: 820px; margin: 0 auto 1.8rem; }
.social-chip { padding: 0.55rem 1.05rem; border-radius: 100px; background: var(--card-bg); border: 1px solid var(--border-color); font-size: 0.84rem; color: var(--text-secondary); font-weight: 550; }
.social-counter { display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-size: 0.95rem; color: var(--text-secondary); }
.social-counter .live { width: 8px; height: 8px; border-radius: 50%; background: var(--win); box-shadow: 0 0 0 4px var(--win-subtle); animation: pulse 2s infinite; }
.social-counter strong { color: var(--text-primary); font-weight: 700; }

/* ====================== PROBLEMA ====================== */
.problem { padding: var(--section-padding) 0; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.1rem; }
.problem-card {
  padding: 1.9rem 1.75rem; border-radius: var(--r);
  background: var(--card-bg); border: 1px solid var(--border-color);
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s, border-color 0.3s;
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.problem-ico {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--surface-muted); color: var(--text-primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
}
.problem-card h3 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; margin-bottom: 0.55rem; }
.problem-card p { font-size: 0.94rem; line-height: 1.55; }

/* ====================== COMO FUNCIONA (3 passos) ====================== */
.how { padding: var(--section-padding) 0; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: step; }
.step-card {
  position: relative; padding: 1.9rem; border-radius: var(--r-lg);
  background: var(--card-bg); border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num {
  font-family: 'Fraunces', serif; font-size: 0.9rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.05em; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.step-num::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.step-card h3 { font-size: 1.6rem; font-family: 'Fraunces', serif; font-weight: 500; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.96rem; margin-bottom: 1.4rem; }
.step-shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); aspect-ratio: 16/10; background: var(--surface-muted); }
.step-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.step-card.is-win { background: var(--bg-dark); border-color: transparent; }
.step-card.is-win h3, .step-card.is-win .step-shot { }
.step-card.is-win h3 { color: var(--text-on-dark); }
.step-card.is-win p { color: var(--text-on-dark-muted); }
.step-card.is-win .step-num { color: var(--accent-light); }
.step-card.is-win .step-num::before { background: var(--win); }
.step-toast {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
  background: var(--win-subtle); color: var(--win); border: 1px solid rgba(var(--win-rgb),0.25);
  padding: 0.5rem 0.9rem; border-radius: 100px; font-size: 0.85rem; font-weight: 650;
}

/* ====================== FEATURES TABS ====================== */
.features { padding: var(--section-padding) 0; position: relative; }
.tabs-nav {
  display: flex; gap: 0.35rem; background: var(--surface-muted);
  border: 1px solid var(--border-color); border-radius: 100px; padding: 5px;
  margin: 0 auto 3.2rem; width: fit-content; max-width: 100%; overflow-x: auto;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn { padding: 0.6rem 1.15rem; border-radius: 100px; font-weight: 600; font-size: 0.88rem; color: var(--text-secondary); transition: all 0.25s; white-space: nowrap; }
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { background: var(--bg-dark); color: var(--text-on-dark); box-shadow: var(--shadow-sm); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp 0.5s cubic-bezier(.2,.7,.3,1); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tab-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.tab-text h3.tab-h { font-family: 'Fraunces', serif; font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 480; line-height: 1.08; margin-bottom: 1.1rem; }
.tab-text > p { margin-bottom: 1.8rem; }
.tab-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.8rem; }
.tab-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; color: var(--text-primary); font-weight: 550; }
.tab-list .ck { flex-shrink: 0; margin-top: 1px; width: 21px; height: 21px; border-radius: 50%; background: var(--accent-subtle); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.tab-link { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--accent); font-weight: 650; font-size: 0.93rem; }
.tab-link:hover { gap: 0.7rem; }
.tab-visual { position: relative; }
.tab-shot { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); background: var(--card-bg); aspect-ratio: 16/10.5; }
.tab-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }

.tab-accordion-head { display: none; }

@media (max-width: 940px) {
  .tab-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .tabs-nav { display: none; }
  .tab-content { display: block !important; }
  .tab-accordion-head {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 1.3rem 0; border-top: 1px solid var(--border-color);
    font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 500; color: var(--text-primary);
  }
  .tab-accordion-ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--surface-muted); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; transition: transform 0.25s, background 0.2s, color 0.2s; }
  .tab-accordion-head.open .tab-accordion-ico { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: #fff; }
  .tab-grid { display: none; padding-bottom: 1.6rem; }
  .tab-grid.open { display: grid; }
  .float-card { display: none; }
}

/* ====================== CALCULADORA ====================== */
.calc { padding: var(--section-padding) 0; }
.calc-card {
  max-width: 920px; margin: 0 auto;
  background: var(--card-bg); border: 1px solid var(--border-color);
  border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.calc-step-label { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.calc-step-label b { color: var(--accent); font-weight: 600; }
.calc-block { margin-bottom: 1.8rem; }
.calc-toggle { display: inline-flex; background: var(--surface-muted); border: 1px solid var(--border-color); border-radius: 100px; padding: 5px; gap: 4px; }
.calc-toggle button { padding: 0.5rem 1.4rem; border-radius: 100px; font-weight: 600; font-size: 0.9rem; color: var(--text-secondary); transition: all 0.2s; }
.calc-toggle button.active { background: var(--bg-dark); color: var(--text-on-dark); }
.calc-result {
  margin-top: 0.5rem; padding: 1.8rem; border-radius: var(--r-lg);
  background: var(--bg-dark); color: var(--text-on-dark);
  position: relative; overflow: hidden;
}
.calc-result::before { content:''; position: absolute; top: -100px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.22), transparent 70%); filter: blur(40px); }
.calc-result-inner { position: relative; z-index: 1; }
.calc-result-label { font-size: 0.92rem; color: var(--text-on-dark-muted); margin-bottom: 0.5rem; }
.calc-result-label b { color: #fff; font-weight: 700; }
.calc-range { font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 600; letter-spacing: -0.02em; color: #fff; line-height: 1; margin-bottom: 0.3rem; transition: opacity 0.25s; }
.calc-range .per { font-size: 1.1rem; color: var(--text-on-dark-muted); font-family: 'Manrope', sans-serif; font-weight: 500; }
.calc-result .btn { margin-top: 1.4rem; }
.calc-micro { margin-top: 1.1rem; font-size: 0.82rem; color: var(--text-muted); }

/* ====================== WEDGE (aceite que fecha) ====================== */
.wedge { padding: var(--section-padding) 0; }
.wedge-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0.5rem; max-width: 980px; margin: 2.5rem auto 0; }
.wedge-node {
  padding: 1.4rem; border-radius: var(--r-lg); text-align: left;
  background: var(--card-bg); border: 1px solid var(--border-color);
  display: flex; flex-direction: column; gap: 0.85rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s;
}
.wedge-node:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.wedge-step { font-family: 'JetBrains Mono', monospace; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.wedge-node.win .wedge-step { color: var(--win); }
.wedge-stage { background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 1.1rem; min-height: 118px; display: flex; align-items: center; justify-content: center; }
.wedge-node.win .wedge-stage { background: var(--win-subtle); border-color: rgba(var(--win-rgb),0.2); }
.wedge-node-title { font-family: 'Fraunces', serif; font-size: 1.12rem; font-weight: 560; line-height: 1.15; }
.wedge-node-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.45; }
.wedge-arrow { display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: 0.55; }

/* mini-visuais do wedge */
.wn-prop { width: 100%; max-width: 180px; background: #fff; border: 1px solid var(--border-color); border-radius: 11px; padding: 0.75rem; box-shadow: var(--shadow-sm); }
.wn-prop-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.65rem; }
.wn-av { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg,var(--accent),var(--accent-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces',serif; font-weight: 700; font-size: 0.62rem; flex-shrink: 0; }
.wn-prop-meta { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.wn-prop-meta i { height: 5px; border-radius: 3px; background: rgba(26,22,19,0.13); display: block; }
.wn-prop-meta i.l1 { width: 65%; } .wn-prop-meta i.l2 { width: 42%; height: 4px; }
.wn-prop-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0.65rem; }
.wn-prop-rows span { height: 5px; border-radius: 3px; background: rgba(26,22,19,0.08); display: block; }
.wn-prop-rows span:nth-child(2) { width: 78%; }
.wn-prop-total { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-subtle); padding-top: 0.55rem; }
.wn-prop-total span { font-size: 0.6rem; color: var(--text-muted); }
.wn-prop-total b { font-family: 'Fraunces', serif; font-size: 0.95rem; font-weight: 600; }
.wn-approve { position: relative; }
.wn-approve-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--win); color: #fff; font-weight: 700; font-size: 0.82rem; padding: 0.6rem 1rem; border-radius: 10px; box-shadow: 0 8px 20px rgba(var(--win-rgb),0.32); }
.wn-cursor { position: absolute; right: -8px; bottom: -14px; animation: tap 1.7s infinite; }
@keyframes tap { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.wn-signed { display: flex; align-items: center; gap: 0.65rem; }
.wn-check { width: 34px; height: 34px; border-radius: 50%; background: var(--win); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(var(--win-rgb),0.32); flex-shrink: 0; }
.wn-signed b { font-size: 0.82rem; display: block; line-height: 1.2; }
.wn-signed span { font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; color: var(--text-muted); }
@media (max-width: 820px) {
  .wedge-flow { grid-template-columns: 1fr; }
  .wedge-arrow { transform: rotate(90deg); padding: 0.2rem 0; }
}

/* ====================== PRECIFICAÇÃO (dark) ====================== */
.pricemethods { padding: var(--section-padding) 0; }
.dark-card {
  background: var(--bg-dark); color: var(--text-on-dark);
  border-radius: var(--r-xl); padding: clamp(2.4rem, 5vw, 4.5rem);
  position: relative; overflow: hidden;
}
.dark-card::before { content:''; position: absolute; top: -150px; right: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.2), transparent 70%); filter: blur(60px); }
.dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.dark-card h2 { color: var(--text-on-dark); margin-bottom: 1.1rem; }
.dark-card h2 em { color: var(--accent-light); }
.dark-card .eyebrow { color: var(--accent-light); }
.dark-card > .dark-grid > .dark-copy p { color: var(--text-on-dark-muted); margin-bottom: 2rem; }
.methods { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.method {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 13px; padding: 1.1rem;
}
.method-lbl { font-family: 'JetBrains Mono', monospace; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); font-weight: 500; margin-bottom: 0.5rem; }
.method-title { font-size: 0.96rem; color: #fff; font-weight: 650; margin-bottom: 0.3rem; }
.method-desc { font-size: 0.8rem; color: var(--text-on-dark-muted); line-height: 1.4; }
.dark-visual { position: relative; }
.dark-shot { border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08); }
.dark-shot img { width: 100%; display: block; }
.dark-float {
  position: absolute; bottom: -24px; left: -22px;
  background: rgba(28,23,19,0.9); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 0.9rem 1.15rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4); z-index: 3;
}
.dark-float-lbl { font-size: 0.66rem; color: var(--accent-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; margin-bottom: 3px; }
.dark-float-val { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: #fff; line-height: 1; }
@media (max-width: 880px) { .dark-grid { grid-template-columns: 1fr; } .methods { grid-template-columns: 1fr 1fr; } .dark-float { left: 0; bottom: -16px; } }

/* ====================== DEMO ====================== */
.demo { padding: var(--section-padding) 0; }
.demo-player {
  max-width: 940px; margin: 0 auto; position: relative;
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--bg-dark); aspect-ratio: 16/9;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}
.demo-player img { width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0.55; }
.demo-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; background: linear-gradient(180deg, rgba(20,16,9,0.2), rgba(20,16,9,0.55)); }
.demo-play {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 44px rgba(var(--accent-rgb), 0.5);
  transition: transform 0.25s;
}
.demo-player:hover .demo-play { transform: scale(1.08); }
.demo-play::after { content:''; position: absolute; width: 78px; height: 78px; border-radius: 50%; border: 2px solid rgba(var(--accent-rgb),0.5); animation: ring 2.2s infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }
.demo-caption { color: #fff; font-weight: 600; font-size: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.demo-cta { text-align: center; margin-top: 2rem; }

/* ====================== ANTES / DEPOIS ====================== */
.compare { padding: var(--section-padding) 0; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.compare-col { padding: 2.4rem; border-radius: var(--r-lg); }
.compare-before { background: var(--card-bg); border: 1px solid var(--border-color); }
.compare-after { background: var(--bg-dark); color: var(--text-on-dark); position: relative; overflow: hidden; }
.compare-after::before { content:''; position: absolute; bottom: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.16), transparent 70%); filter: blur(55px); }
.compare-col h3 { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.6rem; font-weight: 500; }
.compare-before h3 { color: var(--text-muted); }
.compare-after h3 { color: var(--accent-light); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 1.05rem; position: relative; z-index: 1; }
.compare-list li { font-size: 1rem; line-height: 1.45; display: flex; align-items: flex-start; gap: 0.75rem; }
.compare-before .compare-list li { color: var(--text-secondary); }
.compare-after .compare-list li { color: var(--text-on-dark); }
.compare-list li .ic { flex-shrink: 0; margin-top: 2px; }
.compare-before .compare-list li .ic { color: var(--text-muted); }
.compare-after .compare-list li .ic { color: var(--win); }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } }

/* ====================== FAQ ====================== */
.faq { padding: var(--section-padding) 0; }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:first-child { border-top: 1px solid var(--border-color); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.5rem 0.25rem; text-align: left;
  font-family: 'Fraunces', serif; font-size: clamp(1.1rem, 2vw, 1.32rem); font-weight: 500; color: var(--text-primary);
}
.faq-ico { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--surface-muted); display: flex; align-items: center; justify-content: center; color: var(--text-primary); transition: transform 0.3s, background 0.2s, color 0.2s; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(.2,.7,.3,1); }
.faq-a-inner { padding: 0 3rem 1.6rem 0.25rem; }
.faq-a-inner p { font-size: 1.02rem; }

/* ====================== PREÇO (home) ====================== */
.pricing { padding: var(--section-padding) 0; }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; max-width: 920px; margin: 0 auto; align-items: stretch; }
.plan {
  padding: 2.4rem; border-radius: var(--r-lg);
  background: var(--card-bg); border: 1px solid var(--border-color);
  display: flex; flex-direction: column;
}
.plan.featured { background: var(--bg-dark); border-color: transparent; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.plan.featured::before { content:''; position: absolute; top: -120px; right: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.2), transparent 70%); filter: blur(55px); }
.plan-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.plan .plan-tag { color: var(--text-muted); }
.plan.featured .plan-tag { color: var(--accent-light); }
.plan-name { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 0.4rem; position: relative; z-index: 1; }
.plan.featured .plan-name { color: #fff; }
.plan-desc { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.plan.featured .plan-desc { color: var(--text-on-dark-muted); }
.plan-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.3rem; position: relative; z-index: 1; }
.plan-amt { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.plan.featured .plan-amt { color: #fff; }
.plan-per { font-size: 0.92rem; color: var(--text-muted); font-weight: 500; }
.plan.featured .plan-per { color: var(--text-on-dark-muted); }
.plan-annual { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.6rem; position: relative; z-index: 1; }
.plan.featured .plan-annual { color: var(--accent-light); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; position: relative; z-index: 1; flex: 1; }
.plan-feats li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-primary); }
.plan.featured .plan-feats li { color: var(--text-on-dark); }
.plan-feats .ck { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.plan.featured .plan-feats .ck { color: var(--accent-light); }
.plan .btn { position: relative; z-index: 1; }
.plan-badge { position: absolute; top: 1.6rem; right: 1.6rem; z-index: 2; background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 100px; letter-spacing: 0.04em; }
.pricing-compare-cta { text-align: center; margin-top: 2.2rem; }
.pricing-compare-cta p { margin-bottom: 1rem; font-size: 1.05rem; color: var(--text-primary); font-weight: 550; }
.pricing-micro { text-align: center; margin-top: 1.4rem; font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 768px) { .plan-grid { grid-template-columns: 1fr; } }

/* ====================== CTA FINAL ====================== */
.cta-final { padding: var(--section-padding) 0; }
.cta-card {
  background: var(--bg-dark); color: var(--text-on-dark);
  border-radius: var(--r-xl); padding: clamp(3rem, 6vw, 5.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-card::before { content:''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 820px; height: 820px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.14), transparent 60%); filter: blur(80px); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.cta-card h2 { color: var(--text-on-dark); margin-bottom: 1.2rem; }
.cta-card h2 em { color: var(--accent-light); }
.cta-card p { color: var(--text-on-dark-muted); margin-bottom: 2rem; font-size: 1.15rem; }
.cta-meta { margin-top: 1.6rem; display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; font-size: 0.86rem; color: var(--text-on-dark-muted); }
.cta-meta-item { display: flex; align-items: center; gap: 0.5rem; }
.cta-meta-item svg { color: var(--win); }
#cta-wave-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.2; pointer-events: none; z-index: 0; }

/* ====================== FOOTER ====================== */
footer { padding: 3.5rem 0 2.5rem; border-top: 1px solid var(--border-color); margin-top: 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand-col { max-width: 280px; }
.footer-brand-col .brand { margin-bottom: 1rem; }
.footer-tagline { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; color: var(--text-secondary); line-height: 1.4; }
.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-col-title { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--text-secondary); padding: 0.3rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--border-subtle); }
.footer-copy { font-size: 0.84rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 1.4rem; font-size: 0.84rem; }
.footer-bottom-links a { color: var(--text-secondary); }
.footer-bottom-links a:hover { color: var(--text-primary); }

/* ====================== FEATURE PAGE TEMPLATE ====================== */
.fhero { padding: 10rem 0 4rem; position: relative; overflow: hidden; }
.fhero-grid { display: grid; grid-template-columns: 1.05fr 1.1fr; gap: 4rem; align-items: center; }
.fhero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); margin-bottom: 1.3rem; }
.fhero p.lead { margin-bottom: 2rem; max-width: 500px; }
.fhero-shot { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); background: var(--card-bg); }
.fhero-shot img { width: 100%; display: block; }
.fhero-back { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1.5rem; }
.fhero-back:hover { color: var(--accent); }

.fpain { padding: 3rem 0; }
.fpain-card { max-width: 820px; margin: 0 auto; text-align: center; }
.fpain-card p { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-family: 'Fraunces', serif; font-style: italic; line-height: 1.4; color: var(--text-primary); }
.fpain-card p em { font-style: normal; color: var(--accent); }

.fsub { padding: var(--section-padding) 0; }
.zigzag { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5.5rem); }
.zz { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.zz:nth-child(even) .zz-text { order: 2; }
.zz-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-subtle); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.zz-text h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-family: 'Fraunces', serif; font-weight: 480; margin-bottom: 0.8rem; }
.zz-text p { font-size: 1.05rem; }
.zz-shot { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border-color); background: var(--card-bg); aspect-ratio: 16/11; }
.zz-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
@media (max-width: 880px) {
  .fhero-grid, .zz { grid-template-columns: 1fr; gap: 2.5rem; }
  .zz:nth-child(even) .zz-text { order: 0; }
}

.fflow { padding: var(--section-padding) 0; }
.fflow-card { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--r-xl); padding: clamp(2.4rem, 5vw, 4rem); text-align: center; }
.fflow-card h2 { margin-bottom: 1rem; }
.fflow-card > p { max-width: 600px; margin: 0 auto 2.5rem; font-size: 1.1rem; }
.fflow-chips { display: flex; align-items: center; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }
.fflow-chip { padding: 0.8rem 1.3rem; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 100px; font-weight: 600; font-size: 0.95rem; color: var(--text-primary); box-shadow: var(--shadow-sm); }
.fflow-chip.win { background: var(--bg-dark); color: #fff; border-color: transparent; }
.fflow-arrow { color: var(--accent); display: flex; }

/* ====================== PREÇOS PAGE ====================== */
.ptop { padding: 10rem 0 3rem; text-align: center; }
.ptop h1 { max-width: 820px; margin: 0 auto 1.3rem; }
.ptop p.lead { max-width: 640px; margin: 0 auto; }
.pcards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; max-width: 820px; margin: 3rem auto 0; }
.ptable-section { padding: 4rem 0 var(--section-padding); }
.ptable-wrap { max-width: 940px; margin: 0 auto; }
.ptable-toggle { display: none; }
.pcat { margin-bottom: 2.5rem; }
.pcat-title { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 500; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
.pcat-title .ic { color: var(--accent); display: flex; }
.ptable { width: 100%; border-collapse: collapse; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--r); overflow: hidden; }
.ptable col.col-pro { background: var(--accent-subtle); }
.ptable th, .ptable td { padding: 0.95rem 1.2rem; text-align: left; font-size: 0.92rem; }
.ptable thead th { font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; border-bottom: 1px solid var(--border-color); }
.ptable thead th.h-pro { color: var(--accent); position: relative; }
.ptable thead th.h-feat { width: 52%; }
.ptable td.c { text-align: center; }
.ptable tbody tr { border-bottom: 1px solid var(--border-subtle); }
.ptable tbody tr:last-child { border-bottom: none; }
.ptable td.feat { color: var(--text-primary); font-weight: 550; }
.ptable td.c.pro { font-weight: 650; color: var(--text-primary); }
.ck-yes { color: var(--accent); display: inline-flex; }
.ck-no { color: var(--sand-400); font-weight: 600; }
.ptag-pro { display: inline-block; margin-left: 0.4rem; background: var(--accent); color: #fff; font-size: 0.6rem; padding: 0.15rem 0.45rem; border-radius: 100px; font-family: 'Manrope'; letter-spacing: 0.03em; vertical-align: middle; }
.proad { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

@media (max-width: 768px) {
  .pcards { grid-template-columns: 1fr; }
  .ptable-toggle { display: inline-flex; margin: 0 auto 2rem; background: var(--surface-muted); border: 1px solid var(--border-color); border-radius: 100px; padding: 5px; gap: 4px; }
  .ptable-toggle button { padding: 0.5rem 1.5rem; border-radius: 100px; font-weight: 600; font-size: 0.9rem; color: var(--text-secondary); }
  .ptable-toggle button.active { background: var(--bg-dark); color: #fff; }
  .ptable thead th.h-feat { width: auto; }
  .ptable.hide-free td.free, .ptable.hide-free th.h-free { display: none; }
  .ptable.hide-pro td.pro, .ptable.hide-pro th.h-pro { display: none; }
  .ptable th, .ptable td { padding: 0.8rem 0.7rem; font-size: 0.86rem; }
}

/* Utility */
.center { text-align: center; }
.mt-cta { margin-top: 2.5rem; }
.sec-tight { padding: 3rem 0; }

/* =========================================================
   MOBILE REFINEMENTS  (sobrescreve regras acima)
========================================================= */

/* ---- Tablet (<= 940px) ---- */
@media (max-width: 940px) {
  .hero { padding: 8rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: 620px; }
  .hero-copy p.lead { max-width: none; }
  /* esconde floats cedo pra nunca causar overflow lateral */
  .float-card { display: none !important; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .fhero { padding: 8rem 0 3rem; }
  .ptop { padding: 8rem 0 2.5rem; }
}

/* ---- Phone (<= 680px) ---- */
@media (max-width: 680px) {
  :root { --section-padding: clamp(3.5rem, 12vw, 5rem); }

  .container { padding: 0 1.15rem; }

  h1 { font-size: clamp(2.1rem, 8.5vw, 2.7rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .section-head { margin-bottom: 2.4rem; }
  .section-head p { font-size: 1rem; }
  p.lead { font-size: 1.05rem; }

  /* Hero */
  .hero { padding: 7rem 0 2.5rem; }
  .hero-grid { gap: 2rem; }
  .hero-pill { margin-bottom: 1.1rem; }
  .hero-selector-label { font-size: 0.88rem; }
  .chip { padding: 0.5rem 0.9rem; font-size: 0.84rem; }
  .hero-ctas .btn { width: 100%; }
  .hero-microcopy { font-size: 0.8rem; }
  .propcard-body { padding: 1.15rem; }
  .propcard-title { font-size: 1.3rem; min-height: 0; margin-bottom: 1rem; }
  .propcard-total .amt { font-size: 1.45rem; }

  /* Passos */
  .how-steps { grid-template-columns: 1fr; gap: 0.9rem; }
  .step-card { padding: 1.6rem; }
  .step-card h3 { font-size: 1.45rem; }

  /* Problema */
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 1.6rem; }

  /* Features */
  .tab-text h3.tab-h { font-size: 1.55rem; }
  .tab-shot { aspect-ratio: 16/12; }

  /* Calculadora */
  .calc-card { padding: 1.5rem 1.25rem; }
  .calc-toggle { width: 100%; }
  .calc-toggle button { flex: 1; padding: 0.55rem 0.5rem; }
  .calc-result { padding: 1.4rem; }
  .calc-range { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .calc-result .btn { width: 100%; }

  /* Precificação dark */
  .dark-card { padding: 1.9rem 1.4rem; }
  .methods { grid-template-columns: 1fr; }

  /* Compare */
  .compare-col { padding: 1.8rem 1.5rem; }
  .compare-list li { font-size: 0.95rem; }

  /* FAQ */
  .faq-q { font-size: 1.05rem; padding: 1.25rem 0.15rem; }
  .faq-a-inner { padding-right: 1.5rem; }

  /* Preço */
  .plan { padding: 1.9rem 1.6rem; }
  .plan-badge { top: 1.3rem; right: 1.3rem; }
  .plan-amt { font-size: 2.4rem; }

  /* CTA final */
  .cta-card { padding: 2.6rem 1.5rem; }
  .cta-card .btn { width: 100%; }
  .cta-meta { flex-direction: column; gap: 0.6rem; align-items: center; }

  /* Demo */
  .demo-player { aspect-ratio: 16/11; }
  .demo-play { width: 64px; height: 64px; }
  .demo-play::after { width: 64px; height: 64px; }
  .demo-cta .btn { width: 100%; }

  /* Wedge */
  .wedge-node { padding: 1.3rem; }

  /* Feature pages */
  .fhero { padding: 7rem 0 2.5rem; }
  .fhero-grid, .zz { gap: 2rem; }
  .zigzag { gap: 3rem; }
  .zz-shot { aspect-ratio: 16/12; }
  .fhero-copy .btn, .demo-cta .btn { width: 100%; }
  .fpain-card p { font-size: 1.2rem; }
  .fflow-card { padding: 2rem 1.4rem; }
  .fflow-chip { font-size: 0.88rem; padding: 0.7rem 1.1rem; }
  .fflow-arrow svg { width: 20px; height: 20px; }

  /* Preços page */
  .ptop { padding: 7rem 0 2rem; }
  .pcat-title { font-size: 1.2rem; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 1.8rem; }
  .footer-links { gap: 1.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ---- Navbar compacta em telas pequenas ---- */
@media (max-width: 540px) {
  .nav-wrapper { top: 0.6rem; padding: 0 0.8rem; }
  nav.navbar { padding: 0.6rem 0.6rem 0.6rem 1rem; }
  .brand-logo { height: 22px; }
  .nav-cta { padding: 0.55rem 0.8rem; font-size: 0.8rem; }
  .nav-cta svg { display: none; }
}
@media (max-width: 380px) {
  .nav-cta span, .nav-cta { font-size: 0.78rem; }
  .nav-cta { padding: 0.5rem 0.7rem; }
  .brand-logo { height: 20px; }
}

/* =========================================================
   PRODUCT UI MOCKS — recriacoes estaticas e leves do app real
   (fiel ao produto: cards brancos, numeros em Fraunces,
   status pills, sem nenhuma dependencia de imagem)
========================================================= */
.ui-window {
  background: #fff;
  border: 1px solid rgba(26,22,19,0.10);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  color: var(--text-primary);
  position: relative; z-index: 2;
  width: 100%;
}
.ui-bar {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.62rem 0.9rem;
  border-bottom: 1px solid rgba(26,22,19,0.07);
  background: #FBFAF7;
}
.ui-dots { display: flex; gap: 5px; }
.ui-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(26,22,19,0.13); display: block; }
.ui-dots i:first-child { background: #E2685B; }
.ui-bar-title { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.01em; }
.ui-body { padding: 1.15rem 1.25rem 1.3rem; }
.ui-h1 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 560; letter-spacing: -0.02em; line-height: 1.1; }
.ui-h2 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 560; letter-spacing: -0.02em; }
.ui-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.ui-num { font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.02em; color: var(--text-primary); }
.ui-num .rs { font-size: 0.62em; color: var(--text-muted); font-weight: 500; margin-right: 1px; }

/* status pills (iguais ao app) */
.ui-pill { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.26rem 0.6rem; border-radius: 100px; white-space: nowrap; }
.ui-pill.gray  { background: rgba(26,22,19,0.06); color: var(--text-secondary); }
.ui-pill.green { background: rgba(var(--win-rgb),0.13); color: var(--win); }
.ui-pill.amber { background: rgba(199,127,18,0.14); color: #B97912; }
.ui-pill.blue  { background: rgba(91,141,239,0.13); color: #4F7FE0; text-transform: none; letter-spacing: 0; }
.ui-pill.indigo{ background: rgba(99,102,241,0.12); color: #5B5EE6; }
.ui-expira { color: #C07A12; font-size: 0.68rem; font-weight: 650; }

/* ---- Dashboard mock ---- */
.ui-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1rem; }
.ui-kpi { background: #FBFAF7; border: 1px solid rgba(26,22,19,0.07); border-radius: 12px; padding: 0.85rem 0.9rem; }
.ui-kpi-top { display: flex; align-items: center; justify-content: space-between; font-size: 0.68rem; color: var(--text-secondary); font-weight: 600; margin-bottom: 0.5rem; }
.ui-kpi-top svg { opacity: 0.85; }
.ui-kpi .ui-num { font-size: 1.4rem; line-height: 1; }
.ui-kpi-sub { font-size: 0.64rem; color: var(--text-muted); margin-top: 0.35rem; }
.ui-row2 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0.6rem; margin-top: 0.6rem; }
.ui-panel { background: #FBFAF7; border: 1px solid rgba(26,22,19,0.07); border-radius: 12px; padding: 0.85rem 0.9rem; }
.ui-panel-t { font-family: 'Fraunces', serif; font-size: 0.92rem; font-weight: 560; margin-bottom: 0.6rem; }
.ui-line { display: flex; align-items: center; justify-content: space-between; padding: 0.4rem 0; font-size: 0.74rem; border-bottom: 1px solid rgba(26,22,19,0.05); }
.ui-line:last-child { border-bottom: none; }
.ui-line .nm { font-weight: 650; color: var(--text-primary); }
.ui-line .mut { color: var(--text-muted); font-size: 0.68rem; }
.ui-rank { width: 18px; height: 18px; border-radius: 50%; background: rgba(26,22,19,0.06); display: inline-flex; align-items: center; justify-content: center; font-size: 0.64rem; font-weight: 700; color: var(--text-secondary); margin-right: 0.45rem; }

/* ---- Propostas list mock ---- */
.ui-proplist { margin-top: 1rem; }
.ui-prow { display: grid; grid-template-columns: 1.4fr 0.9fr 1fr; align-items: center; gap: 0.5rem; padding: 0.7rem 0.2rem; border-top: 1px solid rgba(26,22,19,0.06); }
.ui-prow.head { border-top: none; font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 700; padding-bottom: 0.4rem; }
.ui-prow .cli { font-weight: 700; font-size: 0.82rem; }
.ui-prow .cli small { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.66rem; }
.ui-prow .val { font-family: 'Fraunces', serif; font-weight: 600; font-size: 0.92rem; }
.ui-prow .st { justify-self: end; }

/* ---- Client card mock ---- */
.ui-clientcard { background: #fff; border: 1px solid rgba(26,22,19,0.10); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 1.3rem 1.35rem; position: relative; z-index: 2; }
.ui-cc-top { display: flex; align-items: flex-start; justify-content: space-between; }
.ui-cc-name { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
.ui-cc-contact { font-size: 0.8rem; color: var(--text-muted); margin-top: 1px; }
.ui-cc-kebab { color: var(--text-muted); font-size: 1.1rem; line-height: 0.5; letter-spacing: 1px; }
.ui-cc-div { height: 1px; background: rgba(26,22,19,0.07); margin: 1rem 0; }
.ui-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

/* ---- Sugestao de Preco mock ---- */
.ui-pricepills { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; margin: 1rem 0 1.1rem; }
.ui-pp { border: 1px solid rgba(26,22,19,0.1); border-radius: 11px; padding: 0.7rem 0.5rem; text-align: center; }
.ui-pp.sel { border-color: var(--text-primary); border-width: 1.5px; box-shadow: 0 4px 14px rgba(26,22,19,0.08); }
.ui-pp-lbl { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 0.35rem; }
.ui-pp .ui-num { font-size: 1.05rem; }
.ui-slider { height: 5px; border-radius: 3px; background: rgba(26,22,19,0.1); position: relative; margin: 0.4rem 0 0.5rem; }
.ui-slider-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 56%; background: var(--text-primary); border-radius: 3px; }
.ui-slider-knob { position: absolute; left: 56%; top: 50%; transform: translate(-50%,-50%); width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 2px solid var(--text-primary); box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.ui-slider-ends { display: flex; justify-content: space-between; font-size: 0.66rem; color: var(--text-muted); }
.ui-chosen { background: #FBFAF7; border: 1px solid rgba(26,22,19,0.07); border-radius: 13px; padding: 1rem; text-align: center; margin-top: 1rem; }
.ui-chosen-lbl { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.ui-chosen-row { display: flex; align-items: center; justify-content: center; gap: 1.1rem; }
.ui-chosen-row .ui-num { font-size: 1.9rem; }
.ui-stepbtn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(26,22,19,0.14); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 1.1rem; }

/* ---- Contrato / aceite mock ---- */
.ui-clauses { display: flex; flex-direction: column; gap: 0.55rem; margin: 1rem 0; }
.ui-clause { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--text-secondary); }
.ui-clause .ck { width: 18px; height: 18px; border-radius: 50%; background: rgba(var(--win-rgb),0.13); color: var(--win); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ui-signed { display: flex; align-items: center; gap: 0.55rem; background: rgba(var(--win-rgb),0.1); border: 1px solid rgba(var(--win-rgb),0.22); border-radius: 11px; padding: 0.7rem 0.9rem; font-weight: 700; color: var(--win); font-size: 0.85rem; }
.ui-registro { margin-top: 0.7rem; font-family: 'JetBrains Mono', monospace; font-size: 0.64rem; color: var(--text-muted); line-height: 1.5; }

/* ---- Phone (link publico) mock ---- */
.ui-phone { width: 230px; margin: 0 auto; background: #1A1613; border-radius: 30px; padding: 8px; box-shadow: var(--shadow-xl); position: relative; z-index: 2; }
.ui-phone-screen { background: var(--bg-primary); border-radius: 23px; overflow: hidden; padding: 1.1rem 0.95rem 1.2rem; }
.ui-phone-notch { width: 80px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.25); margin: 2px auto 8px; }
.ui-pp-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem; }
.ui-pp-av { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg,var(--accent),var(--accent-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces',serif; font-weight: 700; font-size: 0.72rem; }
.ui-pp-bn { font-size: 0.74rem; font-weight: 700; line-height: 1.05; }
.ui-pp-bs { font-size: 0.6rem; color: var(--text-muted); }
.ui-pp-title { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 560; line-height: 1.15; margin-bottom: 0.7rem; }
.ui-pp-card { background: #fff; border: 1px solid rgba(26,22,19,0.08); border-radius: 12px; padding: 0.8rem; margin-bottom: 0.8rem; }
.ui-pp-line { display: flex; justify-content: space-between; font-size: 0.68rem; padding: 0.28rem 0; color: var(--text-secondary); }
.ui-pp-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.5rem; margin-top: 0.2rem; border-top: 1px solid rgba(26,22,19,0.07); }
.ui-pp-total .ui-num { font-size: 1.05rem; }
.ui-pp-approve { background: var(--win); color: #fff; text-align: center; font-weight: 700; font-size: 0.78rem; padding: 0.65rem; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.ui-pp-foot { text-align: center; font-size: 0.56rem; color: var(--text-muted); margin-top: 0.6rem; }

/* ---- WhatsApp / mensagens mock ---- */
.ui-tmpl { display: flex; gap: 0.4rem; flex-wrap: wrap; margin: 0.9rem 0; }
.ui-tmpl span { font-size: 0.68rem; font-weight: 650; padding: 0.35rem 0.7rem; border-radius: 100px; background: #FBFAF7; border: 1px solid rgba(26,22,19,0.08); color: var(--text-secondary); }
.ui-tmpl span.sel { background: var(--text-primary); color: #fff; border-color: var(--text-primary); }
.ui-bubble { background: rgba(var(--win-rgb),0.08); border: 1px solid rgba(var(--win-rgb),0.18); border-radius: 12px 12px 12px 3px; padding: 0.8rem 0.9rem; font-size: 0.78rem; color: var(--text-primary); line-height: 1.5; }
.ui-bubble b { font-weight: 700; }
.ui-send-row { display: flex; gap: 0.5rem; margin-top: 0.9rem; }
.ui-btn-wa { flex: 1; background: var(--win); color: #fff; border-radius: 10px; padding: 0.6rem; text-align: center; font-weight: 700; font-size: 0.76rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.ui-btn-mail { flex: 1; background: #fff; border: 1px solid rgba(26,22,19,0.14); border-radius: 10px; padding: 0.6rem; text-align: center; font-weight: 650; font-size: 0.76rem; color: var(--text-primary); }

/* ---- Apresentacao / lead mock ---- */
.ui-present-hero { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
.ui-present-av { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg,var(--accent),var(--accent-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces',serif; font-weight: 700; font-size: 1.05rem; }
.ui-present-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; line-height: 1.05; }
.ui-present-role { font-size: 0.72rem; color: var(--text-muted); }
.ui-present-bio { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.9rem; }
.ui-present-svcs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.ui-present-svcs span { font-size: 0.68rem; font-weight: 600; padding: 0.32rem 0.65rem; border-radius: 100px; background: var(--accent-subtle); color: var(--accent); }
.ui-btn-dark { background: var(--text-primary); color: #fff; border-radius: 10px; padding: 0.68rem; text-align: center; font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 0.45rem; }

/* ---- Editor (Monta) mock ---- */
.ui-field { background: #FBFAF7; border: 1px solid rgba(26,22,19,0.09); border-radius: 9px; padding: 0.55rem 0.75rem; font-size: 0.78rem; color: var(--text-primary); display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.ui-field .lab { color: var(--text-muted); font-size: 0.66rem; display: block; margin-bottom: 1px; }
.ui-catlabel { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 700; margin: 0.4rem 0 0.5rem; }
.ui-svc { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0.7rem; border: 1px solid rgba(26,22,19,0.08); border-radius: 10px; margin-bottom: 0.5rem; font-size: 0.78rem; }
.ui-svc .nm { font-weight: 650; display: flex; align-items: center; gap: 0.5rem; }
.ui-svc .added { width: 18px; height: 18px; border-radius: 50%; background: rgba(var(--win-rgb),0.13); color: var(--win); display: inline-flex; align-items: center; justify-content: center; }
.ui-svc .pr { font-family: 'Fraunces', serif; font-weight: 600; }
.ui-editor-total { display: flex; align-items: baseline; justify-content: space-between; padding: 0.8rem 0.9rem; background: var(--text-primary); color: #fff; border-radius: 11px; margin-top: 0.7rem; }
.ui-editor-total span { font-size: 0.72rem; font-weight: 600; opacity: 0.8; }
.ui-editor-total .ui-num { color: #fff; font-size: 1.25rem; }

/* ---- Toast "Fechado." (verde) ---- */
.ui-toast { display: inline-flex; align-items: center; gap: 0.65rem; background: var(--win); color: #fff; border-radius: 13px; padding: 0.8rem 1.1rem; box-shadow: 0 14px 36px rgba(var(--win-rgb),0.4); font-weight: 700; }
.ui-toast .tk { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ui-toast small { display: block; font-weight: 500; opacity: 0.9; font-size: 0.72rem; }

/* mocks dentro de containers que antes tinham aspect-ratio */
.step-shot.mock, .tab-shot.mock, .zz-shot.mock, .fhero-shot.mock { aspect-ratio: auto; border: none; box-shadow: none; background: none; overflow: visible; border-radius: 0; }
.demo-mockwrap { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.demo-mockwrap .ui-window { max-width: 560px; }

@media (max-width: 680px) {
  .ui-row2 { grid-template-columns: 1fr; }
  .ui-body { padding: 1rem; }
}

/* ---- Extra mocks p/ paginas de feature ---- */
.ui-themes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1rem; }
.ui-theme { border: 1px solid rgba(26,22,19,0.1); border-radius: 11px; overflow: hidden; background: #fff; }
.ui-theme.sel { border-color: var(--accent); box-shadow: 0 4px 14px rgba(var(--accent-rgb),0.18); }
.ui-theme-prev { height: 52px; padding: 0.5rem 0.6rem; display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.ui-theme-prev i { display: block; height: 5px; border-radius: 3px; background: rgba(26,22,19,0.14); }
.ui-theme-prev i.t { width: 60%; height: 7px; background: rgba(26,22,19,0.3); }
.ui-theme.dark .ui-theme-prev { background: #1A1613; }
.ui-theme.dark .ui-theme-prev i { background: rgba(255,255,255,0.25); }
.ui-theme.brick .ui-theme-prev i.t { background: var(--accent); }
.ui-theme-nm { font-size: 0.7rem; font-weight: 700; padding: 0.45rem 0.6rem; border-top: 1px solid rgba(26,22,19,0.06); }

.ui-pipeline { margin-top: 1.1rem; }
.ui-bar-stack { display: flex; height: 36px; border-radius: 9px; overflow: hidden; margin-bottom: 0.7rem; }
.ui-bar-stack i { display: block; }
.ui-bar-stack i.s1 { background: var(--win); }
.ui-bar-stack i.s2 { background: #C7A34E; }
.ui-bar-stack i.s3 { background: rgba(26,22,19,0.16); }
.ui-legend { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.ui-legend span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--text-secondary); }
.ui-legend i { width: 9px; height: 9px; border-radius: 3px; display: block; }

.ui-timeline { margin-top: 1rem; padding-left: 0.4rem; }
.ui-tl { position: relative; padding-left: 1.2rem; padding-bottom: 0.9rem; border-left: 1.5px solid rgba(26,22,19,0.1); }
.ui-tl:last-child { padding-bottom: 0; }
.ui-tl::before { content: ''; position: absolute; left: -5px; top: 2px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.ui-tl.win::before { background: var(--win); }
.ui-tl-t { font-size: 0.8rem; font-weight: 650; }
.ui-tl-d { font-size: 0.68rem; color: var(--text-muted); }

.ui-goal { margin-top: 1rem; }
.ui-goal-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.6rem; }
.ui-goal-row .ui-num { font-size: 1.5rem; }
.ui-goal-row small { font-size: 0.72rem; color: var(--text-muted); }
.ui-goal-bar { height: 9px; border-radius: 5px; background: rgba(26,22,19,0.09); overflow: hidden; }
.ui-goal-bar i { display: block; height: 100%; width: 72%; background: var(--win); border-radius: 5px; }
.ui-goal-sub { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.5rem; }

.ui-leadbox .ui-line { padding: 0.55rem 0; }
.ui-dot-new { width: 7px; height: 7px; border-radius: 50%; background: var(--win); display: inline-block; margin-right: 0.5rem; box-shadow: 0 0 0 3px var(--win-subtle); }

/* ---- Seção Por que + Demo (merge) ---- */
.vp { padding: var(--section-padding) 0; }
.vp .section-head { max-width: 760px; margin-bottom: 2.6rem; }
.vp-ctas { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.8rem; flex-wrap: wrap; }
.vp-ctas .btn svg { margin-right: 0; }
@media (max-width: 680px) { .vp-ctas { flex-direction: column; } .vp-ctas .btn { width: 100%; } }

/* ---- Calculadora: passo 3 multi-select ---- */
.calc-hint { font-family: 'Manrope', sans-serif; text-transform: none; letter-spacing: 0; color: var(--text-muted); font-weight: 500; font-size: 0.74rem; }
.calc-subs { gap: 0.5rem; }
.calc-subs .chip { padding-left: 0.85rem; }
.calc-subs .chip.active::before { content: '✓'; margin-right: 0.4rem; font-weight: 800; font-size: 0.85em; }
.calc-subs-block { margin-bottom: 1.8rem; }

/* ---- Mock: modal "Como você quer precificar" (fiel ao app) ---- */
.ui-mm-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.ui-mm-head .ui-h2 { font-size: 1.05rem; line-height: 1.2; }
.ui-mm-x { color: var(--text-muted); flex-shrink: 0; margin-top: 2px; }
.ui-mm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 1.1rem; }
.ui-mm-card { border: 1px solid rgba(26,22,19,0.1); border-radius: 14px; padding: 1rem 0.85rem; text-align: center; }
.ui-mm-ico { width: 42px; height: 42px; border-radius: 50%; margin: 0 auto 0.6rem; display: flex; align-items: center; justify-content: center; }
.ui-mm-ico.gray { background: rgba(26,22,19,0.06); color: var(--text-secondary); }
.ui-mm-ico.teal { background: rgba(91,141,239,0.13); color: #4F7FE0; }
.ui-mm-ico.green { background: rgba(var(--win-rgb),0.13); color: var(--win); }
.ui-mm-ico.indigo { background: rgba(99,102,241,0.12); color: #5B5EE6; }
.ui-mm-t { font-weight: 700; font-size: 0.85rem; margin-bottom: 0.3rem; }
.ui-mm-d { font-size: 0.68rem; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 480px) { .ui-mm-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; } .ui-mm-card { padding: 0.8rem 0.6rem; } }

/* ---- Toggle de cobrança mensal/anual ---- */
.bill-toggle { display: flex; width: fit-content; margin: 0 auto 2.2rem; background: var(--surface-muted); border: 1px solid var(--border-color); border-radius: 100px; padding: 5px; gap: 4px; }
.bill-toggle button { padding: 0.55rem 1.4rem; border-radius: 100px; font-weight: 650; font-size: 0.9rem; color: var(--text-secondary); display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
.bill-toggle button.active { background: var(--bg-dark); color: #fff; }
.bill-save { background: var(--win-subtle); color: var(--win); font-size: 0.66rem; font-weight: 800; padding: 0.12rem 0.45rem; border-radius: 100px; letter-spacing: 0.02em; }
.bill-toggle button.active .bill-save { background: rgba(255,255,255,0.22); color: #fff; }

/* =========================================================
   NOVOS COMPONENTES (refs: página pública, editor de blocos, fluxo)
========================================================= */

/* ---- Correção do total no mock de telefone ---- */
.ui-pp-total { display: flex; align-items: baseline; justify-content: space-between; gap: 0.4rem; padding-top: 0.55rem; margin-top: 0.2rem; border-top: 1px solid rgba(26,22,19,0.07); }
.ui-pp-tl { font-size: 0.63rem; color: var(--text-secondary); font-weight: 600; white-space: nowrap; }
.ui-pp-amt { display: inline-flex; align-items: baseline; gap: 2px; white-space: nowrap; }
.ui-pp-amt b { font-family: 'Fraunces', serif; font-weight: 600; font-size: 0.98rem; }
.ui-pp-amt i { font-style: normal; font-size: 0.55rem; color: var(--text-muted); }

/* ---- Página pública de apresentação (recriação) ---- */
.pubpage { background: linear-gradient(180deg, #FBF8F3, #F3EDE3); padding: 0.9rem; display: flex; flex-direction: column; gap: 0.65rem; }
.pp-hero { background: #fff; border: 1px solid var(--border-color); border-radius: 14px; padding: 1.3rem 1.1rem; text-align: center; box-shadow: var(--shadow-sm); }
.pp-eyebrow { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); background: var(--surface-muted); padding: 0.25rem 0.65rem; border-radius: 100px; margin-bottom: 0.75rem; }
.pp-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.pp-h { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 0.55rem; }
.pp-h em { font-style: italic; color: var(--accent); }
.pp-sub { font-size: 0.68rem; color: var(--text-secondary); line-height: 1.45; margin-bottom: 0.9rem; max-width: 280px; margin-left: auto; margin-right: auto; }
.pp-btn { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.72rem; padding: 0.52rem 1rem; border-radius: 100px; box-shadow: 0 6px 16px rgba(var(--accent-rgb),0.3); }
.pp-card { background: #fff; border: 1px solid var(--border-color); border-radius: 14px; padding: 1rem 1.05rem; box-shadow: var(--shadow-sm); }
.pp-cat { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.pp-card-h { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 500; margin-bottom: 0.75rem; }
.pp-card-h em { font-style: italic; color: var(--text-secondary); }
.pp-diffs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.55rem; }
.pp-diff-ic { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-subtle); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 0.4rem; }
.pp-diff b { display: block; font-size: 0.64rem; line-height: 1.15; margin-bottom: 1px; }
.pp-diff span { display: block; font-size: 0.56rem; color: var(--text-muted); line-height: 1.3; }
@media (max-width: 420px) { .pp-diffs { grid-template-columns: 1fr; } }

/* ---- Editor de blocos (recriação "Blocos da sua página") ---- */
.blk-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.9rem; }
.blk-head b { font-family: 'Fraunces', serif; font-size: 1.02rem; font-weight: 560; }
.blk-head span { font-size: 0.62rem; color: var(--text-muted); white-space: nowrap; }
.blk-list { display: flex; flex-direction: column; gap: 0.5rem; }
.blk { display: flex; align-items: center; gap: 0.55rem; background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 0.6rem 0.7rem; }
.blk.off { opacity: 0.45; }
.blk-grip { color: var(--text-muted); flex-shrink: 0; display: flex; cursor: grab; }
.blk-ic { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-subtle); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.blk-meta { flex: 1; min-width: 0; }
.blk-meta b { display: block; font-size: 0.78rem; line-height: 1.15; }
.blk-meta span { display: block; font-size: 0.62rem; color: var(--text-muted); line-height: 1.25; }
.blk-act { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); flex-shrink: 0; }
.blk-switch { width: 30px; height: 17px; border-radius: 100px; background: var(--win); position: relative; flex-shrink: 0; }
.blk-switch::after { content: ''; position: absolute; right: 2px; top: 2px; width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.blk-switch.off { background: rgba(26,22,19,0.18); }
.blk-switch.off::after { left: 2px; right: auto; }

/* ---- Mock: link público (slug + QR) ---- */
.linkbar { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; background: #FBFAF7; border: 1px solid var(--border-color); border-radius: 11px; padding: 0.6rem 0.75rem; margin-top: 0.2rem; }
.linkbar-url { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; font-weight: 600; color: var(--text-primary); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.linkbar-url svg { color: var(--accent); flex-shrink: 0; }
.linkbar-copy { font-size: 0.68rem; font-weight: 700; color: #fff; background: var(--text-primary); padding: 0.35rem 0.7rem; border-radius: 8px; flex-shrink: 0; }
.linkbar-row { display: flex; align-items: center; gap: 0.85rem; margin-top: 0.9rem; }
.linkbar-qr { width: 64px; height: 64px; border-radius: 10px; border: 1px solid var(--border-color); padding: 7px; background: #fff; flex-shrink: 0; }
.linkbar-meta b { display: block; font-size: 0.82rem; }
.linkbar-meta span { display: block; font-size: 0.68rem; color: var(--text-muted); line-height: 1.35; }

/* ---- Fluxo de 3 etapas (substitui os chips) ---- */
.flow3 { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0.5rem; max-width: 660px; margin: 0 auto; }
.flow3-node { background: #fff; border: 1px solid var(--border-color); border-radius: 14px; padding: 1.2rem 0.9rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.55rem; box-shadow: var(--shadow-sm); }
.flow3-node.win { background: var(--bg-dark); border-color: transparent; }
.flow3-node.win b { color: #fff; }
.flow3-node.win .flow3-sub { color: var(--text-on-dark-muted); }
.flow3-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-subtle); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.flow3-node.win .flow3-ic { background: var(--win-subtle); color: var(--win); }
.flow3-node b { font-size: 0.92rem; font-weight: 700; }
.flow3-sub { font-size: 0.74rem; color: var(--text-secondary); line-height: 1.3; }
.flow3-arrow { display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: 0.5; }
@media (max-width: 640px) { .flow3 { grid-template-columns: 1fr; } .flow3-arrow { transform: rotate(90deg); padding: 0.15rem 0; } }

/* ---- Precificação: releitura dos 4 métodos (cards premium no dark) ---- */
.dark-link { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--accent-light); font-weight: 650; font-size: 0.95rem; margin-top: 0.4rem; }
.dark-link:hover { gap: 0.7rem; color: #fff; }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.pm-card { position: relative; isolation: isolate; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 1.5rem 1.35rem; overflow: hidden; transition: transform 0.3s cubic-bezier(.2,.7,.3,1), background 0.3s, border-color 0.3s; }
.pm-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.085); border-color: rgba(255,255,255,0.2); }
.pm-card.feat { border-color: rgba(var(--accent-rgb),0.6); background: rgba(var(--accent-rgb),0.14); }
.pm-card.feat:hover { background: rgba(var(--accent-rgb),0.2); }
.pm-orb, .pm-lbl, .pm-name, .pm-desc, .pm-tag { position: relative; z-index: 1; }
.pm-orb { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(var(--accent-rgb),0.4); margin-bottom: 1.2rem; }
.pm-num { position: absolute; bottom: -1rem; right: 0.5rem; z-index: 0; font-family: 'Fraunces', serif; font-size: 4.5rem; font-weight: 500; color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none; }
.pm-lbl { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-light); font-weight: 500; margin-bottom: 0.45rem; }
.pm-name { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 500; color: #fff; letter-spacing: -0.01em; margin-bottom: 0.55rem; line-height: 1.1; }
.pm-desc { font-size: 0.85rem; color: var(--text-on-dark-muted); line-height: 1.45; }
.pm-tag { position: absolute; top: 1.15rem; right: 1.2rem; background: var(--accent); color: #fff; font-size: 0.62rem; font-weight: 700; padding: 0.22rem 0.6rem; border-radius: 100px; letter-spacing: 0.03em; box-shadow: 0 6px 16px rgba(var(--accent-rgb),0.4); }
@media (max-width: 880px) { .pm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .pm-grid { grid-template-columns: 1fr; } }

/* ---- Tabela de preços: alinhamento (fixed) + Pro mais destacado ---- */
.ptable { table-layout: fixed; }
.ptable col.col-feat { width: 54%; }
.ptable col.col-free { width: 23%; }
.ptable col.col-pro  { width: 23%; background: rgba(var(--accent-rgb), 0.06); }
.ptable thead th.h-pro {
  background: var(--accent); color: #fff;
  border-bottom: none;
}
.ptable thead th.h-pro .ptag-pro { background: #fff; color: var(--accent); }
.ptable thead th.h-free { color: var(--text-secondary); font-weight: 600; }
/* linhas verticais contínuas que delimitam a coluna Pro */
.ptable td.c.pro, .ptable thead th.h-pro {
  border-left: 1.5px solid rgba(var(--accent-rgb), 0.28);
  border-right: 1.5px solid rgba(var(--accent-rgb), 0.28);
}
.ptable td.c.pro { font-weight: 700; color: var(--text-primary); }
.ck-yes { color: var(--accent); }
.ck-no { color: var(--sand-400); }

@media (max-width: 768px) {
  /* (substituído pelo bloco de harmonização fixed mais abaixo) */
}

/* =========================================================
   AJUSTES — calc mobile, menu ativo, toggle, tabela mobile,
   precificação premium (releitura)
========================================================= */

/* ---- Indicador de página ativa no menu ---- */
.nav-link.active { color: var(--accent); }
.nav-item.has-mega > .nav-link.active { color: var(--accent); }
.acc-head.active { color: var(--accent); }
.acc-body a.active { color: var(--accent); background: var(--accent-subtle); font-weight: 700; }
.mega-card.active { background: var(--accent-subtle); }
.mega-card.active .mega-ico { background: var(--accent); color: #fff; }
.mega-card.active .mega-title { color: var(--accent); }

/* ---- Respiro do toggle na hero de /precos ---- */
.ptop .bill-toggle { margin-top: 1.9rem; }

/* ---- Calculadora: resultado harmônico no mobile ---- */
@media (max-width: 680px) {
  .calc-result { padding: 1.35rem 1.1rem; }
  .calc-result-label { font-size: 0.9rem; }
  .calc-range { font-size: clamp(1.45rem, 6.4vw, 2rem); line-height: 1.12; }
  .calc-range .per { font-size: 0.9rem; white-space: nowrap; }
  .calc-result .btn { width: 100%; font-size: 0.9rem; padding: 0.9rem 0.9rem; line-height: 1.25; }
}

/* ---- Tabela de preços: harmonização no mobile (fixed + coluna oculta = 0) ---- */
@media (max-width: 768px) {
  .ptable { table-layout: fixed; }
  .ptable col.col-feat { width: 60%; }
  .ptable.hide-pro col.col-free { width: 40%; }
  .ptable.hide-pro col.col-pro { width: 0; }
  .ptable.hide-free col.col-pro { width: 40%; }
  .ptable.hide-free col.col-free { width: 0; }
  .ptable td.feat { word-break: break-word; }
}

/* ---- Precificação: variante light dos 4 métodos (feature page) ---- */
.pm-grid.light .pm-card { background: #fff; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.pm-grid.light .pm-card:hover { background: #fff; border-color: var(--border-strong); box-shadow: var(--shadow); }
.pm-grid.light .pm-card.feat { border-color: var(--accent); background: var(--accent-subtle); }
.pm-grid.light .pm-card.feat:hover { background: var(--accent-soft); }
.pm-grid.light .pm-num { color: rgba(26,22,19,0.05); }
.pm-grid.light .pm-lbl { color: var(--accent); }
.pm-grid.light .pm-name { color: var(--text-primary); }
.pm-grid.light .pm-desc { color: var(--text-secondary); }

/* ---- Componentes premium de precificação (releitura, sem chrome de app) ---- */
.pcomp { background: #fff; border: 1px solid var(--border-color); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1.6rem 1.5rem; position: relative; overflow: hidden; }
.pcomp::before { content: ''; position: absolute; top: -70px; right: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.1), transparent 70%); filter: blur(30px); pointer-events: none; }
.pcomp-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.55rem; position: relative; }
.pcomp-title { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1.12; margin-bottom: 1.2rem; position: relative; }
.pcomp-rows { display: flex; flex-direction: column; margin-bottom: 1.2rem; position: relative; }
.pcomp-row { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--border-subtle); font-size: 0.92rem; }
.pcomp-row:last-child { border-bottom: none; }
.pcomp-row .l { color: var(--text-secondary); }
.pcomp-row .v { font-family: 'Fraunces', serif; font-weight: 600; color: var(--text-primary); }
.pcomp-result { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--bg-dark); color: #fff; border-radius: 13px; padding: 0.9rem 1.15rem; position: relative; }
.pcomp-result span { font-size: 0.82rem; color: var(--text-on-dark-muted); font-weight: 600; }
.pcomp-result b { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.pcomp-result b .rs { font-size: 0.62em; color: var(--text-on-dark-muted); margin-right: 1px; }
.pcomp-bigwrap { text-align: center; padding: 1rem 0 1.3rem; position: relative; }
.pcomp-bigwrap .lbl { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.pcomp-big { font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 6vw, 3.2rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.pcomp-big .rs { font-size: 0.5em; color: var(--text-muted); margin-right: 2px; vertical-align: baseline; }
.pcomp-note { font-size: 0.85rem; color: var(--text-secondary); text-align: center; line-height: 1.5; position: relative; }
.roi-flow { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; position: relative; }
.roi-step { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.95rem 1.15rem; border-radius: 13px; background: var(--bg-secondary); border: 1px solid var(--border-color); }
.roi-step span { font-size: 0.82rem; color: var(--text-secondary); }
.roi-step b { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; }
.roi-step.accent { background: var(--accent); border-color: var(--accent); }
.roi-step.accent span { color: rgba(255,255,255,0.85); }
.roi-step.accent b { color: #fff; }
.roi-arrow { color: var(--accent); opacity: 0.6; }
/* dentro do pcomp, deixa os pills/slider do benchmark respirarem */
.pcomp .ui-pricepills { margin-top: 0; }
.pcomp .ui-chosen { display: none; }

/* ---- Tabela de preços no mobile: Free e Pro lado a lado (sem toggle) ---- */
@media (max-width: 768px) {
  .ptable-toggle { display: none; }
  .ptable { table-layout: fixed; }
  .ptable col.col-feat { width: 46%; }
  .ptable col.col-free { width: 27%; }
  .ptable col.col-pro  { width: 27%; }
  .ptable th, .ptable td { padding: 0.58rem 0.4rem; font-size: 0.73rem; }
  .ptable thead th { font-size: 0.62rem; letter-spacing: 0.04em; }
  .ptable td.feat { font-size: 0.75rem; line-height: 1.3; word-break: break-word; }
  .ptable td.c.pro { font-size: 0.72rem; }
  .ptable .ck-yes svg { width: 14px; height: 14px; }
  .ptable .proad { font-size: 0.62rem; }
}
@media (max-width: 360px) {
  .ptable th, .ptable td { padding: 0.5rem 0.3rem; font-size: 0.68rem; }
  .ptable td.feat { font-size: 0.7rem; }
}

/* =========================================================
   PÁGINAS LEGAIS (Termos / Privacidade)
========================================================= */
.legal { padding: 9.5rem 0 var(--section-padding); }
.legal-head { max-width: 780px; margin: 0 auto 3.5rem; text-align: center; }
.legal-head h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.legal-updated { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: var(--text-muted); background: var(--surface-muted); border: 1px solid var(--border-color); padding: 0.4rem 0.9rem; border-radius: 100px; }
.legal-updated::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.legal-grid { display: grid; grid-template-columns: 230px 1fr; gap: 3.5rem; align-items: start; max-width: 980px; margin: 0 auto; }
.legal-toc { position: sticky; top: 6.5rem; }
.legal-toc-title { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.legal-toc a { display: block; font-size: 0.85rem; color: var(--text-secondary); padding: 0.4rem 0 0.4rem 0.9rem; border-left: 2px solid var(--border-color); line-height: 1.35; transition: color 0.2s, border-color 0.2s; }
.legal-toc a:hover { color: var(--accent); border-color: var(--accent); }
.legal-body { min-width: 0; }
.legal-intro { font-size: 1.08rem; line-height: 1.7; color: var(--text-secondary); padding-bottom: 1.8rem; margin-bottom: 1.8rem; border-bottom: 1px solid var(--border-color); }
.legal-section { scroll-margin-top: 6.5rem; margin-bottom: 2.6rem; }
.legal-section h2 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin-bottom: 0.9rem; display: flex; gap: 0.6rem; }
.legal-section h2 .n { color: var(--accent); font-family: 'Fraunces', serif; }
.legal-section h3 { font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; margin: 1.4rem 0 0.5rem; color: var(--text-primary); }
.legal-body p { font-size: 1rem; line-height: 1.72; color: var(--text-secondary); margin-bottom: 0.9rem; }
.legal-body ul { list-style: none; margin: 0.6rem 0 1.1rem; padding: 0; }
.legal-body ul li { position: relative; padding-left: 1.4rem; font-size: 1rem; line-height: 1.65; color: var(--text-secondary); margin-bottom: 0.55rem; }
.legal-body ul li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 2px; background: var(--accent); opacity: 0.7; }
.legal-body strong { color: var(--text-primary); font-weight: 650; }
.legal-body a.inl { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-callout { background: var(--bg-secondary); border: 1px solid var(--border-color); border-left: 3px solid var(--accent); border-radius: var(--r-sm); padding: 1.1rem 1.3rem; margin: 1.3rem 0; }
.legal-callout p { margin-bottom: 0; font-size: 0.95rem; }
.legal-contact { margin-top: 2.5rem; padding: 1.6rem 1.8rem; background: var(--bg-dark); color: var(--text-on-dark); border-radius: var(--r-lg); }
.legal-contact h3 { color: #fff; font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.2rem; margin: 0 0 0.5rem; }
.legal-contact p { color: var(--text-on-dark-muted); margin-bottom: 0.3rem; }
.legal-contact a { color: var(--accent-light); font-weight: 600; }
@media (max-width: 880px) {
  .legal { padding: 8rem 0 var(--section-padding); }
  .legal-grid { grid-template-columns: 1fr; gap: 2rem; }
  .legal-toc { display: none; }
}

/* =========================================================
   POLISH PASS — animações, efeitos e micro-interações
   (entrada do hero, marquee, contadores, tilt, mocks vivos)
========================================================= */

/* ---- Variantes de reveal ---- */
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal-scale { opacity: 0; transform: scale(0.96) translateY(14px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal-left.in, .reveal-right.in, .reveal-scale.in { opacity: 1; transform: none; }

/* stagger automático: filhos entram em cascata (fill backwards
   pra não interferir nos transforms de hover depois da entrada) */
[data-stagger] > * { opacity: 0; }
[data-stagger].in > * { opacity: 1; animation: staggerRise 0.65s cubic-bezier(.2,.7,.3,1) backwards; animation-delay: var(--d, 0s); }
@keyframes staggerRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right, .reveal-scale, [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* ---- Entrada do hero (no load) ---- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
  @keyframes heroCard { from { opacity: 0; transform: translateY(34px) scale(0.97); } to { opacity: 1; transform: none; } }
  .hero-copy > * { opacity: 0; animation: heroRise 0.85s cubic-bezier(.2,.7,.3,1) forwards; }
  .hero-copy > .hero-pill { animation-delay: 0.05s; }
  .hero-copy > h1 { animation-delay: 0.14s; }
  .hero-copy > .lead { animation-delay: 0.26s; }
  .hero-copy > .hero-selector { animation-delay: 0.38s; }
  .hero-copy > .hero-build { animation-delay: 0.5s; }
  .hero-visual .propcard { opacity: 0; animation: heroCard 0.95s 0.3s cubic-bezier(.2,.7,.3,1) forwards; }
  .hero-visual .float-card { opacity: 0; animation: heroRise 0.7s cubic-bezier(.2,.7,.3,1) forwards; }
  .hero-visual .float-a { animation-delay: 0.95s; }
  .hero-visual .float-b { animation-delay: 1.15s; }
}

/* ---- Float contínuo dos cards flutuantes ---- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
  .float-card { will-change: transform; }
  .hero-visual .float-a.in-float, .tab-visual .float-a { animation: floaty 5.2s ease-in-out infinite; }
  .hero-visual .float-b.in-float, .tab-visual .float-b { animation: floaty 6.4s 0.8s ease-in-out infinite; }
}

/* ---- Tilt 3D no propcard do hero ---- */
.tilt-wrap { perspective: 1100px; }
.tilt { transform-style: preserve-3d; transition: transform 0.18s ease-out; will-change: transform; }
.tilt .float-card { transform: translateZ(40px); }

/* ---- Brilho varrendo o botão primário ---- */
.btn-primary, .nav-cta { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::after, .nav-cta::after {
  content: ''; position: absolute; top: -40%; bottom: -40%; left: -70%; width: 36%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-22deg); transition: left 0.6s cubic-bezier(.2,.7,.3,1); pointer-events: none; z-index: 1;
}
.btn-primary:hover::after, .nav-cta:hover::after { left: 140%; }

/* ---- Marquee dos nichos (social proof) ---- */
.social-chips.marquee {
  flex-wrap: nowrap; justify-content: flex-start; gap: 0; overflow: hidden; max-width: 880px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track { display: flex; gap: 0.6rem; padding-right: 0.6rem; flex-shrink: 0; animation: marquee 26s linear infinite; }
.social-chips.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee .social-chip { white-space: nowrap; flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Sublinhado desenhado nos destaques dos títulos ---- */
.section-head h2 em { position: relative; }
.section-head h2 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 0.09em;
  background: currentColor; opacity: 0.34; border-radius: 2px;
  transform: scaleX(0); transform-origin: left center; transition: transform 0.8s 0.35s cubic-bezier(.2,.7,.3,1);
}
.section-head.in h2 em::after { transform: scaleX(1); }

/* ---- Setas do wedge/fluxo respirando ---- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes nudge { 0%, 100% { transform: translateX(0); opacity: 0.55; } 50% { transform: translateX(5px); opacity: 1; } }
  .wedge-arrow svg, .flow3-arrow svg { animation: nudge 2.2s ease-in-out infinite; }
  @media (max-width: 820px) { .wedge-arrow svg { animation: none; } }
  @media (max-width: 640px) { .flow3-arrow svg { animation: none; } }
}

/* ---- Botão de aprovar do wedge: ping de toque ---- */
.wn-approve-btn { position: relative; }
.wn-approve-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  box-shadow: 0 0 0 0 rgba(var(--win-rgb), 0.45); animation: approvePing 1.7s infinite;
}
@keyframes approvePing { 0% { box-shadow: 0 0 0 0 rgba(var(--win-rgb), 0.45); } 70%, 100% { box-shadow: 0 0 0 12px rgba(var(--win-rgb), 0); } }
@media (prefers-reduced-motion: reduce) { .wn-approve-btn::after { animation: none; } }

/* ---- pm-cards: spotlight que segue o mouse ---- */
.pm-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.10), transparent 65%);
  transition: opacity 0.3s;
}
.pm-card:hover::before { opacity: 1; }
.pm-grid.light .pm-card::before { background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(var(--accent-rgb),0.07), transparent 65%); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes orbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
  .pm-card:hover .pm-orb { animation: orbFloat 2.4s ease-in-out infinite; }
}

/* ---- Mocks vivos: disparam quando a seção revela (.reveal.in) ---- */
@media (prefers-reduced-motion: no-preference) {
  /* checks dos serviços adicionados dão "pop" em cascata */
  .reveal .ui-svc .added svg, .reveal .ui-clause .ck svg, .reveal .tab-list .ck svg { opacity: 0; transform: scale(0.2); }
  .reveal.in .ui-svc .added svg, .reveal.in .ui-clause .ck svg, .reveal.in .tab-list .ck svg { animation: popIn 0.45s cubic-bezier(.3,1.6,.4,1) forwards; }
  .reveal.in .ui-svc:nth-of-type(1) .added svg, .reveal.in .ui-clause:nth-of-type(1) .ck svg, .reveal.in .tab-list li:nth-child(1) .ck svg { animation-delay: 0.30s; }
  .reveal.in .ui-svc:nth-of-type(2) .added svg, .reveal.in .ui-clause:nth-of-type(2) .ck svg, .reveal.in .tab-list li:nth-child(2) .ck svg { animation-delay: 0.48s; }
  .reveal.in .ui-clause:nth-of-type(3) .ck svg, .reveal.in .tab-list li:nth-child(3) .ck svg { animation-delay: 0.66s; }
  .reveal.in .tab-list li:nth-child(4) .ck svg { animation-delay: 0.84s; }
  @keyframes popIn { from { opacity: 0; transform: scale(0.2); } to { opacity: 1; transform: scale(1); } }

  /* toast "Fechado." entra com mola */
  .reveal .ui-toast { opacity: 0; transform: translateY(16px) scale(0.92); }
  .reveal.in .ui-toast { animation: toastSpring 0.6s 0.45s cubic-bezier(.3,1.5,.4,1) forwards; }
  @keyframes toastSpring { from { opacity: 0; transform: translateY(16px) scale(0.92); } to { opacity: 1; transform: none; } }

  /* selo "assinado" confirma depois das cláusulas */
  .reveal .ui-signed { opacity: 0; transform: scale(0.96); }
  .reveal.in .ui-signed { animation: popIn 0.5s 0.9s cubic-bezier(.3,1.6,.4,1) forwards; }

  /* slider de benchmark preenche sozinho */
  .reveal .ui-slider-fill { width: 0; }
  .reveal .ui-slider-knob { left: 0; }
  .reveal.in .ui-slider-fill { width: 56%; transition: width 0.9s 0.4s cubic-bezier(.2,.7,.3,1); }
  .reveal.in .ui-slider-knob { left: 56%; transition: left 0.9s 0.4s cubic-bezier(.2,.7,.3,1); }

  /* barras de meta/pipeline crescem */
  .reveal .ui-goal-bar i { width: 0; }
  .reveal.in .ui-goal-bar i { width: 72%; transition: width 1s 0.4s cubic-bezier(.2,.7,.3,1); }
}

/* ---- Pulso sutil no badge "Aguardando aceite" já existe (pulse) ---- */

/* ---- Transição suave do conteúdo do propcard ao trocar serviço ---- */
.propcard-title, #pc-svc, #pc-total, #pc-unit { transition: opacity 0.22s ease; }

/* ---- Hover de cards de plano ---- */
.plan { transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ---- FAQ: resposta desliza com leve fade ---- */
.faq-a-inner { opacity: 0; transform: translateY(-6px); transition: opacity 0.35s 0.05s, transform 0.35s 0.05s; }
.faq-item.open .faq-a-inner { opacity: 1; transform: none; }

/* =========================================================
   APP FRAME — mock fiel ao shell real do Precifica
   (sidebar com seções Vendas/Relacionamento, item ativo com
   indicador tijolo, números em sans bold como no app)
========================================================= */
.ui-frame { display: grid; grid-template-columns: 128px 1fr; align-items: stretch; }
.ui-side {
  border-right: 1px solid rgba(26,22,19,0.07);
  background: #FCFBF9;
  padding: 0.75rem 0.5rem;
  display: flex; flex-direction: column; gap: 2px;
}
.ui-side-logo { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.82rem; letter-spacing: -0.02em; color: #171717; padding: 0 0.45rem 0.55rem; }
.ui-side-logo i { font-style: normal; color: var(--accent); }
.ui-side-sec { font-size: 0.5rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #A3A3A3; padding: 0.55rem 0.45rem 0.25rem; }
.ui-side-item {
  position: relative;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.66rem; font-weight: 600; color: #737373;
  padding: 0.34rem 0.45rem; border-radius: 8px;
  white-space: nowrap;
}
.ui-side-item svg { flex-shrink: 0; opacity: 0.85; }
.ui-side-item.active {
  background: #fff; color: #171717;
  border: 1px solid rgba(26,22,19,0.07);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.ui-side-item.active::before { content: ''; position: absolute; left: -0.5rem; top: 6px; bottom: 6px; width: 2.5px; border-radius: 0 3px 3px 0; background: var(--accent); }
.ui-side-pro { margin-left: auto; font-size: 0.46rem; font-weight: 800; letter-spacing: 0.06em; color: var(--accent); background: var(--accent-subtle); padding: 0.1rem 0.3rem; border-radius: 100px; }

/* números e títulos do app em sans bold (Geist-like), fiel ao produto */
.ui-app .ui-h1 { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.03em; font-size: 1.18rem; color: #171717; }
.ui-app .ui-num { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.ui-app .ui-panel-t { font-family: 'Manrope', sans-serif; font-weight: 750; letter-spacing: -0.01em; }
.ui-app .ui-prow .val, .ui-app .ui-svc .pr { font-family: 'Manrope', sans-serif; font-weight: 750; }

/* toolbar de página (busca + botão preto, como no app) */
.ui-toolbar { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.85rem; }
.ui-search {
  flex: 1; display: flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 1px solid rgba(26,22,19,0.1); border-radius: 9px;
  padding: 0.42rem 0.6rem; font-size: 0.64rem; color: var(--text-muted);
  min-width: 0; overflow: hidden; white-space: nowrap;
}
.ui-search svg { flex-shrink: 0; opacity: 0.6; }
.ui-btn-new {
  display: inline-flex; align-items: center; gap: 0.3rem; flex-shrink: 0;
  background: #171717; color: #fff; border-radius: 100px;
  font-size: 0.64rem; font-weight: 700; padding: 0.42rem 0.7rem;
  box-shadow: 0 2px 8px rgba(17,19,23,0.25); white-space: nowrap;
}
.ui-seg { display: inline-flex; background: rgba(26,22,19,0.05); border: 1px solid rgba(26,22,19,0.07); border-radius: 9px; padding: 2px; gap: 2px; flex-shrink: 0; }
.ui-seg span { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); padding: 0.26rem 0.55rem; border-radius: 7px; white-space: nowrap; }
.ui-seg span.on { background: #fff; color: #171717; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

/* KPIs com tons suaves (como os KPI cards reais) */
.ui-kpi.tone-emerald { background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.18); }
.ui-kpi.tone-sky     { background: rgba(14,165,233,0.07); border-color: rgba(14,165,233,0.18); }
.ui-kpi.tone-amber   { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); }
.ui-kpi.tone-violet  { background: rgba(139,92,246,0.07); border-color: rgba(139,92,246,0.18); }
.ui-kpi .ico { width: 19px; height: 19px; border-radius: 6px; background: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,0.07); flex-shrink: 0; }
.ui-kpi.tone-emerald .ico { color: #059669; }
.ui-kpi.tone-sky .ico     { color: #0284C7; }
.ui-kpi.tone-amber .ico   { color: #D97706; }
.ui-kpi.tone-violet .ico  { color: #7C3AED; }

/* pills extras de status (paleta real) */
.ui-pill.sky { background: rgba(14,165,233,0.12); color: #0284C7; }
.ui-pill.dd { gap: 0.25rem; }
.ui-pill.dd svg { opacity: 0.7; }

/* cabeçalho de página do app dentro do mock */
.ui-pagehead { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.6rem; }

/* client card dentro do app frame */
.ui-clientcard.inset { box-shadow: none; border-radius: 12px; padding: 0.95rem 1rem; margin-top: 0.85rem; border-color: rgba(26,22,19,0.08); }
.ui-clientcard.inset .ui-cc-name { font-family: 'Manrope', sans-serif; font-weight: 750; font-size: 0.98rem; letter-spacing: -0.01em; }
.ui-clientcard.inset .ui-cc-div { margin: 0.7rem 0; }

/* sidebar some em mocks estreitos */
@media (max-width: 640px) {
  .ui-frame { grid-template-columns: 1fr; }
  .ui-side { display: none; }
}

/* ---- "Sugestão de Preço" embutida no card de Benchmark (UI real) ---- */
.pm-suggest { margin-top: 1.05rem; position: relative; z-index: 1; }
.pm-suggest-pills { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.4rem; margin-bottom: 0.75rem; }
.pm-suggest-pills span { border: 1px solid rgba(255,255,255,0.16); border-radius: 9px; padding: 0.42rem 0.2rem; text-align: center; min-width: 0; }
.pm-suggest-pills span.sel { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); }
.pm-suggest-pills i { display: block; font-style: normal; font-size: 0.5rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-on-dark-muted); font-weight: 700; margin-bottom: 2px; }
.pm-suggest-pills b { font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; white-space: nowrap; }
.pm-suggest .ui-slider { background: rgba(255,255,255,0.18); margin: 0; }
.pm-suggest .ui-slider-fill { background: #fff; }
.pm-suggest .ui-slider-knob { border-color: #fff; background: #fff; }

/* ---- Hero: botão de aprovar como no link público real ---- */
.propcard-approve {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem; border-radius: 12px;
  background: var(--win); color: #fff;
  font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 10px 26px rgba(var(--win-rgb), 0.28);
}
.propcard-foot { text-align: center; font-size: 0.62rem; color: var(--text-muted); margin-top: 0.65rem; }

/* ---- Robustez: cabeçalho dos mocks quebra linha em telas estreitas ---- */
.ui-pagehead { flex-wrap: wrap; }
.ui-search { text-overflow: ellipsis; }

/* ---- Marquee: fallback estático centralizado quando sem animação ---- */
@media (prefers-reduced-motion: reduce) {
  .social-chips.marquee { flex-wrap: wrap; justify-content: center; -webkit-mask-image: none; mask-image: none; }
  .social-chips.marquee .marquee-track { flex-wrap: wrap; justify-content: center; animation: none; }
}
