/* microplus.pt — folha de estilos única.
   Tokens em :root; componentes convertidos dos mockups (design-microplus/*.dc.html).
   Sem estilos inline (CSP style-src sem 'unsafe-inline'). */

:root {
  /* Cores de marca */
  --graphite: #14161A;
  --graphite-2: #1E2126;
  --graphite-3: #2A2E35;
  --graphite-line: #3A3F47;
  --paper: #F5F4EF;
  --paper-2: #ECEAE2;
  --white: #FFFFFF;
  --line: #DEDCD3;
  --ink: #14161A;
  --ink-2: #4A4F57;
  --muted-dark: #A3A8B0;
  --topbar-text: #D6D8DC;
  --cobalt: #2340E6;
  --cobalt-hover: #1A31B8;
  --cobalt-2: #3653F0;
  --cobalt-pale: #DCE1FF;
  --focus: #9DB0FF;
  --lime: #C6F36B;
  --amber: #F2B94B;
  --ok: #1E7A3C;
  --danger: #B42318;
  --danger-bg: #FDECEA;
  --toggle-off: #C9C6BC;
  /* Gestplus (ponte) */
  --gp-navy: #0A1929;
  --gp-cyan: #5EDDFF;
  --gp-text: #B7C4D2;
  --gp-paper: #F4F1EA;

  /* Tipografia */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-sans: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, Consolas, monospace;

  /* Espaçamento e forma */
  --gutter: 80px;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 20px;
  --header-h: 80px;
}

