/* SKY TV Design System  identidade nova */
:root {
  --red: #ed1c24;
  --red-dark: #c4121a;
  --red-mid: #d91920;
  --black: #231f20;
  --black-soft: #3a3536;
  --accent: #ffffff;
  --accent-soft: #ffe8e9;
  --text: #231f20;
  --muted: #646874;
  --line: #ebe8e8;
  --bg: #f7f7f8;
  --white: #fff;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 16px 40px rgba(35,31,32,.10);
  --shadow-sm: 0 4px 16px rgba(35,31,32,.07);
  --max: 1140px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
img, video { max-width: 100%; height: auto; display: block }
a { color: inherit; text-decoration: none }
button, input, select, textarea { font: inherit }
button { cursor: pointer; border: none; background: none }
ul { margin: 0; padding: 0; list-style: none }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0 }

/* ?? Topbar ?? */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  padding: 9px 14px;
  letter-spacing: .01em;
}
.topbar a { color: var(--red); font-weight: 800; text-decoration: underline; text-underline-offset: 2px }

/* ?? Header ?? */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand img,
.footer-brand img { height: 34px; width: auto; display: block }
.footer-brand img { height: 30px }
.nav { display: flex; gap: 24px; font-weight: 700; font-size: .9rem; color: var(--black) }
.nav a { transition: color .15s }
.nav a:hover { color: var(--red) }
.header-actions { display: flex; gap: 8px; align-items: center }

/* ?? Buttons ?? */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(.97) }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(237,28,36,.28) }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 6px 18px rgba(237,28,36,.38) }
.btn-outline { background: transparent; color: var(--black); border-color: rgba(35,31,32,.2) }
.btn-outline:hover { background: rgba(35,31,32,.04) }
.btn-white { background: #fff; color: var(--black); font-weight: 800 }
.btn-white:hover { background: #f5f5f5 }
.btn-block { width: 100% }
.btn-ico { width: 18px; height: 18px; flex-shrink: 0 }
.btn-wa {
  background: #128c7e; color: #fff;
  box-shadow: 0 4px 14px rgba(18,140,126,.28);
}
.btn-wa:hover { background: #0d7368; box-shadow: 0 6px 18px rgba(18,140,126,.35) }
.btn-ghost { background: rgba(237,28,36,.08); color: var(--red) }
.btn-ghost:hover { background: rgba(237,28,36,.14) }

/* ?? Typography ?? */
.eyebrow {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(237,28,36,.08);
  color: var(--red);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--black);
}
.section-lead { margin: 0; color: var(--muted); font-size: 1rem; max-width: 58ch; line-height: 1.7 }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px }
.section { padding: 64px 0 }
.section-alt { background: var(--bg) }

/* ?? Hero ?? */
.hero {
  padding: 28px 0 32px;
  background: linear-gradient(180deg, #fff0f1 0%, #fff 70%);
}
.hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #3d1215 45%, var(--red) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.hero-banner-main {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-banner h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  max-width: 14ch;
  font-weight: 600;
}
.hero-banner h1 em { font-style: normal; color: var(--accent-soft) }
.hero-lead {
  margin: 0 0 24px;
  max-width: 42ch;
  color: rgba(255,255,255,.85);
  font-size: 1.02rem;
  line-height: 1.6;
}
.hero-price-box {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  max-width: 360px;
}
.hero-price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.hero-price-val {
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: #fff;
  line-height: 1;
}
.hero-price-period {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.hero-price-note {
  margin: 0;
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}
.hero-price-note strong { color: #fff; font-weight: 700 }
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px }
.hero-plans {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 32px 28px;
  background: rgba(0,0,0,.14);
  border-left: 1px solid rgba(255,255,255,.1);
}
.hero-plans-title {
  margin: 0 0 14px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-plan {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: opacity .15s;
}
.hero-plan:last-child { border-bottom: 0; padding-bottom: 0 }
.hero-plan:first-of-type { padding-top: 0 }
.hero-plan:hover { opacity: .92 }
.hero-plan.hot .hero-plan-name { color: var(--accent-soft) }
.hero-plan-name {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.hero-plan-meta {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.35;
}
.hero-plan-price {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  white-space: nowrap;
}

/* ?? Trust strip ?? */
.trust-strip {
  background: var(--black);
  padding: 20px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-size: .84rem;
  font-weight: 700;
}

/* ?? Value cards ?? */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px }
.value-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow) }
.value-card::before {
  content: "";
  display: block;
  width: 36px; height: 4px;
  border-radius: 999px;
  background: var(--red);
  margin-bottom: 16px;
}
.value-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--black); font-weight: 800 }
.value-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.65 }

