@import "global.css";

/* ============================================
   ChefBox v2 — /planos (design system v2)
   Inspiration: Linear, Stripe, Vercel, Nubank
   Uses shared tokens from tokens.css (--brand, --accent-*, --ease, etc.)
   ============================================ */

body { font-family: var(--font); -webkit-font-smoothing: antialiased; margin: 0; background: #FBFBFC; color: #1a1a1a; }

.pv2-main { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.pv2-h1-brand, .pv2-h2-brand { color: var(--brand); }

/* ─────────── TOPBAR ─────────── */
.pv2-topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
  background: rgba(251,251,252,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.pv2-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--brand);
}
.pv2-brand img { width: 28px; height: 28px; }
.pv2-brand strong { font-size: 17px; letter-spacing: -.02em; }
.pv2-brand-divider { width: 1px; height: 18px; background: rgba(0,0,0,.12); }
.pv2-brand small { font-size: 12px; color: #6b6b6b; font-weight: 500; }
.pv2-topnav { display: flex; gap: 22px; margin-left: 16px; }
.pv2-topnav a { font-size: 14px; font-weight: 500; color: #555; transition: color .15s; }
.pv2-topnav a:hover { color: var(--brand); }
.pv2-topright { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.pv2-link { font-size: 14px; font-weight: 500; color: #555; padding: 8px 12px; }
.pv2-link:hover { color: #1a1a1a; }
.pv2-cta-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #FF3B47, #EA1D2C);
  color: #fff; font-weight: 700; font-size: 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(234,29,44,.30);
  transition: transform .2s var(--ease), box-shadow .2s;
  white-space: nowrap;
}
.pv2-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(234,29,44,.40); }
.pv2-cta-primary svg { width: 16px; }
.pv2-cta-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: #fff; color: #1a1a1a;
  border: 1.5px solid rgba(0,0,0,.10);
  font-weight: 700; font-size: 14px;
  border-radius: 999px;
  transition: border-color .15s, transform .15s;
}
.pv2-cta-ghost:hover { border-color: rgba(0,0,0,.25); transform: translateY(-1px); }
.pv2-cta-ghost svg { width: 16px; color: #6b6b6b; }
@media (max-width: 720px) {
  .pv2-topnav { display: none; }
  .pv2-brand small, .pv2-brand-divider { display: none; }
  .pv2-link { display: none; }
}

/* ─────────── HERO + CALC ─────────── */
.pv2-hero { padding: 64px 0 56px; }
.pv2-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .pv2-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.pv2-hero-text { padding-top: 12px; }
.pv2-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(234,29,44,.08);
  color: var(--brand);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 22px;
}
.pv2-pill svg { width: 14px; }
.pv2-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #1a1a1a;
}
.pv2-lead {
  font-size: 19px;
  color: #555;
  max-width: 540px;
  line-height: 1.55;
  margin: 0 0 28px;
}
.pv2-lead strong { color: var(--brand); }
.pv2-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.pv2-hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.pv2-hero-trust span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #555;
}
.pv2-hero-trust svg { width: 16px; color: var(--brand); }

/* ─────────── CALÇ CARDS ─────────── */
.pv2-calc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.pv2-calc-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(234,29,44,.06), transparent 50%);
  pointer-events: none;
}
.pv2-calc-card > header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; position: relative;
}
.pv2-calc-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #1a1a1a;
}
.pv2-calc-label svg { width: 16px; color: var(--brand); }
.pv2-calc-card > header small { font-size: 11px; color: #999; font-weight: 500; }
.pv2-calc-body { display: flex; flex-direction: column; gap: 18px; position: relative; }
.pv2-field { display: flex; flex-direction: column; gap: 8px; }
.pv2-field > span { font-size: 13px; font-weight: 600; color: #555; }
.pv2-input-group {
  display: flex; align-items: center;
  background: #F5F5F6;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm2);
  padding: 10px 14px;
  transition: border-color .15s;
}
.pv2-input-group:focus-within { border-color: var(--brand); background: #fff; }
.pv2-input-group > span { font-size: 16px; color: #999; font-weight: 600; }
.pv2-input-group input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-size: 22px; font-weight: 800; color: #1a1a1a;
  min-width: 80px;
  font-family: var(--font);
}
.pv2-input-group > small { font-size: 12px; color: #999; font-weight: 500; }
.pv2-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.pv2-chips button {
  padding: 7px 12px;
  background: #F5F5F6;
  border-radius: 999px;
  font-size: 12px; font-weight: 600; color: #555;
  transition: all .15s;
}
.pv2-chips button.active { background: var(--brand); color: #fff; }
.pv2-chips button:not(.active):hover { background: #ECECEE; }

.pv2-calc-result {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0,0,0,.10);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.pv2-result-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 6px 12px; align-items: baseline;
  padding: 6px 0;
}
.pv2-result-row > span { font-size: 13px; color: #555; }
.pv2-result-row > strong { font-size: 18px; font-weight: 800; color: #1a1a1a; }
.pv2-result-row > small { font-size: 11px; color: #999; grid-column: 1 / -1; }
.pv2-result-cheffbox > strong { color: var(--brand); }
.pv2-savings-hero {
  display: flex; align-items: center; gap: 12px;
  margin-top: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(80,167,115,.12), rgba(80,167,115,.06));
  border: 1px solid rgba(80,167,115,.25);
  border-radius: var(--r-sm2);
}
.pv2-savings-hero svg { width: 22px; color: #50A773; flex-shrink: 0; }
.pv2-savings-hero > div { display: flex; flex-direction: column; }
.pv2-savings-hero small { font-size: 11px; color: #555; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.pv2-savings-hero strong { font-size: 26px; font-weight: 900; color: #1a1a1a; letter-spacing: -.02em; }

/* ─────────── TRUTH SECTION ─────────── */
.pv2-truth {
  padding: 80px 0;
  position: relative;
}
.pv2-truth > header { text-align: center; margin-bottom: 48px; }
.pv2-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(234,29,44,.06);
  color: var(--brand);
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.pv2-eyebrow svg { width: 14px; }
.pv2-truth h2, .pv2-tiers h2, .pv2-matrix-section h2, .pv2-faq h2, .pv2-closing-cta h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0;
  line-height: 1.15;
}
.pv2-truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .pv2-truth-grid { grid-template-columns: 1fr; } }
.pv2-truth-card {
  padding: 28px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.pv2-truth-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pv2-truth-card svg { width: 28px; }
.pv2-truth-card h3 { margin: 0; font-size: 17px; font-weight: 800; }
.pv2-truth-card big {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.pv2-truth-card p { margin: 0; font-size: 14px; color: #6b6b6b; line-height: 1.5; }
.pv2-truth-green svg, .pv2-truth-green big, .pv2-truth-green h3 { color: #50A773; }
.pv2-truth-green { background: linear-gradient(180deg, #F0FBF5 0%, #fff 60%); }
.pv2-truth-red svg, .pv2-truth-red big, .pv2-truth-red h3 { color: var(--brand); }
.pv2-truth-red { background: linear-gradient(180deg, #FEF3F4 0%, #fff 60%); }
.pv2-truth-neutral svg, .pv2-truth-neutral big, .pv2-truth-neutral h3 { color: #1a1a1a; }
.pv2-truth-neutral { background: linear-gradient(180deg, #F5F5F6 0%, #fff 60%); }

/* ─────────── TIERS ─────────── */
.pv2-tiers { padding: 80px 0 64px; }
.pv2-tiers > header { text-align: center; margin-bottom: 32px; }
.pv2-tiers-sub { font-size: 16px; color: #6b6b6b; max-width: 580px; margin: 12px auto 0; }

.pv2-billing {
  display: inline-flex;
  align-items: center; gap: 4px;
  margin: 0 auto 40px;
  padding: 5px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.pv2-billing { display: flex; justify-content: center; }
.pv2-bbilling-btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700; color: #6b6b6b;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s var(--ease);
}
.pv2-bbilling-btn.active { background: #1a1a1a; color: #fff; }
.pv2-billing-save {
  padding: 2px 7px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
}

.pv2-tiers-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  padding-top: 24px;
}
@media (max-width: 960px) { .pv2-tiers-flex { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.pv2-tier {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.pv2-tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pv2-tier-solo { --c: var(--accent-solo); }
.pv2-tier-pro { --c: var(--brand); }
.pv2-tier-empresa { --c: var(--accent-empresa); }

.pv2-tier-pro {
  border-width: 2px;
  border-color: var(--brand);
  transform: translateY(-16px) scale(1.02);
  box-shadow: var(--shadow-brand);
  background: linear-gradient(180deg, #fff 0%, #FFFCFC 100%);
}
.pv2-tier-pro:hover { transform: translateY(-20px) scale(1.025); box-shadow: 0 30px 60px rgba(234,29,44,.25); }
@media (max-width: 960px) { .pv2-tier-pro { transform: none; } .pv2-tier-pro:hover { transform: translateY(-4px); } }

.pv2-tier-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF3B47, #EA1D2C);
  color: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(234,29,44,.30);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.pv2-tier-ribbon svg { width: 13px; }
.pv2-tier-bonus {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  background: #50A773; color: #fff;
  border-radius: 999px;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 4px;
  box-shadow: 0 2px 8px rgba(80,167,115,.30);
}
.pv2-tier-bonus svg { width: 11px; }

.pv2-tier-head { display: flex; flex-direction: column; gap: 10px; }
.pv2-tier-brand { display: flex; align-items: center; gap: 12px; }
.pv2-tier-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-sm2);
  flex-shrink: 0;
}
.pv2-tier-icon svg { width: 22px; }
.pv2-tier-solo .pv2-tier-icon { background: #EFF6FF; color: var(--accent-solo); }
.pv2-tier-pro .pv2-tier-icon { background: #FEE2E2; color: var(--brand); }
.pv2-tier-empresa .pv2-tier-icon { background: #F5F3FF; color: var(--accent-empresa); }
.pv2-tier-brand h3 { margin: 0; font-size: 22px; font-weight: 900; letter-spacing: -.02em; }
.pv2-tier-brand small { font-size: 12px; color: #6b6b6b; font-weight: 600; }
.pv2-tier-head p { margin: 0; font-size: 14px; color: #555; line-height: 1.5; }

.pv2-tier-price { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.pv2-tier-price > strong {
  font-size: 36px; font-weight: 900; letter-spacing: -.03em;
  color: var(--c);
}
.pv2-tier-price > small { font-size: 14px; color: #6b6b6b; font-weight: 600; }
.pv2-tier-period-alt {
  flex-basis: 100%; font-size: 12px; color: #50A773; font-weight: 600;
}
.pv2-tier-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.pv2-tier-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: #1a1a1a;
}
.pv2-tier-features svg { width: 18px; height: 18px; color: var(--c); flex-shrink: 0; padding: 3px; border-radius: 50%; background: color-mix(in srgb, var(--c) 12%, transparent); }
.pv2-tier-features .pv2-not { color: #767676; }
.pv2-tier-features .pv2-not svg { color: #999; background: #f3f3f3; }

.pv2-tier-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 12px 18px;
  border-radius: var(--r-sm2);
  font-size: 14px; font-weight: 700;
  transition: transform .15s, box-shadow .15s, background .15s;
  margin-top: auto;
}
.pv2-tier-cta.primary {
  background: linear-gradient(135deg, #FF3B47, #EA1D2C);
  color: #fff;
  box-shadow: 0 4px 14px rgba(234,29,44,.30);
}
.pv2-tier-cta.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(234,29,44,.40); }
.pv2-tier-cta.ghost {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.10);
  color: #1a1a1a;
}
.pv2-tier-cta.ghost:hover { border-color: var(--c); color: var(--c); }
.pv2-tier-cta svg { width: 18px; }

/* ─────────── MATRIX ─────────── */
.pv2-matrix-section { padding: 80px 0; background: #fff; border-radius: 24px; }
.pv2-matrix-section > header { text-align: center; margin-bottom: 32px; }
.pv2-matrix-wrap {
  max-width: 800px; margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pv2-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pv2-matrix th, .pv2-matrix td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.pv2-matrix th:first-child, .pv2-matrix td:first-child {
  text-align: left;
}
.pv2-matrix th {
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em;
  color: #6b6b6b;
  padding-bottom: 18px;
}
.pv2-matrix-pro { background: rgba(234,29,44,.03); }
.pv2-tier-mark {
  display: inline-block;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.pv2-mark-solo { background: #EFF6FF; color: var(--accent-solo); }
.pv2-mark-pro { background: #FEE2E2; color: var(--brand); }
.pv2-mark-empresa { background: #F5F3FF; color: var(--accent-empresa); }
.pv2-matrix td.mono { text-align: center; }
.pv2-matrix svg { width: 18px; height: 18px; }
.pv2-matrix .pv2-yes { color: #50A773; }
.pv2-matrix .pv2-no { color: #999; }
.pv2-matrix .pv2-tick {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(80,167,115,.12); color: #50A773;
}
.pv2-matrix .pv2-cross {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #f3f3f3; color: #bbb;
}
.pv2-matrix tbody tr:hover { background: rgba(0,0,0,.02); }
.pv2-matrix tbody td { color: #1a1a1a; font-weight: 500; }
.pv2-matrix-foot {
  display: block; text-align: center;
  margin-top: 18px;
  font-size: 13px; color: #6b6b6b;
}
.pv2-matrix-foot a {
  color: var(--brand); font-weight: 600;
  display: inline-flex; align-items: center; gap: 3px;
}
.pv2-matrix-foot a svg { width: 13px; }

/* ─────────── FAQ EM TABS ─────────── */
.pv2-faq { padding: 80px 0; }
.pv2-faq > header { text-align: center; margin-bottom: 32px; }
.pv2-faq-tabs {
  display: flex; gap: 4px; justify-content: center;
  padding: 5px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-sm);
}
.pv2-faq-tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  color: #6b6b6b;
  transition: all .2s var(--ease);
}
.pv2-faq-tab.active { background: #1a1a1a; color: #fff; }
.pv2-faq-body {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.pv2-faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-sm2);
  padding: 16px 20px;
  transition: border-color .15s, box-shadow .15s;
  animation: pv2-fade .3s var(--ease);
}
.pv2-faq-item:hover { border-color: rgba(0,0,0,.15); box-shadow: var(--shadow-sm); }
.pv2-faq-item summary {
  font-weight: 700; font-size: 15px; color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pv2-faq-item summary::-webkit-details-marker { display: none; }
.pv2-faq-item summary::after {
  content: "+";
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: #f3f3f3; color: #6b6b6b;
  border-radius: 50%;
  font-size: 18px; line-height: 1;
  transition: transform .2s var(--ease-spring), background .2s, color .2s;
  flex-shrink: 0;
}
.pv2-faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: var(--brand); color: #fff;
}
.pv2-faq-item[open] { border-color: var(--brand); box-shadow: var(--brand-outline); }
.pv2-faq-item p {
  margin: 12px 0 0;
  font-size: 14px; color: #555; line-height: 1.6;
  animation: pv2-fade .2s var(--ease);
}
@keyframes pv2-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────── CLOSING ─────────── */
.pv2-closing {
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #fff;
  border-radius: 32px;
  padding: 64px 56px;
  margin: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.pv2-closing::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(234,29,44,.20), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(234,29,44,.10), transparent 30%);
  pointer-events: none;
}
.pv2-quote {
  margin: 0 0 40px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.02em;
  position: relative;
  max-width: 760px;
}
.pv2-quote strong { color: #FF6B77; font-weight: 800; }
.pv2-quote footer {
  margin-top: 24px;
  font-size: 13px; font-weight: 500;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 20px;
}
.pv2-quote-author { display: flex; flex-direction: column; gap: 2px; }
.pv2-quote-author strong { color: #fff; font-size: 15px; }
.pv2-quote-author small { font-size: 12px; color: #aaa; }
.pv2-quote-stat { display: flex; flex-direction: column; gap: 2px; }
.pv2-quote-stat strong { color: #50A773; font-size: 18px; font-weight: 800; }
.pv2-quote-stat small { font-size: 11px; }

.pv2-closing-cta {
  position: relative;
  text-align: center;
}
.pv2-closing-cta h2 { color: #fff; margin-bottom: 12px; }
.pv2-closing-cta p { color: rgba(255,255,255,.7); margin: 0 0 28px; font-size: 16px; }
.pv2-closing-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pv2-closing-actions .pv2-cta-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.10); }
.pv2-closing-actions .pv2-cta-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
@media (max-width: 720px) { .pv2-closing { padding: 40px 28px; } .pv2-closing-actions { flex-direction: column; align-items: stretch; } .pv2-closing-actions a { justify-content: center; } }

/* ─────────── FOOTER ─────────── */
.pv2-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.6);
  padding: 32px 24px;
  text-align: center;
}
.pv2-footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.pv2-footer .pv2-brand { color: #fff; }
.pv2-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.pv2-footer nav a { font-size: 13px; font-weight: 500; transition: color .15s; }
.pv2-footer nav a:hover { color: #fff; }
.pv2-footer small { font-size: 12px; color: rgba(255,255,255,.4); }

/* ─────────── PROGRESS BAR ─────────── */
.pv2-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), #FF6B35);
  z-index: 100;
  transition: width .1s linear;
}

/* ─────────── TOAST ─────────── */
.toast {
  position: fixed; z-index: 100;
  left: 50%; bottom: 24px;
  padding: 10px 16px;
  background: #1a1a1a; color: #fff;
  border-radius: var(--r-sm2);
  font-size: 13px; font-weight: 600;
  transform: translate(-50%, 150%);
  transition: transform .3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 16px; }

/* ─────────── MOBILE TWEAKS ─────────── */
@media (max-width: 960px) {
  .pv2-hero { padding: 40px 0 32px; }
  .pv2-hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .pv2-lead { font-size: 17px; }
  .pv2-truth, .pv2-tiers, .pv2-matrix-section, .pv2-faq { padding: 56px 0; }
}
@media (max-width: 560px) {
  .pv2-main { padding: 0 16px; }
  .pv2-calc-card { padding: 20px; }
  .pv2-result-row { grid-template-columns: 1fr auto; }
  .pv2-result-row > small { grid-column: 1 / -1; }
  .pv2-hero-trust { gap: 14px; }
  .pv2-closing { border-radius: 20px; }
  .pv2-topbar { padding: 12px 16px; }
}

/* ── MONTE SEU PACOTE (modular) ───────────────────────────── */
.pv2-modular{padding:72px 0 8px}
.pv2-modular > header{text-align:center;margin-bottom:28px}
.pv2-free-badge{display:inline-flex;align-items:center;gap:7px;margin:14px 0 0;padding:8px 16px;border-radius:99px;
  font-size:13px;font-weight:700;color:#15803d;background:#dcfce7;border:1px solid #86efac}
.pv2-free-badge svg{width:15px;height:15px}
.pv2-mod-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px;max-width:1000px;margin:0 auto}
.pv2-mod{position:relative;text-align:left;display:flex;flex-direction:column;gap:6px;padding:22px 20px;cursor:pointer;
  font-family:inherit;background:#fff;border:1.5px solid var(--border);border-radius:18px;transition:border-color .15s,box-shadow .15s,transform .15s}
.pv2-mod:hover{border-color:var(--base);transform:translateY(-2px)}
.pv2-mod.selected{border-color:var(--brand);box-shadow:0 0 0 3px var(--brand-tint,rgba(234,29,44,.12))}
.pv2-mod-check{position:absolute;top:16px;right:16px;width:22px;height:22px;border-radius:99px;display:inline-flex;
  align-items:center;justify-content:center;background:var(--border);color:transparent;transition:background .15s,color .15s}
.pv2-mod-check svg{width:13px;height:13px}
.pv2-mod.selected .pv2-mod-check{background:var(--brand);color:#fff}
.pv2-mod-icon{width:34px;height:34px;color:var(--brand)}
.pv2-mod-icon svg{width:100%;height:100%}
.pv2-mod-name{font-size:16px;font-weight:800;letter-spacing:-.01em}
.pv2-mod-price{font-size:24px;font-weight:800;letter-spacing:-.02em}
.pv2-mod-price small{font-size:12px;font-weight:600;color:var(--muted);margin-left:2px}
.pv2-mod-resumo{font-size:13px;line-height:1.45;color:var(--muted)}
.pv2-mod-itens{list-style:none;margin:8px 0 0;padding:0;display:flex;flex-direction:column;gap:4px}
.pv2-mod-itens li{font-size:12px;color:var(--muted);padding-left:14px;position:relative}
.pv2-mod-itens li::before{content:"·";position:absolute;left:4px;color:var(--brand);font-weight:800}
.pv2-mod-total{max-width:1000px;margin:18px auto 0;padding:18px 22px;display:flex;align-items:center;
  justify-content:space-between;gap:16px;flex-wrap:wrap;background:var(--bg);border:1px solid var(--border);border-radius:16px}
.pv2-mod-total-left{display:flex;flex-direction:column;gap:2px}
.pv2-mod-total-left span{font-size:15px;font-weight:700}
.pv2-mod-total-left small{font-size:12px;color:var(--muted)}
.pv2-mod-total-right{display:flex;align-items:baseline;gap:2px}
.pv2-mod-total-right strong{font-size:32px;font-weight:800;letter-spacing:-.03em}
.pv2-mod-total-right small{font-size:13px;color:var(--muted);font-weight:600}
.pv2-mod-cta-row{max-width:1000px;margin:14px auto 0;display:flex;justify-content:center}
.pv2-mod-cta-row [aria-disabled="true"]{opacity:.45;pointer-events:none}
@media (prefers-color-scheme:dark){
  .pv2-mod{background:#1c1c1e}
  .pv2-free-badge{color:#86efac;background:rgba(22,101,52,.25);border-color:rgba(134,239,172,.35)}
}

/* Modulo ainda nao disponivel (em_breve no planos-config.js) */
.pv2-mod-soon { opacity: .62; cursor: not-allowed; }
.pv2-mod-soon:hover { transform: none; border-color: var(--border); }
.pv2-mod-soon-tag { position: absolute; top: 14px; right: 14px; padding: 4px 10px; border-radius: 99px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  background: var(--bg, #f0f0f0); color: var(--muted, #6b6b6b); }
