:root {
  --gold: #FCBF00;
  --gold-dark: #d9a300;
  --black: #0d0d0d;
  --black-soft: #171717;
  --black-card: #1f1f1f;
  --white: #ffffff;
  --gray: #b7b7b7;
  --radius: 14px;
  --max: 1180px;
  --store-bg: #f2f2f2;
  --store-card: #ffffff;
  --store-border: #e4e4e4;
  --store-text: #1a1a1a;
  --store-text-soft: #6f6f6f;
  --store-discount: #e02020;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 800; margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--gray); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn.outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn.outline:hover { background: var(--gold); color: #1a1a1a; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #2a2a2a;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); border-color: var(--gold); }
.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--black-soft);
    flex-direction: column;
    padding: 30px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .menu-toggle { display: block; }
}

/* Hero */
.hero {
  padding: 70px 0 60px;
  background: radial-gradient(circle at 80% 20%, rgba(252,191,0,.12), transparent 55%);
}
.hero .container { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero .container { grid-template-columns: 1.1fr .9fr; } }
.hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.hero p.lead { color: var(--white); font-size: 1.1rem; opacity: .85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.hero-stats { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 1.6rem; color: var(--gold); }
.hero-stat span { font-size: .85rem; color: var(--gray); }
.hero-media { border-radius: var(--radius); overflow: hidden; border: 1px solid #2a2a2a; }

/* Sections */
section { padding: 70px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head span.eyebrow {
  color: var(--gold); font-weight: 700; letter-spacing: .12em; font-size: .8rem; text-transform: uppercase;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 10px; }
.alt-bg { background: var(--black-soft); }

.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card .icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,191,0,.12);
  border-radius: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}
.card h3 { font-size: 1.1rem; }
.card p { font-size: .92rem; margin: 0; }

/* Peças categories */
.cat-card {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  font-weight: 700;
  text-align: center;
  transition: transform .15s ease, border-color .15s ease;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.cat-card .cat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(252,191,0,.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}

/* Brands strip */
.brand-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; align-items: center;
  opacity: .9;
}
.brand-pill {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}

/* Reviews */
.review-box {
  display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: center;
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.review-score { font-size: 3rem; font-weight: 800; color: var(--gold); }
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; }

/* About split */
.about-split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .about-split { grid-template-columns: 1fr 1fr; } }
.about-split img { border-radius: var(--radius); border: 1px solid #2a2a2a; }
.timeline-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(252,191,0,.12); color: var(--gold);
  padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: .85rem;
  margin-bottom: 16px;
}

/* Contact / location */
.contact-grid { display: grid; gap: 30px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .icon {
  width: 40px; height: 40px; flex: none;
  background: rgba(252,191,0,.12); color: var(--gold);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid #2a2a2a; }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* Footer */
footer.site-footer { background: var(--black-soft); border-top: 1px solid #2a2a2a; padding: 56px 0 24px; }
.footer-grid { display: grid; gap: 36px; margin-bottom: 36px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--gray); font-size: .92rem; }
.footer-grid a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--black-card); border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.social-row a:hover { background: var(--gold); color: #1a1a1a; }
.footer-bottom {
  border-top: 1px solid #2a2a2a; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .82rem; color: var(--gray);
}

/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #25D366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
}

/* Header cart */
.cart-link {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  font-size: 1.2rem;
}
.cart-link:hover { border-color: var(--gold); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: #1a1a1a;
  font-size: .68rem; font-weight: 800;
  min-width: 19px; height: 19px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.cart-badge:empty, .cart-badge[data-count="0"] { display: none; }
.header-actions { display: flex; align-items: center; gap: 14px; }

.restrict-btn {
  display: none;
  align-items: center; gap: 6px;
  color: var(--gray);
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  white-space: nowrap;
}
@media (min-width: 900px) { .restrict-btn { display: flex; } }
.restrict-btn:hover { color: var(--gold); border-color: var(--gold); }
.restrict-btn svg { flex: none; }

/* Store banner strip */
.store-banner {
  background: var(--gold);
  color: #1a1a1a;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 16px;
}

/* Store shell — light marketplace surface for Loja/Carrinho */
.store-shell {
  background: var(--store-bg);
  color: var(--store-text);
  padding: 32px 0 70px;
}
.store-shell .section-head h2,
.store-shell h1, .store-shell h2, .store-shell h3 { color: var(--store-text); }
.store-shell p { color: var(--store-text-soft); }
.store-shell .page-hero { background: var(--store-bg); border-bottom: 1px solid var(--store-border); }
.store-shell .page-hero .eyebrow { color: var(--gold-dark); }
.store-shell .brand-pill {
  background: var(--store-card); border: 1px solid var(--store-border); color: var(--store-text);
}
.store-shell .section-head .eyebrow { color: var(--gold-dark); }
.store-shell .section-head p { color: var(--store-text-soft); }

/* Toolbar: search + sort */
.store-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.store-search {
  flex: 1; min-width: 220px;
  display: flex; align-items: center; gap: 10px;
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: 10px;
  padding: 12px 16px;
}
.store-search svg { flex: none; color: var(--store-text-soft); }
.store-search input {
  border: none; outline: none; background: transparent;
  font-family: inherit; font-size: .95rem; width: 100%; color: var(--store-text);
}
.store-sort {
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--store-text);
  cursor: pointer;
}
.store-result-count { font-size: .85rem; color: var(--store-text-soft); margin: -8px 0 18px; }

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 22px; justify-content: center;
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 30px;
}
.trust-strip span {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 600; color: var(--store-text-soft);
}

