/* Pricing page styles — ported from the hi-fi design, scoped under .planos-page
   so generic class names never collide with the landing (.lp-root) or the app.
   Loaded after landing.css so equal-specificity ties resolve in favour of the
   pricing surface. Geist matches the landing typography. */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap');

.planos-page{
  /* tokens (scoped on the wrapper, not :root) */
  --navy:#0F1729; --navy-soft:#1B2541;
  --violet:#7C3AED; --violet-bright:#8B5CF6; --violet-deep:#5B21B6; --violet-soft:#A78BFA; --violet-tint:#F5F3FF;
  --violet-glow:rgba(124,58,237,.18);
  --bg:#FAFAF7; --bg-alt:#F3F1EA; --surface:#FFFFFF; --border:#E7E5DC; --border-strong:#D4D2C7;
  --text:#15161A; --text-muted:#5A5C63; --text-faint:#8A8C92;
  --success:#2F6A0E; --success-bg:#E8F2D9; --warning:#8A4F0A; --warning-bg:#FAEEDA;
  --r:10px; --r-lg:16px; --r-xl:22px;
  --sh-sm:0 1px 2px rgba(15,23,41,.04);
  --sh:0 4px 16px rgba(15,23,41,.06);
  --sh-lg:0 24px 64px -16px rgba(15,23,41,.18);
  --maxw:1200px;

  font-family:'Geist',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--bg); color:var(--text);
  line-height:1.55; font-size:15px;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
.planos-page *,
.planos-page *::before,
.planos-page *::after{ box-sizing:border-box; margin:0; }
.planos-page ul{ list-style:none; padding:0; }
.planos-page .mono{ font-family:'Geist Mono',ui-monospace,monospace; }
.planos-page .container{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }

