:root {
  --brand: #00ed3b;
  /*--bg: #0b0f10;*/
  --card: #12181a;
  --muted: #c7d1cc;
  --ink: #e2e7e3;
  --danger: #ff4d4f;
  --warn: #f6c23e;
  --ok: #1fbf75;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 16px;
}

* { box-sizing: border-box }

header a{
    
    color: var(--ink) !important;
   
}

html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background: var(--bg);
  
}
.container{
    /*max-width:1200px;*/
    margin-inline:auto;
    padding:24px

}

/*header{
  position:sticky; top:0; z-index:10;
  background:rgba(11,15,16,.7);
  backdrop-filter: blur(8px);
  border-bottom:1px solid #1b2326;
}
.header-bar{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:16px 24px;
}*/



.brand{
  display:flex; align-items:center; gap:12px;
}
.brand .logo{width:28px;height:28px;border-radius:8px;background:linear-gradient(135deg,var(--brand),#52ffa0)}
.brand h1{margin:0;font-size:18px}
.header-actions{display:flex; gap:10px; align-items:center}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid #1b2326; background:#0f1416; color:var(--muted); font-size:12px;
}

.grid{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:22px;
  margin-top:18px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  background:var(--card);
  border:1px solid #1b2326;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card header, .card .head{
  padding:14px 16px; border-bottom:1px solid #1b2326;
}
.card .content{
  padding:16px;
}

.filters .row{display:grid; gap:12px; grid-template-columns: 1fr 1fr;}
.filters .row3{display:grid; gap:12px; grid-template-columns: 1fr 1fr 1fr;}
@media (max-width:720px){ .filters .row, .filters .row3 { grid-template-columns: 1fr; } }
label{display:block; font-size:13px; color:var(--muted); margin-bottom:6px}
input[type="search"], select, input[type="number"], .price-input{
  width:100%; background:#0f1416; color:var(--ink);
  border:1px solid #1b2326; border-radius:12px; padding:10px 12px;
}
.controls{display:flex; gap:10px; justify-content:flex-end; margin-top:10px}
.btn{
  appearance:none; border:none; cursor:pointer;
  background:var(--brand); color:#0b0f10; font-weight:800;
  padding:10px 14px; border-radius:12px;
}
.btn.secondary{ background:#121a1d; color:var(--ink); border:1px solid #1b2326 }
.btn.ghost{ background:transparent; color:var(--muted); border:1px dashed #2a3437 }
.btn.danger{ background:var(--danger); color:white }
.btn:disabled{ opacity:.6; cursor:not-allowed }

.combo-grid{
  display:grid; gap:14px;
  grid-template-columns: repeat( auto-fill, minmax(280px, 1fr) );
}
.combo{display:flex; flex-direction:column; gap:12px; padding:14px; background:#0f1416; border:1px solid #1b2326; border-radius:16px}
.combo .title{
  display:flex; gap:10px; align-items:flex-start; justify-content:space-between;
}
.combo h3{margin:0; font-size:16px}
.tags{display:flex; flex-wrap:wrap; gap:6px}
.tag{font-size:11px; color:var(--muted); background:#10181b; border:1px solid #243138; padding:3px 8px; border-radius:999px}
.price{display:flex; align-items:baseline; gap:8px}
.price .now{font-size:20px; font-weight:800}
.price .old{font-size:14px; color:#97a6a0; text-decoration: line-through}
.price .off{font-size:12px; color:#8fffb8}
.kpis{display:flex; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:12px}
.actions{display:flex; gap:10px; margin-top:auto}
.list{margin:0; padding-left:18px; color:var(--muted); font-size:14px}
.list li{margin:3px 0}
.helper{color:var(--muted); margin:0}
.list-margin{margin:10px 0 0}
.list-meta{color:#97a6a0}
.dlg-desc{margin-bottom:10px}
.dlg-price{margin-top:14px}
.dlg-note{margin-top:8px}

.accordion .acc-head{display:flex; align-items:center; justify-content:space-between; gap:10px}
.acc-btn{
  width:100%;
  text-align:left;
  background:#10161a;
  border:1px solid #1b2326;
  color:var(--ink);
  border-radius:12px;
  padding:10px 12px;
  display:flex; align-items:center; justify-content:space-between; gap:8px;
}
.acc-btn[aria-expanded="true"] .chev{transform:rotate(180deg)}
.acc-panel{
  overflow:hidden;
  max-height:0;
  transition:max-height .25s ease;
  border-left:2px solid #1b2326;
  margin-top:8px; padding-left:10px;
}
@media (prefers-reduced-motion: reduce){
  .acc-panel { transition:none }
}

.overlay{
  position:fixed; inset:0; display:none; place-items:center; background:rgba(0,0,0,.5);
}
.overlay.show{display:grid}
.dialog{
  width:min(720px, 92vw);
  background:var(--card);
  border:1px solid #1b2326;
  border-radius:16px;
  box-shadow:var(--shadow);
}
.dialog header{ padding:14px 16px; border-bottom:1px solid #1b2326; display:flex; align-items:center; justify-content:space-between }
.dialog .body{ padding:16px }
.dialog .foot{ padding:12px 16px; border-top:1px solid #1b2326; display:flex; gap:10px; justify-content:flex-end }

.toast{
  position:fixed; bottom:20px; right:20px;
  background:#0f1416; border:1px solid #1b2326;
  padding:12px 14px; border-radius:12px; box-shadow:var(--shadow);
  opacity:0; transform: translateY(8px);
  transition: all .2s ease;
}
.toast.show{ opacity:1; transform:none }

.skeleton{
  height:140px; border-radius:14px;
  background: linear-gradient(90deg,#0e1417, #0f171a, #0e1417);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border:1px solid #1b2326;
}
@keyframes shimmer { to { background-position: -200% 0; } }
.empty{
  text-align:center; color:var(--muted); padding:20px; border:1px dashed #2a3437; border-radius:16px
}
































/* BANNER (hero) */
.hero {
    position: relative;
    isolation: isolate;
    background: radial-gradient(1200px 400px at 10% 20%, rgba(0,237,59,.08), transparent 60%), linear-gradient(180deg,#0b0f10 0%, #0f1416 100%);
    overflow: hidden;
    border-bottom: 1px solid #1b2326;
}

    .hero::before {
        /* imagem de fundo (substitua a URL em data-bg no HTML) */
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: translateZ(0);
        will-change: background-position;
        z-index: -2;
        opacity: 0; /* evitar flash até a imagem carregar */
        transition: opacity .4s ease;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        /*background: linear-gradient(90deg,rgba(11,15,16,.75) 0%, rgba(11,15,16,.35) 55%, rgba(11,15,16,.75) 100%), radial-gradient(800px 200px at 15% 20%, rgba(0,237,59,.10), transparent 60%);*/
        z-index: -1;
    }

/* Conteúdo do banner */
.hero-inner {
    display: grid;
    align-items: center;
    gap: 20px;
    grid-template-columns: 1.2fr .8fr;
    min-height: 320px;
    padding: clamp(20px, 4vw, 48px) 20px;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: unset
    }
}

.copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .copy h1 {
        margin: 0;
        font-size: clamp(24px, 5vw, 40px);
        line-height: 1.15;
        letter-spacing: .2px;
    }

    .copy p {
        margin: 0;
        color: var(--muted)
    }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--muted);
    border: 1px solid #1b2326;
    border-radius: 999px;
    background: #0f1416;
}

.points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px
}

.point {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #a6b3ae;
    font-size: 14px;
    background: #10181b;
    border: 1px solid #243138;
    border-radius: 999px;
    padding: 6px 10px;
}

    .point svg {
        flex: 0 0 16px
    }

.cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width:900px) {
    .cta {
        justify-content: flex-start
    }
}