/* =========================================================
   Norte Fibra Telecom — Design System
   ========================================================= */

:root {
  /* Marca (extraída do logo oficial) */
  --brand-red: #a70202;
  --brand-red-dark: #7a0101;
  --brand-red-light: #d21f1f;
  --brand-gray: #818181;

  /* Neutros */
  --ink: #14171c;
  --ink-soft: #2a2e36;
  --paper: #ffffff;
  --surface: #f5f6f8;
  --surface-2: #eceef1;
  --border: #e2e4e9;
  --muted: #6b7280;

  /* Semântica */
  --success: #1a8f5e;

  /* Tipografia */
  --font-display: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  /* Escala */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(20, 23, 28, 0.06);
  --shadow-md: 0 8px 28px rgba(20, 23, 28, 0.10);
  --shadow-lg: 0 20px 50px rgba(20, 23, 28, 0.16);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--muted); }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-surface { background: var(--surface); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p { color: #b8bcc4; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--brand-red);
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 40px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(167, 2, 2, .28);
}
.btn-primary:hover { background: var(--brand-red-dark); box-shadow: 0 14px 30px rgba(167, 2, 2, .36); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--brand-red); color: var(--brand-red); }
.btn-on-dark { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(20,23,28,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand img { height: 34px; width: auto; }

.main-nav { display: flex; }
.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav a.is-active { background: var(--surface); color: var(--brand-red); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn-ghost { border-color: var(--border); }
.header-actions .btn-ghost.is-active { border-color: var(--brand-red); color: var(--brand-red); }
.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.phone-pill svg { color: var(--brand-red); flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--ink);
}

@media (max-width: 960px) {
  .main-nav { position: fixed; inset: 68px 0 0 0; background: #fff; padding: 20px 24px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; overflow-y: auto; }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .header-actions .phone-pill { display: none; }
}
@media (max-width: 560px) {
  .header-actions a.btn-ghost { display: none; }
  .header-inner { gap: 12px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 100% 0%, #2a0303 0%, var(--ink) 42%, var(--ink) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 75% 30%, black, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 96px 0 80px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -.01em;
}
.hero h1 .accent { color: var(--brand-red-light); }
.hero-lead { font-size: 18px; color: #c7cad1; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #dfe1e6; }
.hero-badge svg { color: var(--brand-red-light); }

.hero-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
}
.hero-panel h3 { font-size: 18px; margin-bottom: 4px; }
.hero-panel p.small { font-size: 13.5px; color: #9ea3ad; margin-bottom: 20px; }
.check-form { display: flex; gap: 10px; margin-bottom: 18px; }
.check-form input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 15px;
}
.check-form input::placeholder { color: #8b8f99; }
.check-form input:focus { outline: 2px solid var(--brand-red-light); outline-offset: 1px; }
.hero-panel-list { display: grid; gap: 12px; }
.hero-panel-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #cfd2d9; }
.hero-panel-list svg { color: var(--success); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--brand-red); }
.stat-item span { font-size: 13.5px; color: var(--muted); font-weight: 600; }
@media (max-width: 760px) { .stat-strip .container { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Benefit cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  margin-bottom: 18px;
}
.card h3 { font-size: 17.5px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Plans ---------- */
.plans-toggle-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 36px; margin-bottom: 0; }
.plan-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff 0%, #fff6f6 100%);
}
.plan-badge {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--brand-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--brand-gray); margin-bottom: 10px; }
.plan-speed { font-family: var(--font-display); font-size: 44px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.plan-speed span { font-size: 18px; font-weight: 600; color: var(--muted); }
.plan-price { margin: 18px 0 22px; }
.plan-price .from { font-size: 13px; color: var(--muted); display: block; }
.plan-price strong { font-family: var(--font-display); font-size: 32px; color: var(--ink); }
.plan-price .cents { font-size: 16px; }
.plan-price .period { font-size: 14px; color: var(--muted); }
.plan-features { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan-features li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); align-items: flex-start; }
.plan-features svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.placeholder-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-red);
  background: #fdeaea;
  border-radius: 6px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ---------- Coverage ---------- */
.coverage-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .coverage-wrap { grid-template-columns: 1fr; } }
.coverage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0 30px; }
.coverage-list li {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 14.5px;
}
.coverage-list svg { color: var(--brand-red); flex-shrink: 0; }
.coverage-map-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.coverage-map-card svg { color: var(--brand-red-light); }

/* ---------- Central do assinante ---------- */
.portal-banner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
}
@media (max-width: 900px) { .portal-banner { grid-template-columns: 1fr; padding: 34px 26px; } }
.portal-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); }
.portal-banner p { color: rgba(255,255,255,.88); }
.portal-list { display: grid; gap: 12px; }
.portal-list li { display: flex; gap: 10px; align-items: center; font-weight: 600; font-size: 14.5px; }
.portal-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.portal-panel {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-md);
  padding: 26px;
}
.portal-panel input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  margin-bottom: 12px;
  font-size: 15px;
}
.portal-panel input::placeholder { color: rgba(255,255,255,.6); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: #fff; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  text-align: left;
  color: var(--ink);
}
.faq-q svg { flex-shrink: 0; transition: transform .2s ease; color: var(--brand-red); }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); }