@media (max-width: 1200px) { :root { --gutter: 40px; } }
@media (max-width: 768px) { :root { --gutter: 16px; --header-h: 64px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
main { flex: 1 0 auto; }
img, svg { max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--cobalt); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
h1, h2, h3, p { margin: 0; }
strong { font-weight: 700; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--cobalt); color: var(--white); padding: 10px 16px; border-radius: var(--radius);
}
.skip-link:focus { left: 8px; color: var(--white); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding-inline: var(--gutter); }

.d { font-family: var(--font-display); letter-spacing: -0.025em; }
.mono { font-family: var(--font-mono); }
.eyebrow { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); }
.eyebrow--lime { color: var(--lime); }
.eyebrow--cobalt { color: var(--cobalt); }
.muted { color: var(--ink-2); }
.small { font-size: 14px; }
.xsmall { font-size: 13px; }
.placeholder { background: #FFF3C4; color: #5A4500; padding: 0 4px; border-radius: 4px; font-family: var(--font-mono); font-size: 0.9em; }

.h-hero { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 80px; line-height: 0.98; font-weight: 800; }
.h-page { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 64px; line-height: 1; font-weight: 800; }
.h-xl { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 56px; line-height: 1.02; font-weight: 800; }
.h-lg { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 48px; line-height: 1.02; font-weight: 800; }
.h-md { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 40px; line-height: 1.05; font-weight: 700; }
.h-sm { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 34px; line-height: 1.05; font-weight: 700; }
.h-xs { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 28px; line-height: 1.1; font-weight: 700; }
.lead { font-size: 20px; line-height: 1.55; color: var(--ink-2); }

.only-mobile { display: none; }
.js .js-hide { display: none; }
.ink { color: var(--ink); }
.muted-dark { color: var(--muted-dark); }
.eyebrow-gp { font-family: var(--font-mono); font-size: 13px; color: var(--gp-cyan); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 24px; border-radius: var(--radius);
  font: 600 16px var(--font-sans); border: 0; cursor: pointer; text-decoration: none;
  background: transparent; color: var(--ink); white-space: nowrap;
}
.btn-lg { height: 56px; padding: 0 26px; font-size: 17px; }
.btn-md { height: 50px; }
.btn-sm { height: 44px; padding: 0 18px; font-size: 15px; }
.btn-blue { background: var(--cobalt); color: var(--white); }
.btn-blue:hover { background: var(--cobalt-hover); color: var(--white); }
.btn-dark { background: var(--graphite); color: var(--paper); }
.btn-dark:hover { background: var(--graphite-3); color: var(--lime); }
.btn-line { border: 1.5px solid var(--ink); }
.btn-line-soft { border: 1.5px solid var(--graphite-line); color: var(--paper); }
.btn-line-soft:hover { color: var(--lime); border-color: var(--lime); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: #B5E457; color: var(--ink); }
.btn-cyan { background: var(--gp-cyan); color: var(--gp-navy); }
.btn-cyan:hover { background: #8CE7FF; color: var(--gp-navy); }
.btn[disabled], .btn[aria-disabled="true"] { background: var(--paper-2); color: var(--ink-2); cursor: not-allowed; }
.btn-block { width: 100%; }

.link-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: 600 15px var(--font-sans); color: var(--cobalt); text-decoration: underline;
}
.link-btn:hover { color: var(--cobalt-hover); }
.link-strong { color: var(--cobalt); font-weight: 600; }

/* ---------- Tags ---------- */
.tag {
  display: inline-flex; align-items: center; height: 26px; padding: 0 10px; border-radius: var(--radius-sm);
  font: 500 12px var(--font-mono); background: var(--paper-2); color: var(--ink);
}
.tag-sm { height: 24px; padding: 0 8px; font-size: 11px; border-radius: 5px; }
.tag-lime { background: var(--lime); }
.tag-cobalt { background: var(--cobalt-2); color: var(--white); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }

/* ---------- Mensagens ---------- */
.flash, .alert {
  border-radius: var(--radius-md); padding: 14px 18px; font-size: 15px; line-height: 1.5;
  background: var(--white); border: 1.5px solid var(--line);
}
.flash { margin-top: 20px; }
.alert-error { background: var(--danger-bg); border-color: #F4B8B2; color: #7A1A12; }
.alert-ok { background: #EEF9E0; border-color: #BFE39A; color: #234A0B; }
.alert-info { background: var(--white); border-color: var(--line); color: var(--ink-2); }

/* ---------- Topbar + header ---------- */
.topbar { background: var(--graphite); color: var(--topbar-text); font-size: 13px; }
.topbar .wrap { height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: var(--topbar-text); }
.topbar a:hover { color: var(--lime); }

.site-header { border-bottom: 1px solid var(--line); background: var(--paper); position: relative; z-index: 20; }
.site-header .wrap { height: var(--header-h); display: flex; align-items: center; gap: 44px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo svg { width: 36px; height: 36px; }
.logo-text { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 26px; font-weight: 700; }
.nav { display: flex; gap: 30px; flex-grow: 1; }
.nav a { font-size: 15px; font-weight: 500; }
.nav a[aria-current="page"] { color: var(--cobalt); }
.header-link { font-size: 15px; font-weight: 600; white-space: nowrap; }
.cart-btn {
  width: 48px; height: 48px; border-radius: var(--radius); border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0;
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--cobalt); color: var(--white); font: 500 11px var(--font-mono);
  display: flex; align-items: center; justify-content: center;
}

.menu-mobile { display: none; }
.menu-mobile > summary {
  list-style: none; width: 44px; height: 44px; border-radius: var(--radius); background: var(--graphite);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.menu-mobile > summary::-webkit-details-marker { display: none; }
.menu-mobile[open] > summary { background: var(--cobalt); }
.menu-panel {
  position: absolute; left: 0; right: 0; top: var(--header-h);
  background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 24px rgba(20, 22, 26, 0.08);
}
.menu-panel a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 17px; }
.menu-panel a:last-child { border-bottom: 0; }

/* Header do checkout */
.checkout-header .wrap { justify-content: space-between; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; align-items: center; }
.steps li {
  height: 34px; padding: 0 14px; border-radius: 999px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; color: var(--ink-2);
}
.steps li.is-current { background: var(--graphite); color: var(--paper); }
.steps li.is-done { background: var(--lime); color: var(--ink); }
.secure-note { font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--graphite); color: var(--muted-dark); font-size: 14px; margin-top: auto; }
.site-footer .wrap { padding-top: 64px; padding-bottom: 36px; display: flex; flex-direction: column; gap: 44px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(5, minmax(0, 1fr)); gap: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; line-height: 1.6; }
.footer-brand .logo-text { font-size: 28px; color: var(--paper); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h2 { font: 700 14px var(--font-sans); color: var(--paper); margin-bottom: 2px; }
.site-footer a { color: var(--muted-dark); }
.site-footer a:hover { color: var(--lime); }
.footer-contact { color: var(--paper); }
.footer-contact a { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid var(--graphite-3); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px; font-size: 13px;
}
.footer-slim .wrap { padding-top: 28px; padding-bottom: 28px; flex-direction: row; justify-content: space-between; gap: 20px; font-size: 13px; }
.footer-slim nav { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Formulários ---------- */
.field { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 600; }
.input, .select, .textarea {
  height: 50px; width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 0 14px; font: 500 16px var(--font-sans); background: var(--white); color: var(--ink);
}
.textarea { height: 110px; padding: 12px 14px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: 3px solid var(--focus); border-color: var(--cobalt); }
.input.input-validation-error, .select.input-validation-error, .textarea.input-validation-error { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 13px; font-weight: 500; }
.field-error:empty { display: none; }
.field-hint { color: var(--ink-2); font-size: 13px; font-weight: 400; }
.input-mono { font: 500 18px var(--font-mono); }
.validation-summary-errors ul { margin: 0; padding-left: 18px; }
.check { display: flex; align-items: center; gap: 10px; font-size: 15px; min-height: 36px; font-weight: 400; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 0; accent-color: var(--cobalt); flex-shrink: 0; }
.check-top { align-items: flex-start; line-height: 1.5; }
.check-top input { margin-top: 3px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid-address { display: grid; grid-template-columns: 180px minmax(0, 1fr) 220px; gap: 16px; }
.form-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { font-weight: 700; margin-bottom: 10px; padding: 0; }

/* Botões de opção (radio com aspecto de botão) */
.opt-row { display: flex; gap: 8px; flex-wrap: wrap; }
.opt {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-width: 64px; height: 52px; padding: 0 16px; border-radius: var(--radius);
  border: 1.5px solid var(--line); background: var(--white); font: 600 16px var(--font-sans);
  color: var(--ink); cursor: pointer; user-select: none;
}
.opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.opt:has(input:checked) { background: var(--graphite); color: var(--paper); border-color: var(--graphite); }
.opt:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.opt:has(input:disabled) { opacity: 0.45; cursor: not-allowed; }

/* ---------- Home ---------- */
.hero { padding-top: 80px; padding-bottom: 88px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 72px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 26px; }
.hero-copy .tag { align-self: flex-start; }
.hero-copy .lead { max-width: 600px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.renew-card {
  background: var(--graphite); border-radius: var(--radius-2xl); padding: 36px; color: var(--paper);
  display: flex; flex-direction: column; gap: 22px;
}
.renew-card .field { font-size: 14px; }
.renew-card .input {
  height: 54px; border-color: var(--graphite-line); background: var(--graphite-2); color: var(--paper);
  font: 500 18px var(--font-mono);
}
.renew-card .input::placeholder { color: #6B717A; }
.renew-card-note { font-size: 13px; color: var(--muted-dark); }

.segments { padding-bottom: 100px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.segment-card {
  padding: 32px; display: flex; flex-direction: column; gap: 14px; min-height: 360px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); color: var(--ink);
}
.segment-card:hover { border-color: var(--ink); color: var(--ink); }
.segment-card .seg-num { display: block; margin-bottom: 14px; font-family: var(--font-mono); font-size: 13px; color: var(--cobalt); }
.segment-card p { color: var(--ink-2); line-height: 1.55; }
.segment-card .tags { margin-top: auto; }
.segment-card .arrow { display: none; }
.segment-card--blue { background: var(--cobalt); color: var(--white); border-color: var(--cobalt); }
.segment-card--blue:hover { color: var(--white); background: var(--cobalt-hover); }
.segment-card--blue .seg-num { color: var(--lime); }
.segment-card--blue p { color: var(--cobalt-pale); }
.segment-card--blue .tag { background: var(--cobalt-2); color: var(--white); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.section-head h2 { margin-top: 10px; }
.bestsellers { padding-bottom: 110px; display: flex; flex-direction: column; gap: 36px; }
.tile-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-tile { padding: 22px; display: flex; flex-direction: column; gap: 12px; color: var(--ink); }
.product-tile:hover { border-color: var(--ink); color: var(--ink); }
.product-tile .thumb {
  height: 150px; border-radius: 10px; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
}
.product-tile .thumb svg { width: 56px; height: 56px; }
.product-tile .seg { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }
.product-tile .name { font-weight: 700; font-size: 17px; line-height: 1.3; min-height: 44px; }
.product-tile .config { font-size: 14px; color: var(--ink-2); }
.product-tile .price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: 4px; }
.product-tile .price { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 30px; font-weight: 700; }
.product-tile .price--text { font-size: 22px; }
.product-tile .vat-note { font-size: 12px; color: var(--ink-2); }

.why { background: var(--graphite); color: var(--paper); }
.why .wrap { padding-top: 100px; padding-bottom: 100px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 80px; }
.why h2 { margin-top: 12px; }
.why-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 40px; }
.why-item { border-top: 1px solid var(--graphite-line); padding-top: 20px; }
.why-item h3 { font-weight: 700; font-size: 19px; }
.why-item p { margin-top: 8px; color: var(--muted-dark); line-height: 1.55; }

.duo { padding-top: 110px; padding-bottom: 110px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.duo-card { padding: 44px; display: flex; flex-direction: column; gap: 18px; }
.duo-card p { color: var(--ink-2); line-height: 1.6; }
.duo-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; font-weight: 600; font-size: 15px; list-style: none; margin: 0; padding: 0; }
.duo-card .btn { align-self: flex-start; margin-top: 10px; }
.gp-card { background: var(--gp-navy); color: var(--gp-paper); border-radius: var(--radius-lg); }
.gp-card .eyebrow-gp { font-family: var(--font-mono); font-size: 13px; color: var(--gp-cyan); }
.gp-card p { color: var(--gp-text); }
.gp-card .btn { margin-top: auto; }
.gp-logo { display: flex; align-items: center; gap: 12px; }
.gp-logo svg { width: 44px; height: 44px; }
.gp-wordmark { font-family: 'Manrope', var(--font-sans); font-size: 32px; font-weight: 700; }
.gp-wordmark span { font-weight: 300; }

.reseller-band {
  margin-bottom: 110px; border: 1.5px solid var(--ink); border-radius: var(--radius-2xl);
  padding: 56px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.reseller-band .band-title { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 44px; font-weight: 800; line-height: 1.05; }
.reseller-band p { margin-top: 10px; font-size: 18px; color: var(--ink-2); }
.band-wrap { padding-inline: var(--gutter); max-width: 1440px; margin: 0 auto; width: 100%; }

/* ---------- Cabeçalhos de página ---------- */
.page-head { padding-top: 56px; padding-bottom: 36px; display: flex; flex-direction: column; gap: 24px; }
.crumbs { font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); }
.crumbs a { color: var(--ink-2); }
.crumbs a:hover { color: var(--cobalt); }
.page-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.page-head-row p { max-width: 460px; color: var(--ink-2); line-height: 1.55; }

/* ---------- Loja ---------- */
.seg-bar { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.seg-bar .spacer { flex-grow: 1; }
.seg {
  display: inline-flex; align-items: center; height: 44px; padding: 0 20px; border-radius: var(--radius);
  border: 1.5px solid var(--line); background: var(--white); font: 600 15px var(--font-sans); color: var(--ink);
}
.seg:hover { border-color: var(--ink); color: var(--ink); }
.seg[aria-current="true"] { background: var(--graphite); color: var(--paper); border-color: var(--graphite); }
.vat-toggle {
  height: 44px; padding: 0 14px; border-radius: var(--radius); border: 1.5px solid var(--line); background: var(--white);
  font: 500 14px var(--font-sans); cursor: pointer; display: inline-flex; align-items: center; gap: 10px; color: var(--ink);
}
.vat-toggle:hover { border-color: var(--ink); color: var(--ink); }
.vat-track { width: 36px; height: 20px; border-radius: 999px; position: relative; display: inline-block; background: var(--cobalt); transition: background 0.15s; }
.vat-knob { position: absolute; top: 2px; left: 18px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); transition: left 0.15s; }
html.vat-off .vat-track { background: var(--toggle-off); }
html.vat-off .vat-knob { left: 2px; }

.p-novat, .vat-label-off { display: none; }
html.vat-off .p-vat, html.vat-off .vat-label-on { display: none; }
html.vat-off .p-novat, html.vat-off .vat-label-off { display: inline; }

.shop-layout { padding-bottom: 100px; display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 40px; }
.filters { display: flex; flex-direction: column; gap: 28px; }
.help-card { background: var(--graphite); color: var(--paper); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.help-card p { font-size: 14px; color: var(--muted-dark); line-height: 1.5; }
.results { display: flex; flex-direction: column; gap: 18px; }
.results-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-2); flex-wrap: wrap; }
.results-bar label { display: flex; align-items: center; gap: 10px; }
.results-bar .select { height: 40px; width: auto; padding: 0 10px; font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { padding: 22px; display: flex; flex-direction: column; gap: 12px; min-height: 400px; }
.product-card-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.product-card .thumb { height: 110px; border-radius: 10px; background: var(--paper-2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card .thumb svg { width: 46px; height: 46px; }
.product-card .thumb img { max-height: 100%; object-fit: contain; }
.product-card h2 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.product-card h2 a:hover { color: var(--cobalt); }
.product-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.product-card .price-line { margin-top: auto; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.product-card .from { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }
.product-card .price { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 28px; font-weight: 700; }
.product-card .price--text { font-size: 20px; }
.product-card .btn { height: 44px; font-size: 15px; padding: 0 18px; }
.empty-state { border: 1.5px dashed var(--line); border-radius: var(--radius-md); padding: 28px; color: var(--ink-2); text-align: center; }

/* ---------- Produto ---------- */
.product-layout { padding-top: 40px; padding-bottom: 80px; display: grid; grid-template-columns: minmax(0, 1fr) 520px; gap: 64px; }
.product-media { display: flex; flex-direction: column; gap: 22px; }
.product-visual {
  height: 460px; border-radius: var(--radius-xl); background: var(--graphite);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.product-visual svg { width: 180px; height: 180px; }
.product-visual img { max-height: 80%; object-fit: contain; }
.product-visual .caption { position: absolute; left: 24px; bottom: 20px; color: var(--muted-dark); font: 12px var(--font-mono); }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; }
.feature h3 { font-weight: 700; font-size: 16px; }
.feature p { font-size: 14px; color: var(--ink-2); margin-top: 4px; }
.buy-panel { display: flex; flex-direction: column; gap: 22px; padding-top: 34px; }
.buy-panel .tagline { font: 13px var(--font-mono); color: var(--cobalt); }
.buy-panel .desc { font-size: 17px; line-height: 1.55; color: var(--ink-2); }
.price-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.price-box-main { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.price-box-main .summary { color: var(--ink-2); }
.price-box-main .amount { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 40px; font-weight: 800; white-space: nowrap; }
.price-box-main .amount--text { font-size: 26px; }
.price-box-sub { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--ink-2); }
.price-box-notes { display: flex; gap: 18px; font-size: 13px; color: var(--ink-2); flex-wrap: wrap; }
.renew-hint { font-size: 14px; color: var(--ink-2); }

.compare { padding-bottom: 100px; display: flex; flex-direction: column; gap: 28px; }
.compare-table { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.compare-scroll { overflow-x: auto; }
.compare-row { display: grid; grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(120px, 1fr)); border-top: 1px solid var(--line); min-height: 56px; align-items: center; font-size: 15px; }
.compare-row > div { padding: 10px 18px; }
.compare-row--head { border-top: 0; background: var(--graphite); color: var(--paper); font-weight: 600; }
.compare-row--head .is-hl { color: var(--lime); }
.compare-row--head a { color: inherit; }
.yes { color: var(--ok); font-weight: 700; }
.info-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.info-col { border-top: 1.5px solid var(--ink); padding-top: 18px; }
.info-col h3 { font-weight: 700; font-size: 16px; }
.info-col p { margin-top: 6px; color: var(--ink-2); line-height: 1.55; font-size: 15px; }

/* ---------- Checkout ---------- */
.checkout-layout { padding-top: 56px; padding-bottom: 56px; display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 64px; align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.cart-line { padding: 22px; display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; gap: 20px; align-items: center; }
.cart-thumb { width: 96px; height: 96px; border-radius: 10px; background: var(--graphite); display: flex; align-items: center; justify-content: center; }
.cart-thumb svg { width: 40px; height: 40px; }
.cart-line .name { font-weight: 700; font-size: 18px; }
.cart-line .meta { color: var(--ink-2); margin-top: 4px; }
.cart-line .amount { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 26px; font-weight: 700; white-space: nowrap; }
.cart-line .unavailable { color: var(--danger); font-size: 14px; font-weight: 600; }
.cart-line form { margin-top: 8px; }
.cart-line .link-btn { font-size: 14px; }
.promo-form { max-width: 420px; }
.promo-row { display: flex; gap: 8px; }
.summary-box {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px; position: sticky; top: 16px;
}
.summary-box h2 { font-weight: 700; font-size: 18px; font-family: var(--font-sans); }
.summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; }
.summary-row .mono { white-space: nowrap; }
.summary-row--muted { color: var(--ink-2); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); padding-top: 14px; gap: 12px; }
.summary-total .amount { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 34px; font-weight: 800; white-space: nowrap; }
.summary-help { background: var(--paper); border-radius: 10px; padding: 14px; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.summary-help strong, .summary-help a { color: var(--ink); }
.summary-note { font-size: 13px; color: var(--ink-2); }

.type-switch { display: flex; gap: 8px; }
.type-switch .opt { height: 44px; }

.pay-methods { display: flex; flex-direction: column; gap: 10px; }
.pay {
  position: relative; display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: var(--radius-md);
  border: 1.5px solid var(--line); background: var(--white); cursor: pointer; font: 600 16px var(--font-sans); color: var(--ink);
}
.pay input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.pay:has(input:checked) { border-color: var(--cobalt); box-shadow: 0 0 0 1.5px var(--cobalt); }
.pay:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.pay-badge { width: 64px; height: 40px; border-radius: var(--radius-sm); background: var(--graphite); color: var(--paper); display: flex; align-items: center; justify-content: center; font: 500 12px var(--font-mono); flex-shrink: 0; }
.pay-badge--light { background: var(--paper-2); color: var(--ink); }
.pay-text { flex-grow: 1; }
.pay-text small { display: block; font-size: 14px; font-weight: 400; color: var(--ink-2); }
.mbway-field { max-width: 360px; }
.pay-methods:has(input[value="multibanco"]:checked) + .mbway-field { display: none; }
.billing-recap { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

.success-icon { width: 64px; height: 64px; border-radius: var(--radius-lg); background: var(--lime); display: flex; align-items: center; justify-content: center; }
.success-icon svg { width: 32px; height: 32px; }
.pending-icon { background: var(--paper-2); }
.failed-icon { background: var(--danger-bg); }
.license-card { background: var(--graphite); color: var(--paper); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.license-card .label { font: 12px var(--font-mono); color: var(--lime); }
.license-key-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.license-key { font: 500 28px var(--font-mono); letter-spacing: 0.04em; word-break: break-all; }
.license-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; font-size: 14px; color: var(--muted-dark); border-top: 1px solid var(--graphite-3); padding-top: 14px; }
.license-meta strong { display: block; color: var(--paper); font-weight: 600; }
.mb-ref { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.mb-ref div { font-size: 13px; color: var(--ink-2); }
.mb-ref strong { display: block; font: 500 22px var(--font-mono); color: var(--ink); }
.polling-note { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--cobalt); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Renovar ---------- */
.renew-layout { padding-top: 72px; padding-bottom: 72px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 80px; align-items: start; }
.renew-intro { display: flex; flex-direction: column; gap: 22px; }
.renew-intro .lead { font-size: 18px; line-height: 1.6; }
.renew-faq { list-style: none; margin: 10px 0 0; padding: 0; }
.renew-faq li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.renew-faq li:last-child { border-bottom: 1px solid var(--line); }
.renew-faq .mono { color: var(--cobalt); }
.renew-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 36px; display: flex; flex-direction: column; gap: 22px; }
.renew-panel .field { font-size: 16px; }
.key-row { display: flex; gap: 10px; }
.key-row .input { height: 56px; font: 500 20px var(--font-mono); flex-grow: 1; }
.license-summary { background: var(--graphite); color: var(--paper); border-radius: var(--radius-lg); padding: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.license-summary .head { grid-column: span 3; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.license-summary .head strong { font-size: 18px; }
.license-summary .cell { font-size: 13px; color: var(--muted-dark); }
.license-summary .cell strong { display: block; color: var(--paper); font-size: 16px; font-weight: 600; }
.license-summary .cell .state-ok { color: var(--lime); }
.license-summary .cell .state-bad { color: #FF9C8F; }
.badge { font: 12px var(--font-mono); padding: 4px 8px; border-radius: 5px; background: var(--lime); color: var(--ink); }
.badge--amber { background: var(--amber); }
.badge--red { background: #FF9C8F; }
.term-row { display: flex; gap: 10px; flex-wrap: wrap; }
.term {
  position: relative; flex: 1; min-width: 140px; min-height: 88px; padding: 16px; border-radius: var(--radius-md);
  border: 1.5px solid var(--line); background: var(--white); cursor: pointer; font: 500 15px var(--font-sans);
  color: var(--ink); display: flex; flex-direction: column; gap: 4px;
}
.term input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.term:has(input:checked) { border-color: var(--cobalt); box-shadow: 0 0 0 1.5px var(--cobalt); }
.term:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.term strong { font-size: 17px; }
.term .mono { font-size: 15px; }
.term .note { font-size: 12px; color: var(--ok); font-weight: 600; }
.renew-empty { border: 1.5px dashed var(--line); border-radius: var(--radius-md); padding: 28px; color: var(--ink-2); text-align: center; }

/* ---------- Revendedores ---------- */
.partner-hero { background: var(--graphite); color: var(--paper); }
.partner-hero .wrap { padding-top: 96px; padding-bottom: 96px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 72px; align-items: end; }
.partner-hero .copy { display: flex; flex-direction: column; gap: 24px; }
.partner-hero h1 { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 84px; line-height: 0.96; font-weight: 800; }
.partner-hero .lead { color: var(--muted-dark); max-width: 640px; }
.partner-preview { background: var(--graphite-2); border: 1px solid var(--graphite-3); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.partner-preview .row { display: flex; justify-content: space-between; font-size: 14px; gap: 12px; }
.partner-preview .amber { color: var(--amber); }
.partner-preview .fake-btn { height: 44px; border-radius: var(--radius); background: var(--cobalt); display: flex; align-items: center; justify-content: center; font-weight: 600; margin-top: 6px; }
.benefits { padding-top: 100px; padding-bottom: 100px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.benefit { display: flex; flex-direction: column; gap: 12px; }
.benefit .num { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 44px; font-weight: 800; color: var(--cobalt); }
.benefit h2 { font-weight: 700; font-size: 20px; font-family: var(--font-sans); }
.benefit p { color: var(--ink-2); line-height: 1.55; }
.process { padding-bottom: 100px; }
.process-box { border: 1.5px solid var(--ink); border-radius: var(--radius-2xl); padding: 48px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.process-box p { margin-top: 8px; color: var(--ink-2); line-height: 1.55; }
.process-box .h-xs { margin-top: 8px; }
.adesao { padding-bottom: 110px; display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 72px; scroll-margin-top: 20px; }
.adesao .intro p { margin-top: 16px; font-size: 17px; color: var(--ink-2); line-height: 1.6; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 36px; display: flex; flex-direction: column; gap: 18px; }
.form-card .btn { align-self: flex-start; }

/* ---------- Páginas de conteúdo ---------- */
.content-hero { padding-top: 72px; padding-bottom: 48px; display: flex; flex-direction: column; gap: 22px; max-width: 1000px; }
.content-hero .lead { max-width: 760px; }
.content { padding-bottom: 100px; }
.prose { max-width: 760px; font-size: 17px; line-height: 1.7; color: var(--ink); }
.prose h2 { font-family: var(--font-display); letter-spacing: -0.02em; font-size: 30px; line-height: 1.15; font-weight: 700; margin: 44px 0 12px; }
.prose h3 { font-size: 19px; font-weight: 700; margin: 28px 0 8px; }
.prose p, .prose ul, .prose ol { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--cobalt); text-decoration: underline; }
.legal-flag { display: inline-block; margin-bottom: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.service .mono { font-size: 13px; color: var(--cobalt); }
.service h2 { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 28px; font-weight: 700; line-height: 1.1; }
.service p { color: var(--ink-2); line-height: 1.6; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; }
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline .year { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--cobalt); letter-spacing: -0.02em; }
.timeline p { color: var(--ink-2); line-height: 1.6; }
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.contact-card { padding: 28px; display: flex; flex-direction: column; gap: 8px; }
.contact-card .big { font-family: var(--font-display); letter-spacing: -0.02em; font-size: 26px; font-weight: 700; word-break: break-word; }
.dark-band { background: var(--graphite); color: var(--paper); border-radius: var(--radius-2xl); padding: 44px; display: flex; flex-direction: column; gap: 16px; }
.dark-band p { color: var(--muted-dark); line-height: 1.6; }
.dark-band ol { margin: 0; padding-left: 20px; color: var(--muted-dark); line-height: 1.7; }
.gp-hero { background: var(--gp-navy); color: var(--gp-paper); }
.gp-hero .wrap { padding-top: 96px; padding-bottom: 96px; display: flex; flex-direction: column; gap: 24px; }
.gp-hero .lead { color: var(--gp-text); max-width: 720px; }
.gp-features { padding-top: 80px; padding-bottom: 100px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.error-page { padding-top: 100px; padding-bottom: 120px; display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.error-code { font: 500 14px var(--font-mono); color: var(--cobalt); }

.section-gap { margin-top: 20px; }
.stack-lg { display: flex; flex-direction: column; gap: 28px; }
.stack { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Responsivo ---------- */
@media (max-width: 1280px) {
  .site-header .wrap { gap: 28px; }
  .nav { gap: 20px; }
  .h-hero { font-size: 64px; }
  .partner-hero h1 { font-size: 68px; }
  .product-layout { grid-template-columns: minmax(0, 1fr) 440px; gap: 40px; }
  .checkout-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; }
}

@media (max-width: 1080px) {
  .nav, .header-link { display: none; }
  .menu-mobile { display: block; }
  .site-header .wrap { gap: 12px; }
  .logo { flex-grow: 1; }
  .hero, .why .wrap, .renew-layout, .partner-hero .wrap, .adesao, .product-layout, .checkout-layout { grid-template-columns: minmax(0, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: span 2; }
  .benefits, .service-grid, .gp-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .summary-box { position: static; }
  .buy-panel { padding-top: 0; }
  .steps li { padding: 0 10px; font-size: 13px; }
  .secure-note { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .only-mobile { display: revert; }
  .only-desktop { display: none !important; }

  .topbar { display: none; }
  .logo svg { width: 30px; height: 30px; }
  .logo-text { font-size: 22px; }
  .cart-btn { width: 44px; height: 44px; }
  .cart-btn svg { width: 18px; height: 18px; }

  .h-hero { font-size: 44px; }
  .h-page { font-size: 44px; }
  .h-xl, .partner-hero h1 { font-size: 40px; line-height: 1; }
  .h-lg { font-size: 36px; }
  .h-md { font-size: 30px; }
  .h-sm { font-size: 28px; }
  .lead { font-size: 17px; }

  .btn { height: 52px; }
  .hero { padding-top: 32px; padding-bottom: 20px; gap: 24px; }
  .hero-copy { gap: 18px; }
  .hero-actions .btn { width: 100%; }
  .renew-card { border-radius: 16px; padding: 24px; gap: 14px; }
  .renew-card .input { height: 52px; font-size: 16px; }
  .renew-card .h-sm { font-size: 24px; }

  .segments { grid-template-columns: minmax(0, 1fr); gap: 10px; padding-top: 40px; padding-bottom: 20px; }
  .segment-card { min-height: 0; padding: 18px; border-radius: var(--radius-md); flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; }
  .segment-card .seg-num { font-size: 12px; margin-bottom: 0; }
  .segment-card .h-sm { font-size: 18px; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0; margin-top: 4px; }
  .segment-card p, .segment-card .tags { display: none; }
  .segment-card .arrow { display: inline; }

  .bestsellers { padding-top: 30px; padding-bottom: 30px; gap: 16px; }
  .section-head { align-items: center; }
  .tile-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .product-tile { flex-direction: row; align-items: center; gap: 14px; padding: 16px; border-radius: var(--radius-md); }
  .product-tile .thumb { width: 64px; height: 64px; flex-shrink: 0; border-radius: var(--radius); }
  .product-tile .thumb svg { width: 28px; height: 28px; }
  .product-tile .seg, .product-tile .vat-note { display: none; }
  .product-tile .tile-text { flex-grow: 1; min-width: 0; }
  .product-tile .name { min-height: 0; font-size: 16px; }
  .product-tile .config { font-size: 13px; }
  .product-tile .price-row { margin: 0; }
  .product-tile .price { font-size: 20px; }
  .product-tile .price--text { font-size: 14px; }

  .why .wrap { padding-top: 56px; padding-bottom: 56px; gap: 32px; }
  .why-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .duo { grid-template-columns: minmax(0, 1fr); padding-top: 56px; padding-bottom: 40px; }
  .duo-card { padding: 28px; }
  .duo-list { grid-template-columns: minmax(0, 1fr); }
  .reseller-band { flex-direction: column; align-items: stretch; padding: 24px; border-radius: 16px; margin-top: 20px; margin-bottom: 40px; gap: 12px; }
  .reseller-band .band-title { font-size: 28px; }
  .reseller-band p { font-size: 16px; margin-top: 4px; }
  .reseller-band .btn { background: var(--graphite); color: var(--paper); }

  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .footer-brand { grid-column: auto; }
  .site-footer .wrap { padding-top: 28px; padding-bottom: 28px; gap: 24px; }
  .footer-bottom, .footer-slim .wrap { flex-direction: column; gap: 8px; }

  .page-head { padding-top: 28px; padding-bottom: 20px; gap: 16px; }
  .page-head-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .seg-bar .spacer { display: none; }
  .seg { padding: 0 14px; }
  .shop-layout { grid-template-columns: minmax(0, 1fr); padding-bottom: 56px; }
  .filters { order: 2; }
  .product-grid { grid-template-columns: minmax(0, 1fr); }
  .product-card { min-height: 0; }

  .product-layout { padding-top: 20px; padding-bottom: 48px; }
  .product-visual { height: 240px; }
  .product-visual svg { width: 110px; height: 110px; }
  .feature-grid, .info-cols { grid-template-columns: minmax(0, 1fr); }
  .price-box-main .amount { font-size: 32px; }
  .compare { padding-bottom: 56px; }

  .checkout-header .wrap { height: auto; min-height: var(--header-h); flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
  .steps { width: 100%; overflow-x: auto; }
  .steps li { height: 30px; white-space: nowrap; }
  .checkout-layout { padding-top: 28px; padding-bottom: 40px; gap: 28px; }
  .cart-line { grid-template-columns: 64px minmax(0, 1fr); padding: 16px; gap: 14px; }
  .cart-thumb { width: 64px; height: 64px; }
  .cart-line .amount { grid-column: 2; font-size: 22px; }
  .form-grid-2, .form-grid-address { grid-template-columns: minmax(0, 1fr); }
  .form-actions .btn { width: 100%; }
  .license-key { font-size: 20px; }
  .license-meta, .mb-ref { grid-template-columns: minmax(0, 1fr); }

  .renew-layout { padding-top: 32px; padding-bottom: 48px; gap: 32px; }
  .renew-panel { padding: 20px; }
  .key-row { flex-direction: column; }
  .license-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .license-summary .head { grid-column: span 2; }

  .partner-hero .wrap { padding-top: 48px; padding-bottom: 48px; gap: 32px; }
  .benefits { grid-template-columns: minmax(0, 1fr); padding-top: 56px; padding-bottom: 56px; }
  .process-box { grid-template-columns: minmax(0, 1fr); padding: 24px; gap: 24px; }
  .adesao { gap: 24px; padding-bottom: 56px; }
  .form-card { padding: 20px; }

  .content-hero { padding-top: 36px; padding-bottom: 28px; }
  .service-grid, .gp-features, .contact-cards, .split { grid-template-columns: minmax(0, 1fr); }
  .timeline li { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .dark-band { padding: 24px; }
  .prose { font-size: 16px; }
  .error-page { padding-top: 48px; padding-bottom: 72px; }
}

/* ---------- Serviços TI ---------- */
.p-year, .bill-label-on { display: none; }
html.bill-annual .p-month, html.bill-annual .bill-label-off { display: none; }
html.bill-annual .p-year, html.bill-annual .bill-label-on { display: inline; }
.bill-toggle .vat-track { background: var(--toggle-off); }
.bill-toggle .vat-knob { left: 2px; }
html.bill-annual .bill-toggle .vat-track { background: var(--cobalt); }
html.bill-annual .bill-toggle .vat-knob { left: 18px; }

.svc-families { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.svc-family { color: var(--ink); }
.svc-family:hover { border-color: var(--ink); color: var(--ink); }
.svc-family h2 { font-size: 26px; }
.svc-family .tags { margin-top: 4px; }
.svc-family-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; color: var(--ink-2); }
.svc-family-foot strong { color: var(--ink); }
.svc-family-foot .arrow { margin-left: auto; font-size: 20px; color: var(--cobalt); }

.svc-toolbar { row-gap: 10px; }
.svc-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.svc-anchors .tag:hover { background: var(--graphite); color: var(--paper); }
.svc-discount { display: flex; align-items: center; gap: 10px; color: var(--ink-2); }
.svc-section { display: flex; flex-direction: column; gap: 22px; scroll-margin-top: 20px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.svc-card { padding: 24px; display: flex; flex-direction: column; gap: 12px; scroll-margin-top: 20px; }
.svc-card--featured { border-color: var(--cobalt); box-shadow: 0 0 0 1px var(--cobalt); }
.svc-card-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.svc-name { font-size: 20px; font-weight: 700; line-height: 1.25; }
.svc-desc { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.svc-price { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; margin-top: 4px; }
.svc-price .price { font-family: var(--font-display); letter-spacing: -0.025em; font-size: 32px; font-weight: 700; }
.svc-price .price--text { font-size: 24px; }
.svc-price .per { font-size: 15px; color: var(--ink-2); margin-left: 2px; }
.svc-price .tag { margin-left: 8px; }
.svc-price-note { font-size: 13px; color: var(--ink-2); }
.svc-specs { margin: 0; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.svc-specs div { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.svc-specs dt { color: var(--ink-2); }
.svc-specs dd { margin: 0; font-weight: 600; text-align: right; }
.svc-more summary { cursor: pointer; font-size: 14px; font-weight: 600; color: var(--cobalt); padding: 4px 0; }
.svc-more[open] summary { margin-bottom: 6px; }
.svc-actions { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.svc-actions .btn { height: 44px; font-size: 15px; padding: 0 18px; }
.svc-sku { font-size: 12px; color: var(--ink-2); }
.svc-notes { margin: 0; padding-left: 18px; color: var(--ink-2); font-size: 14px; line-height: 1.7; }
.svc-summary { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.svc-summary-price { font-size: 15px; line-height: 1.6; }
.svc-summary-price strong { font-family: var(--font-display); font-size: 26px; letter-spacing: -0.02em; }

@media (max-width: 1280px) {
  .svc-families { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .svc-families, .svc-grid { grid-template-columns: minmax(0, 1fr); }
  .svc-family h2 { font-size: 22px; }
  .svc-card { padding: 18px; }
  .svc-price .price { font-size: 28px; }
  .svc-toolbar .vat-toggle { flex: 1 1 auto; justify-content: center; }
}

@media print {
  .site-header, .site-footer, .topbar, .menu-mobile { display: none; }
  body { background: #fff; }
}