/* ===== BUTTONS ===== */
.planos-page .btn{
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  padding:10px 18px; border-radius:var(--r);
  font-size:13.5px; font-weight:500; text-decoration:none;
  border:1px solid transparent; cursor:pointer;
  transition:all .15s ease; font-family:inherit; line-height:1;
}
.planos-page .btn-primary{ background:var(--violet); color:#fff; border-color:var(--violet); }
.planos-page .btn-primary:hover{ background:var(--violet-deep); border-color:var(--violet-deep); transform:translateY(-1px); box-shadow:0 6px 16px var(--violet-glow); }
.planos-page .btn-navy{ background:var(--navy); color:#fff; border-color:var(--navy); }
.planos-page .btn-navy:hover{ background:var(--violet-deep); border-color:var(--violet-deep); }
.planos-page .btn-lg{ padding:13px 22px; font-size:14.5px; border-radius:12px; }
.planos-page .btn-block{ width:100%; }

/* ===== HERO ===== */
.planos-page .ph{ position:relative; padding:64px 0 12px; overflow:hidden; text-align:center; }
.planos-page .grid-bg{
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(15,23,41,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,41,.045) 1px, transparent 1px);
  background-size:56px 56px;
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 20%, black 35%, transparent 72%);
  mask-image:radial-gradient(ellipse 70% 60% at 50% 20%, black 35%, transparent 72%);
}
.planos-page .ph-inner{ position:relative; z-index:1; max-width:760px; margin:0 auto; }
.planos-page .s-eyebrow{
  display:inline-block; font-size:11.5px; font-family:'Geist Mono',monospace;
  color:var(--violet-deep); text-transform:uppercase; letter-spacing:.12em;
  margin-bottom:18px; padding:5px 12px; background:var(--violet-tint);
  border-radius:999px; font-weight:600;
}
.planos-page .ph-title{
  font-size:clamp(34px,4.6vw,54px); line-height:1.04; letter-spacing:-.026em;
  font-weight:600; color:var(--navy); margin-bottom:18px; text-wrap:balance;
}
.planos-page .ph-title em{
  font-style:normal;
  background:linear-gradient(120deg, var(--violet-bright) 0%, var(--violet-deep) 80%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.planos-page .ph-sub{
  font-size:17.5px; color:var(--text-muted); line-height:1.55;
  max-width:600px; margin:0 auto; text-wrap:pretty;
}

/* ===== BILLING TOGGLE ===== */
.planos-page .billing{ display:inline-flex; align-items:center; gap:10px; margin-top:34px; }
.planos-page .seg{
  display:inline-flex; gap:4px; background:var(--bg-alt);
  border:1px solid var(--border); border-radius:999px; padding:5px;
}
.planos-page .seg button{
  border:0; background:transparent; color:var(--text-muted);
  padding:9px 20px; border-radius:999px; cursor:pointer;
  font-family:inherit; font-size:13.5px; font-weight:500;
  transition:all .15s ease; display:inline-flex; align-items:center; gap:8px;
}
.planos-page .seg button:hover{ color:var(--text); }
.planos-page .seg button.active{ background:var(--navy); color:#fff; box-shadow:var(--sh-sm); }
.planos-page .seg .save{
  font-family:'Geist Mono',monospace; font-size:10.5px; font-weight:600;
  padding:2px 7px; border-radius:999px; letter-spacing:.02em;
  background:var(--success-bg); color:var(--success);
}
.planos-page .seg button.active .save{ background:rgba(255,255,255,.16); color:#D6F5B8; }

/* ===== PLANS ===== */
.planos-page .plans-section{ padding:40px 0 92px; }
.planos-page .plans{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
.planos-page .plan{
  position:relative; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:32px 28px; display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.planos-page .plan:hover{ transform:translateY(-4px); box-shadow:var(--sh-lg); border-color:var(--border-strong); }
.planos-page .plan.popular{ border:2px solid var(--violet); box-shadow:0 24px 64px -20px var(--violet-glow); }
.planos-page .plan .pop-badge{ display:none; }
.planos-page .plan.popular .pop-badge{
  display:inline-flex; position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--violet); color:#fff; font-family:'Geist Mono',monospace;
  font-size:10.5px; font-weight:600; text-transform:uppercase; letter-spacing:.08em;
  padding:5px 14px; border-radius:999px; white-space:nowrap; box-shadow:0 6px 16px var(--violet-glow);
}
.planos-page .plan-name{
  font-family:'Geist Mono',monospace; font-size:12px; font-weight:600;
  text-transform:uppercase; letter-spacing:.08em; color:var(--violet-deep); margin-bottom:6px;
}
.planos-page .plan-for{ font-size:13px; color:var(--text-faint); margin-bottom:22px; min-height:34px; }
.planos-page .price-block{ margin-bottom:8px; }
.planos-page .price-row{ display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.planos-page .price-row .amount{
  font-size:42px; font-weight:600; letter-spacing:-.03em; color:var(--navy);
  line-height:1; font-feature-settings:"tnum";
}
.planos-page .price-row .per{ font-size:14px; color:var(--text-faint); font-weight:500; }
.planos-page .price-row .off-badge{
  font-family:'Geist Mono',monospace; font-size:10.5px; font-weight:600;
  padding:3px 8px; border-radius:999px; letter-spacing:.02em;
  background:var(--success-bg); color:var(--success); align-self:center;
}
.planos-page .price-was{
  font-size:12.5px; color:var(--text-faint); margin-top:8px;
  text-decoration:line-through; font-family:'Geist Mono',monospace;
}
.planos-page .price-note{
  font-size:12px; color:var(--text-muted); margin-top:8px;
  font-family:'Geist Mono',monospace; min-height:16px;
}
.planos-page .plan .cta{ margin-top:22px; }
.planos-page .plan-divider{ height:1px; background:var(--border); margin:24px 0 20px; }
.planos-page .feat{ display:flex; flex-direction:column; gap:11px; flex:1; }
.planos-page .feat li{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color:var(--text); line-height:1.4; }
.planos-page .feat li::before{
  content:""; width:17px; height:17px; flex-shrink:0; margin-top:1px;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M9 11.5l2.5 2.5L17 8.5l1.5 1.5-7 7-4-4z'/></svg>") center/contain no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M9 11.5l2.5 2.5L17 8.5l1.5 1.5-7 7-4-4z'/></svg>") center/contain no-repeat;
  background-color:var(--violet-deep);
}
.planos-page .feat li.inherits{ font-weight:600; color:var(--navy); padding-bottom:3px; }
.planos-page .feat li.inherits::before{
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M13 5l7 7-7 7-1.4-1.4 4.6-4.6H4v-2h12.2l-4.6-4.6z'/></svg>") center/contain no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M13 5l7 7-7 7-1.4-1.4 4.6-4.6H4v-2h12.2l-4.6-4.6z'/></svg>") center/contain no-repeat;
  background-color:var(--violet);
}
.planos-page .feat li b{ font-weight:600; color:var(--navy); }

/* ===== INCLUDED-IN-ALL STRIP ===== */
.planos-page .all-strip{
  margin-top:40px; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:22px 28px;
  display:flex; align-items:center; gap:26px; flex-wrap:wrap; justify-content:center;
}
.planos-page .all-strip .lead{
  font-family:'Geist Mono',monospace; font-size:11px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--text-faint); margin-right:4px;
}
.planos-page .all-strip .items{ display:flex; gap:22px; flex-wrap:wrap; justify-content:center; }
.planos-page .all-strip .item{ display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--text); font-weight:500; }
.planos-page .all-strip .item svg{ color:var(--violet-deep); flex-shrink:0; }

/* ===== SECTIONS ===== */
.planos-page .s{ padding:88px 0; position:relative; }
.planos-page .s.alt{ background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.planos-page .s-head{ max-width:720px; margin:0 auto 48px; text-align:center; }
.planos-page .s-title{
  font-size:clamp(28px,3.4vw,40px); line-height:1.1; color:var(--navy);
  letter-spacing:-.022em; font-weight:600; margin-bottom:14px; text-wrap:balance;
}
.planos-page .s-sub{ font-size:16.5px; color:var(--text-muted); line-height:1.55; max-width:640px; margin:0 auto; text-wrap:pretty; }

/* ===== MATRIX TABLE ===== */
.planos-page .pm-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; border:1px solid var(--border); border-radius:var(--r-lg); background:var(--surface); }
.planos-page .pm-table{ width:100%; min-width:800px; border-collapse:separate; border-spacing:0; font-size:14px; }
.planos-page .pm-table thead th{
  position:sticky; top:0; background:var(--surface); z-index:3;
  text-align:left; padding:22px 18px 18px 22px; border-bottom:1px solid var(--border); vertical-align:bottom;
}
.planos-page .pm-table thead th.feat-col{ text-align:left; width:36%; }
.planos-page .pm-table thead .th-name{
  font-family:'Geist Mono',monospace; font-size:12px; font-weight:600;
  text-transform:uppercase; letter-spacing:.06em; color:var(--violet-deep); display:block; margin-bottom:4px;
}
.planos-page .pm-table thead .th-price{ font-size:20px; font-weight:600; color:var(--navy); letter-spacing:-.02em; display:block; }
.planos-page .pm-table thead .th-price small{ font-size:12px; color:var(--text-faint); font-weight:500; }
.planos-page .pm-table thead th.col-pop{ background:var(--violet-tint); }
.planos-page .pm-table thead .th-tag{
  display:inline-block; margin-top:8px; font-family:'Geist Mono',monospace;
  font-size:9.5px; font-weight:600; text-transform:uppercase; letter-spacing:.06em;
  padding:3px 9px; border-radius:999px; background:var(--violet); color:#fff;
}
.planos-page .pm-table tr.cat td{
  background:var(--bg-alt); padding:11px 18px; text-align:center;
  font-family:'Geist Mono',monospace; font-size:11px; font-weight:600;
  text-transform:uppercase; letter-spacing:.08em; color:var(--navy);
  border-bottom:1px solid var(--border); border-top:1px solid var(--border);
}
.planos-page .pm-table tbody td{
  padding:14px 18px 14px 22px; border-bottom:1px solid var(--border); text-align:left;
  color:var(--text-muted); vertical-align:middle;
}
.planos-page .pm-table tbody td.feat-name{ text-align:left; color:var(--text); font-weight:500; }
.planos-page .pm-table tbody td.col-pop{ background:rgba(124,58,237,.045); }
.planos-page .pm-table tbody tr:last-child td{ border-bottom:0; }
.planos-page .pm-table td.val-text{ font-family:'Geist Mono',monospace; font-size:12px; color:var(--navy); font-weight:500; }
.planos-page .pm-table .ic-yes{
  display:inline-block; width:20px; height:20px; vertical-align:middle;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/></svg>") center/contain no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/></svg>") center/contain no-repeat;
  background-color:var(--violet);
}
.planos-page .pm-table .ic-no{ color:var(--border-strong); font-size:18px; font-weight:400; }
.planos-page .pm-table .pill-addon{
  display:inline-block; font-family:'Geist Mono',monospace; font-size:10.5px; font-weight:600;
  padding:3px 9px; border-radius:999px; background:var(--warning-bg); color:var(--warning); letter-spacing:.02em;
}

/* ===== ADD-ONS ===== */
.planos-page .addons{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; max-width:820px; margin:0 auto; }
.planos-page .addon-card{ background:var(--bg); border:1px solid var(--border); border-radius:var(--r-lg); padding:26px; display:flex; flex-direction:column; gap:8px; }
.planos-page .addon-card .ah{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.planos-page .addon-card h4{ font-size:17px; font-weight:600; color:var(--navy); letter-spacing:-.01em; }
.planos-page .addon-card .aprice{ font-family:'Geist Mono',monospace; font-size:14px; font-weight:600; color:var(--violet-deep); white-space:nowrap; }
.planos-page .addon-card p{ font-size:13.5px; color:var(--text-muted); line-height:1.5; }
.planos-page .addon-card .avail{ margin-top:6px; font-family:'Geist Mono',monospace; font-size:11px; color:var(--text-faint); text-transform:uppercase; letter-spacing:.06em; }

/* ===== FAQ ===== */
.planos-page .faq{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; }
.planos-page .faq details{ border-bottom:1px solid var(--border); padding:4px 0; }
.planos-page .faq summary{
  list-style:none; cursor:pointer; padding:20px 4px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-size:16px; font-weight:600; color:var(--navy); letter-spacing:-.01em;
}
.planos-page .faq summary::-webkit-details-marker{ display:none; }
.planos-page .faq summary .chev{
  flex-shrink:0; width:22px; height:22px; border-radius:50%;
  border:1px solid var(--border-strong); display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); transition:all .2s ease;
}
.planos-page .faq details[open] summary .chev{ transform:rotate(45deg); background:var(--violet); border-color:var(--violet); color:#fff; }
.planos-page .faq .ans{ padding:0 4px 22px; font-size:14.5px; color:var(--text-muted); line-height:1.6; max-width:680px; }

/* ===== CTA FINAL ===== */
.planos-page .cta-final{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color:#fff; border-radius:var(--r-xl); padding:60px; text-align:center; position:relative; overflow:hidden;
}
.planos-page .cta-final::before{
  content:""; position:absolute; inset:-60px;
  background:radial-gradient(circle at 80% 0%, var(--violet-glow), transparent 55%); pointer-events:none;
}
.planos-page .cta-final h2{ font-size:clamp(26px,3vw,36px); font-weight:600; letter-spacing:-.022em; margin-bottom:14px; position:relative; }
.planos-page .cta-final p{ font-size:16px; color:rgba(255,255,255,.74); max-width:540px; margin:0 auto 28px; line-height:1.55; position:relative; }
.planos-page .cta-final .actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; position:relative; }
.planos-page .cta-final .ps{ margin-top:20px; font-family:'Geist Mono',monospace; font-size:12px; color:rgba(255,255,255,.5); position:relative; }

/* ===== REVEAL ON SCROLL ===== */
.planos-page .reveal{ opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
.planos-page .reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .planos-page .reveal{ opacity:1; transform:none; } }

/* ===== RESPONSIVE ===== */
@media (max-width:980px){
  .planos-page .plans{ grid-template-columns:1fr; gap:18px; }
}
@media (max-width:760px){
  .planos-page .addons{ grid-template-columns:1fr; }
  .planos-page .all-strip{ flex-direction:column; gap:16px; text-align:center; }
  .planos-page .s{ padding:64px 0; }
}