/* ?? Plans ?? */
.plans-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 20px;
}
.plan {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow) }
.plan.hot {
  border-color: var(--red);
  background: linear-gradient(160deg, #fff8f8, #fff 60%);
  box-shadow: 0 12px 40px rgba(237,28,36,.14);
}
.plan.hot:hover { transform: translateY(-4px) }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px;
  background: var(--red);
  color: #fff; font-size: .68rem; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(237,28,36,.35);
}
.plan-head { margin-bottom: 16px }
.plan-head h3 { margin: 0; font-size: 1.45rem; letter-spacing: -.03em; color: var(--black); font-weight: 900 }
.plan-head small { display: block; margin-top: 3px; color: var(--muted); font-size: .82rem; font-weight: 600 }
.plan-price { margin: 0 0 8px; display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap }
.plan-price .old { width: 100%; font-size: .82rem; color: var(--muted); text-decoration: line-through; font-weight: 600 }
.plan-price strong { font-size: 2.3rem; letter-spacing: -.06em; color: var(--black); font-weight: 900 }
.plan-price span { color: var(--muted); font-weight: 700; font-size: .88rem }
.plan-promo {
  padding: 10px 14px; border-radius: 14px; margin-bottom: 16px;
  background: var(--accent-soft); border: 1px solid rgba(237,28,36,.15);
  color: #9b1018; font-size: .84rem; font-weight: 700; line-height: 1.5;
}
.plan-feats { flex: 1; margin-bottom: 20px }
.plan-feats li {
  display: flex; gap: 9px; padding: 8px 0;
  border-bottom: 1px dashed var(--line); font-size: .9rem; color: #3b435f;
  align-items: center;
}
.plan-feats li:last-child { border: 0 }
.plan-feats li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ed1c24' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.plan-actions { display: grid; gap: 8px }
.plan-note { margin-top: 12px; font-size: .78rem; font-weight: 700; color: var(--muted); text-align: center }

/* ?? Comparison table ?? */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.comparison-table th {
  background: var(--black);
  color: #fff;
  font-weight: 800;
}
.comparison-table th:first-child { border-radius: 0 }
.comparison-table tr:last-child td { border-bottom: 0 }
.comparison-table td:first-child { font-weight: 700; color: var(--black) }

/* ?? Channel SEO cards ?? */
.channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px }
.channel-card {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.channel-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.channel-card h3 span {
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(237,28,36,.1);
  color: var(--red);
  display: grid; place-items: center;
  font-size: .9rem; font-weight: 900;
}
.channel-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}
.channel-card p strong { color: var(--black) }

/* ?? Benefits ?? */
.benefit-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px }
.benefit-box {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--black); color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.benefit-box:hover { transform: translateY(-4px) }
.benefit-box .top {
  min-height: 110px; display: grid; place-items: center;
  background: linear-gradient(135deg, #3d1215, var(--red));
  padding: 24px;
}
.benefit-box .body { padding: 20px 22px 24px }
.benefit-box h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 800 }
.benefit-box p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.65 }
.benefit-label {
  font-size: 1.35rem; font-weight: 900; letter-spacing: -.04em;
  color: rgba(255,255,255,.95);
}

/* ?? Split ?? */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center }
.split-2 .split-lead { margin-bottom: 28px }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}
.split-img { width: 100%; height: auto; display: block }

/* ?? Steps ?? */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.step-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 900;
  margin-bottom: 16px;
}
.step-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--black) }
.step-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65 }

/* ?? Testimonials ?? */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.rating-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(237,28,36,.2);
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 800;
}
.testimonial-card p {
  margin: 0 0 16px;
  color: #3b435f;
  font-size: .91rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 10px }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--black), var(--red));
  color: #fff;
  display: grid; place-items: center;
  font-size: .78rem; font-weight: 800;
  flex-shrink: 0;
}
.t-name { font-weight: 800; font-size: .88rem; color: var(--black) }
.t-label { font-size: .78rem; color: var(--muted) }