/* ---------- Testimonial (template only) ---------- */
.testimonial-note {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; font-size: clamp(22px, 2.6vw, 30px); }
.cta-banner p { color: #b8bcc4; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b8bcc4; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 18px; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a { font-size: 14.5px; transition: color .15s ease; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 300px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.footer-contact svg { color: var(--brand-red-light); flex-shrink: 0; margin-top: 3px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  transition: background .15s ease, border-color .15s ease;
}
.social-row a:hover { background: var(--brand-red); border-color: var(--brand-red); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  font-size: 13px;
  color: #7d818b;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 52px;
}
.page-hero .eyebrow { color: var(--brand-red-light); }
.page-hero .eyebrow::before { background: var(--brand-red-light); }
.page-hero h1 { font-size: clamp(28px, 3.6vw, 42px); }
.page-hero p { color: #b8bcc4; max-width: 620px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13.5px; color: #8b8f99; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Table (plans comparison) ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
table.compare thead th { background: var(--surface); font-family: var(--font-display); font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--brand-gray); }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td:first-child { font-weight: 600; color: var(--muted); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 14px; }
.contact-card .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-card h3 { font-size: 15.5px; margin-bottom: 4px; }
.contact-card p { font-size: 14px; margin-bottom: 0; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); min-height: 420px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Central do Assinante (identidade própria, dados reais via API) ---------- */

/* Cabeçalho compacto: nada de hero de página de marketing aqui — é área
   de "conta", o usuário quer chegar direto no conteúdo. */
.central-hero { background: var(--ink); color: #fff; padding: 22px 0 0; }
.central-hero .breadcrumb { margin-bottom: 12px; }
.central-hero-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 16px; margin-bottom: 16px; }
.central-hero-row h1 { font-size: 24px; margin: 0; }
.central-hero-status { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.central-status { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13px; background: rgba(255,255,255,.1); padding: 7px 14px; border-radius: 999px; }
.central-status .dot { width: 8px; height: 8px; border-radius: 999px; background: #7ee787; flex-shrink: 0; }
.central-status.offline .dot { background: #ffb3b3; }

.central-content { padding: 24px 0 60px; }

.central-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.central-tabs a {
  padding: 12px 14px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.central-tabs a:hover { color: var(--ink); }
.central-tabs a.is-active { color: var(--brand-red); border-color: var(--brand-red); }
.central-tabs a.tab-logout { margin-left: auto; color: var(--muted); font-weight: 600; }
.central-tabs a.tab-logout:hover { color: var(--brand-red); }
.tab-alert-dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--brand-red); margin-left: 5px; vertical-align: 2px; }

/* Dentro do cabeçalho escuro (usado só na tela de login, sem tabs) */
.central-hero .central-tabs { border-bottom-color: rgba(255,255,255,.14); }
.central-hero .central-tabs a { color: #9aa0ac; }
.central-hero .central-tabs a:hover { color: #fff; }
.central-hero .central-tabs a.is-active { color: #fff; border-color: var(--brand-red-light); }
.central-hero .central-tabs a.tab-logout { color: #9aa0ac; }
.central-hero .central-tabs a.tab-logout:hover { color: #fff; }

.central-login-box {
  max-width: 420px;
  margin: 36px auto 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.central-login-box h2 { font-size: 19px; margin-bottom: 6px; }
.central-login-box p { font-size: 14px; margin-bottom: 20px; }

.central-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .central-grid { grid-template-columns: 1fr; } }

/* Alerta de conexão suspensa — o mais chamativo da tela de propósito,
   pra não depender de a pessoa achar isso escondido dentro de Contratos. */
.central-alert {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: #fdecea;
  border: 1px solid #f6c6c0;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 22px;
}
.central-alert-icon { color: var(--brand-red); flex-shrink: 0; }
.central-alert-text { flex: 1; min-width: 200px; }
.central-alert-text h3 { color: var(--brand-red); font-size: 16px; margin-bottom: 2px; }
.central-alert-text p { margin: 0; font-size: 13.5px; }
.central-alert form { flex-shrink: 0; }

.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.status-aberta   { background: #fff4e0; color: #a15c00; }
.status-paga     { background: #eafaf1; color: var(--success); }
.status-vencida  { background: #fdecea; color: var(--brand-red); }
.status-cancelada{ background: var(--surface-2); color: var(--muted); }
.status-ativo    { background: #eafaf1; color: var(--success); }
.status-suspenso { background: #fdecea; color: var(--brand-red); }

.central-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
table.central-table { width: 100%; border-collapse: collapse; min-width: 640px; }
table.central-table th, table.central-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
table.central-table thead th { background: var(--surface); font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
table.central-table tbody tr:last-child td { border-bottom: none; }
table.central-table td.actions { white-space: nowrap; text-align: right; }
table.central-table td.actions form { display: inline-block; margin-left: 6px; }

.central-empty { text-align: center; padding: 48px 20px; color: var(--muted); }

.doc-list { display: grid; gap: 12px; }
.doc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius-md);
}
.doc-row .doc-info { display: flex; align-items: center; gap: 14px; }
.doc-row .doc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--brand-red); flex-shrink: 0; }
.doc-row h4 { margin: 0 0 2px; font-size: 14.5px; }
.doc-row p { margin: 0; font-size: 13px; }

.pix-box { background: var(--surface); border-radius: var(--radius-md); padding: 18px; margin-top: 14px; }
.pix-box textarea { width: 100%; font-family: monospace; font-size: 12.5px; padding: 10px; border-radius: 8px; border: 1px solid var(--border); resize: vertical; min-height: 70px; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--brand-red);
  outline-offset: 1px;
  border-color: var(--brand-red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