/* Category filter tabs */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 24px;
}
.filter-tab {
  background: var(--store-card);
  border: 1px solid var(--store-border);
  color: var(--store-text-soft);
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--gold); color: var(--store-text); }
.filter-tab.active { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }

/* Product cards — marketplace style */
.grid.cols-product { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.product-card {
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.product-media {
  aspect-ratio: 1/1;
  background: #fafafa;
  border-bottom: 1px solid var(--store-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  position: relative;
}
.product-media .badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--store-discount); color: #fff;
  font-size: .68rem; font-weight: 800;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase;
}
.product-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-brand { font-size: .68rem; color: var(--store-text-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.product-name {
  font-size: .88rem; font-weight: 600; color: var(--store-text); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.4em;
}
.product-price { margin-top: auto; }
.product-price .old { color: var(--store-text-soft); text-decoration: line-through; font-size: .76rem; margin-right: 6px; }
.product-price .now { color: var(--store-text); font-size: 1.15rem; font-weight: 800; }
.product-price .installment { display: block; color: #2a9d4a; font-size: .74rem; font-weight: 600; margin-top: 2px; }
.product-shipping { display: flex; align-items: center; gap: 5px; color: var(--store-text-soft); font-size: .72rem; margin-top: 2px; }
.product-add {
  margin-top: 10px;
  width: 100%;
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .84rem;
  transition: background .15s ease;
}
.product-add:hover { background: var(--gold-dark); }
.product-add.added { background: #2fbf5b; color: #fff; }

.store-note {
  text-align: center; color: var(--store-text-soft); font-size: .82rem;
  max-width: 560px; margin: -10px auto 26px;
}

/* Cart page */
.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  gap: 16px;
  align-items: center;
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: var(--radius);
  padding: 16px;
}
.cart-item-thumb {
  width: 64px; height: 64px; border-radius: 10px;
  background: #fafafa;
  border: 1px solid var(--store-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.cart-item-name { font-weight: 700; margin-bottom: 4px; color: var(--store-text); }
.cart-item-price { color: var(--gold-dark); font-weight: 700; font-size: .9rem; }
.qty-stepper { display: flex; align-items: center; gap: 10px; }
.qty-stepper button {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--store-bg); border: 1px solid var(--store-border); color: var(--store-text);
  cursor: pointer; font-weight: 700;
}
.qty-stepper button:hover { border-color: var(--gold-dark); }
.cart-item-remove { color: var(--store-text-soft); font-size: .8rem; cursor: pointer; background: none; border: none; text-decoration: underline; }
.cart-item-remove:hover { color: var(--store-text); }
.cart-summary {
  background: var(--store-card);
  border: 1px solid var(--store-border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid; gap: 12px;
  align-self: start;
}
.cart-summary-row { display: flex; justify-content: space-between; font-size: .95rem; color: var(--store-text-soft); }
.cart-summary-row.total { color: var(--store-text); font-weight: 800; font-size: 1.2rem; border-top: 1px solid var(--store-border); padding-top: 12px; }
.cart-summary-row.total .now { color: var(--gold-dark); }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--store-text-soft); }
.cart-grid { display: grid; gap: 30px; }
@media (min-width: 900px) { .cart-grid { grid-template-columns: 1fr 340px; } }

/* Breadcrumb / page hero (inner pages) */
.page-hero { padding: 46px 0; border-bottom: 1px solid #2a2a2a; }
.page-hero .eyebrow { color: var(--gold); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.page-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-top: 8px; }

form.contact-form { display: grid; gap: 14px; }
form.contact-form input, form.contact-form textarea {
  background: var(--black-card);
  border: 1px solid #2a2a2a;
  color: var(--white);
  padding: 14px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
}
form.contact-form textarea { min-height: 120px; resize: vertical; }
form.contact-form input:focus, form.contact-form textarea:focus { outline: 2px solid var(--gold); }

.form-feedback { color: var(--gold); font-size: .85rem; margin-top: 12px; text-align: center; }
.form-feedback:empty { display: none; }

/* Admin table (Painel Interno) */
.admin-table-wrap { overflow-x: auto; border: 1px solid #2a2a2a; border-radius: var(--radius); }
table.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
table.admin-table th, table.admin-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #2a2a2a; font-size: .88rem; }
table.admin-table th { background: var(--black-card); color: var(--gold); font-weight: 700; text-transform: uppercase; font-size: .72rem; letter-spacing: .05em; }
table.admin-table input, table.admin-table select {
  background: var(--black); border: 1px solid #2a2a2a; color: var(--white);
  padding: 8px 10px; border-radius: 8px; font-family: inherit; font-size: .85rem; width: 100%;
}
table.admin-table .row-actions { display: flex; gap: 8px; white-space: nowrap; }
.btn-sm {
  padding: 8px 14px; font-size: .8rem; border-radius: 8px; border: none; cursor: pointer; font-weight: 700;
}
.btn-sm.save { background: var(--gold); color: #1a1a1a; }
.btn-sm.save:hover { background: var(--gold-dark); }
.btn-sm.delete { background: transparent; border: 1px solid #c94040; color: #e07a7a; }
.btn-sm.delete:hover { background: #c94040; color: #fff; }

/* Painel Interno — layout com sidebar */
.panel-layout { display: flex; align-items: flex-start; background: #0a0a0a; }
.panel-sidebar {
  width: 250px; flex: none;
  background: var(--black-soft);
  border-right: 1px solid #232323;
  padding: 18px 12px;
  position: sticky; top: 76px;
  min-height: calc(100vh - 76px);
  display: flex; flex-direction: column; gap: 2px;
}
.panel-sidebar .panel-sidebar-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #6a6a6a; padding: 10px 12px 6px;
}
.panel-sidebar a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  color: var(--gray); font-weight: 600; font-size: .88rem;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}
.panel-sidebar a svg { flex: none; width: 18px; height: 18px; opacity: .85; }
.panel-sidebar a:hover { color: var(--white); background: rgba(255,255,255,.04); }
.panel-sidebar a.active { color: #1a1a1a; background: var(--gold); font-weight: 700; }
.panel-sidebar a.active svg { opacity: 1; }
.panel-sidebar a.disabled { opacity: .35; cursor: default; pointer-events: none; }
.panel-main { flex: 1; min-width: 0; padding: 36px 0 60px; }

@media (max-width: 899px) {
  .panel-layout { flex-direction: column; }
  .panel-sidebar {
    width: 100%; position: static; min-height: auto;
    flex-direction: row; overflow-x: auto; padding: 10px 12px; gap: 6px;
  }
  .panel-sidebar .panel-sidebar-label { display: none; }
  .panel-sidebar a { white-space: nowrap; }
}

/* Painel — dashboard */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 40px; }
.stat-tile {
  background: linear-gradient(160deg, var(--black-card), #171717);
  border: 1px solid #262626;
  border-radius: var(--radius);
  padding: 22px;
  position: relative; overflow: hidden;
}
.stat-tile::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--gold);
}
.stat-tile .stat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(252,191,0,.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.stat-tile .stat-icon svg { width: 18px; height: 18px; }
.stat-tile .stat-value { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-tile .stat-label { font-size: .8rem; color: var(--gray); margin-top: 6px; }
.stat-tile.alert::before { background: #e07a7a; }
.stat-tile.alert .stat-icon { background: rgba(201,64,64,.12); color: #e07a7a; }

.panel-quicklinks { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.panel-quicklink {
  display: flex; align-items: center; gap: 14px;
  background: var(--black-card); border: 1px solid #262626; border-radius: var(--radius);
  padding: 18px 20px; transition: border-color .15s ease, transform .15s ease;
}
.panel-quicklink:hover { border-color: var(--gold); transform: translateY(-2px); }
.panel-quicklink .stat-icon { margin-bottom: 0; }
.panel-quicklink .stat-icon svg { width: 18px; height: 18px; }
.panel-quicklink strong { display: block; color: var(--white); font-size: .92rem; }
.panel-quicklink span { display: block; color: var(--gray); font-size: .78rem; margin-top: 2px; }

/* Cotações — lista dinâmica de itens */
.quote-items-wrap { border: 1px solid #2a2a2a; border-radius: var(--radius); overflow: hidden; margin: 14px 0; }
table.quote-items { width: 100%; border-collapse: collapse; }
table.quote-items th, table.quote-items td { padding: 10px 12px; border-bottom: 1px solid #2a2a2a; font-size: .85rem; }
table.quote-items th { background: var(--black-card); color: var(--gold); font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
table.quote-items input {
  background: var(--black); border: 1px solid #2a2a2a; color: var(--white);
  padding: 7px 9px; border-radius: 7px; font-family: inherit; font-size: .85rem; width: 100%;
}
.checkbox-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.checkbox-row label { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--white); cursor: pointer; }
.checkbox-row input[type="checkbox"], .checkbox-row input[type="radio"] { width: 18px; height: 18px; accent-color: var(--gold); }
.status-pill-group { display: flex; gap: 10px; flex-wrap: wrap; }
.status-pill { display: flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 999px; border: 1px solid #2a2a2a; font-size: .85rem; cursor: pointer; }
.status-pill input { accent-color: var(--gold); }
.badge-status { padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.badge-status.pendente { background: rgba(252,191,0,.15); color: var(--gold); }
.badge-status.aprovado { background: rgba(47,191,91,.15); color: #2fbf5b; }
.badge-status.recusado { background: rgba(201,64,64,.15); color: #e07a7a; }