/* ?? FAQ ?? */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px }
.faq details {
  border: 1.5px solid var(--line); border-radius: 16px;
  background: #fff; overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: rgba(237,28,36,.3) }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-weight: 800; color: var(--black); font-size: .97rem;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none }
.faq .ans { padding: 0 22px 20px; color: var(--muted); font-size: .94rem; line-height: 1.75 }
.faq .ans a { color: var(--red); font-weight: 700; text-decoration: underline; text-underline-offset: 2px }
.faq-chevron {
  width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform .2s, border-color .2s;
}
.faq details[open] .faq-chevron { transform: rotate(-135deg); margin-top: 2px; border-color: var(--red) }

/* ?? CTA ?? */
.cta {
  border-radius: var(--radius-lg); padding: 52px 36px; text-align: center;
  background: linear-gradient(135deg, var(--black) 0%, #5a0f14 55%, var(--red) 100%);
  color: #fff; box-shadow: var(--shadow);
}
.cta h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3.5vw, 2.3rem); letter-spacing: -.04em }
.cta p { margin: 0 auto 28px; max-width: 50ch; color: rgba(255,255,255,.82); font-size: 1.02rem }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px }

/* ?? Footer ?? */
.site-footer {
  padding: 40px 0 28px;
  background: var(--black);
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { margin: 0; max-width: 32ch; line-height: 1.6 }
.footer-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: flex-end }
.footer-links a { color: rgba(255,255,255,.7); font-weight: 700; transition: color .15s }
.footer-links a:hover { color: var(--red) }
.footer-copy { grid-column: 1 / -1; color: rgba(255,255,255,.4); font-size: .8rem }

/* ?? WhatsApp float ?? */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  height: 52px; padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #128c7e; color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(18,140,126,.35);
  border: 2px solid #fff;
  font-size: .86rem; font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0 }
.wa-float:hover { transform: translateY(-2px); background: #0d7368; box-shadow: 0 12px 32px rgba(18,140,126,.45) }

/* ?? Channel modal ?? */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(35,31,32,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s;
}
.modal.open { opacity: 1; visibility: visible }
.modal-card {
  width: min(100%, 760px);
  max-height: min(86vh, 820px);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px;
  background: var(--black);
  color: #fff;
}
.modal-head h3 { margin: 0; font-size: 1.05rem }
.close-btn {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: grid; place-items: center;
}
.close-btn:hover { background: rgba(255,255,255,.2) }
.modal-body { padding: 20px 22px; overflow: auto }
.channel-block { margin-bottom: 18px }
.channel-block h4 {
  margin: 0 0 10px;
  font-size: .88rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.channel-tags { display: flex; flex-wrap: wrap; gap: 8px }
.channel-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 600;
  color: var(--black-soft);
}

.defer-section { content-visibility: auto; contain-intrinsic-size: auto 500px }

@media (max-width: 960px) {
  .nav { display: none }
  .hero-banner { grid-template-columns: 1fr }
  .hero-banner-main { padding: 32px 24px 24px }
  .hero-banner h1 { max-width: none }
  .hero-plans {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 20px;
  }
  .hero-plan { grid-template-columns: 96px 1fr auto }
  .grid-3,
  .plans-row,
  .benefit-row,
  .testimonials,
  .steps-row,
  .channel-grid { grid-template-columns: 1fr }
  .split-2 { grid-template-columns: 1fr; gap: 32px }
  .split-2 .split-media { order: -1 }
  .footer-inner { grid-template-columns: 1fr }
  .footer-links { justify-content: flex-start }
}

@media (max-width: 700px) {
  .hero { padding: 16px 0 24px }
  .hero-banner-main { padding: 24px 18px 18px }
  .hero-price-box { max-width: none }
  .wa-float span { display: none }
  .wa-float { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50% }
  .hero-plan { grid-template-columns: 1fr auto; gap: 8px }
  .hero-plan-meta { grid-column: 1 / -1 }
  .section { padding: 48px 0 }
  .section-head { margin-bottom: 32px }
  .header-actions .btn-outline { display: none }
  .trust-strip .container { gap: 16px }
  .cta { padding: 36px 20px }
  .plans-row { padding-top: 8px }
}

/* ?? Assine (wizard) ?? */
.page-assine main { padding: 20px 0 32px }
.container-narrow { max-width: 620px }
.app-shell {
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.app-shell .progress { height: 4px; background: #f0ecec }
.app-shell .progress > div { height: 100%; background: var(--red); transition: width .25s ease }
.app-body { padding: 20px 18px 72px }
.step-label { font-size: .72rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px }
.page-assine .form-title { margin: 0 0 4px; font-size: clamp(1.25rem, 3.5vw, 1.55rem); letter-spacing: -.03em; color: var(--black) }
.form-sub { margin: 0 0 16px; color: var(--muted); font-size: .88rem; line-height: 1.5 }
.step-panel { display: none }
.step-panel.on { display: block }
.wizard-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.wizard-step {
  text-align: center; padding: 8px 4px; border-radius: 12px;
  font-size: .62rem; font-weight: 800; color: var(--muted);
  background: var(--bg); border: 1px solid var(--line);
}
.wizard-step.on { background: rgba(237,28,36,.08); color: var(--red); border-color: rgba(237,28,36,.2) }
.wizard-step.done { background: var(--accent-soft); color: #9b1018; border-color: rgba(237,28,36,.15) }
.field { margin-bottom: 12px }
.field label { display: block; font-size: .76rem; font-weight: 800; color: var(--black); margin-bottom: 4px }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px }
.form-row-uf { grid-template-columns: minmax(0, 1fr) 88px }
.input, .select {
  width: 100%; height: 50px; padding: 0 14px;
  border-radius: 14px; border: 1.5px solid var(--line);
  background: #fff; outline: none; font-size: .96rem;
}
.input-sm { height: 44px; border-radius: 12px; font-size: .9rem; padding: 0 12px }
.input:focus, .select:focus { border-color: rgba(237,28,36,.4); box-shadow: 0 0 0 3px rgba(237,28,36,.09) }
.input:disabled, .select:disabled { background: #f7f7f8; color: #8a96ab }
.hint { margin-top: 4px; font-size: .78rem; color: var(--muted); min-height: 1.1em }
.hint.ok { color: #0f9d58 }
.hint.err { color: #d93025 }
.required { color: var(--red); margin-left: 2px }
.plan-pick { display: grid; gap: 10px }
.plan-pick .pick {
  padding: 16px 18px; border-radius: 16px;
  border: 2px solid var(--line); cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.plan-pick .pick.sel {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237,28,36,.08);
  background: #fff8f8;
}
.plan-pick .pick.hot-card { background: linear-gradient(90deg, #fff8f8, #fff) }
.pick-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px }
.pick-name { font-size: 1.05rem; font-weight: 900; color: var(--black) }
.pick-meta { font-size: .78rem; font-weight: 600; color: var(--muted) }
.pick-price strong { font-size: 1.2rem; font-weight: 900; color: var(--red); letter-spacing: -.04em }
.pick-price small { display: block; font-size: .7rem; color: var(--muted); font-weight: 700 }
.pick-feats { font-size: .76rem; color: #4a5568; line-height: 1.45; margin-top: 6px }
.pick-promo {
  margin-top: 8px; padding: 6px 10px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid rgba(237,28,36,.15);
  color: #9b1018; font-size: .74rem; font-weight: 700;
}
.pick-badge { font-size: .68rem; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px }
.pick-link { margin-top: 8px; font-size: .76rem; font-weight: 800; color: var(--red); background: none; border: 0; padding: 0; cursor: pointer; text-decoration: underline }
.choice-grid, .addon-grid { display: grid; gap: 10px; margin-top: 8px }
.choice-card, .addon-card {
  border: 1.5px solid var(--line); border-radius: 16px;
  background: #fff; padding: 14px 16px; cursor: pointer;
}
.choice-card.sel, .addon-card.sel {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237,28,36,.08);
}
.choice-top, .addon-top { display: flex; justify-content: space-between; align-items: center; gap: 10px }
.choice-title, .addon-title { margin: 0; font-size: .95rem; font-weight: 800 }
.choice-sub, .addon-sub { margin-top: 4px; font-size: .8rem; color: var(--muted) }
.summary-card {
  margin-top: 14px; padding: 14px 16px; border-radius: 16px;
  border: 1px solid var(--line); background: var(--bg);
}
.summary-card h3 { margin: 0 0 10px; font-size: .95rem; font-weight: 800 }
.summary-line { display: flex; justify-content: space-between; gap: 12px; font-size: .86rem; padding: 4px 0 }
.summary-total { padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--line); font-weight: 900 }
.order-summary {
  padding: 10px 12px; border-radius: 12px; margin-bottom: 14px;
  background: var(--accent-soft); border: 1px solid rgba(237,28,36,.15);
  color: #9b1018; font-size: .82rem; line-height: 1.5;
}
.sticky-foot {
  position: sticky; bottom: 0; z-index: 10;
  margin: 16px -18px -72px; padding: 12px 18px 14px;
  background: linear-gradient(0deg, #fff 75%, rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.success-view { display: none; text-align: center; padding: 32px 16px 40px }
.success-view.on { display: block }
.success-ico {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ed1c24' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 36px;
}
.page-assine .modal { z-index: 200 }
.page-assine .modal-card { max-height: min(86vh, 720px) }
.hidden { display: none !important }

@media (max-width: 700px) {
  .wizard-step { font-size: .58rem; padding: 7px 2px }
  .form-row, .form-row-uf { grid-template-columns: 1fr }
  .sticky-foot { grid-template-columns: 1fr }
}
