/* =========================================================
   1) TOKENS / BASE
========================================================= */
:root{
  --bg0:#020617;
  --card:rgba(15,23,42,.92);
  --stroke:rgba(148,163,184,.22);
  --muted:#94a3b8;
  --text:#e5e7eb;
  --good:#22c55e;
  --blue:#38bdf8;
  --warn:#f59e0b;
  --bad:#ef4444;
  --shadow:0 24px 60px rgba(0,0,0,.55);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

body{
  min-height:100vh;
  background:radial-gradient(circle at top,#0f172a 0,#020617 55%,#000 100%);
  color:var(--text);
  padding:18px;
}

/* =========================================================
   2) LAYOUT GERAL
========================================================= */
.page{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:250px minmax(0,1fr);
  gap:16px;
  align-items:start;
}

.main{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.panel{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  overflow:hidden;
}

.header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.header-actions{
  display:flex;
  gap:10px;
  align-items:flex-end;
  flex-wrap:wrap;
}

/* =========================================================
   3) SIDEBAR
========================================================= */
.sidebar{
  position:sticky;
  top:16px;
  background:rgba(15,23,42,.95);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}

.brand .title{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
}

.pill{
  padding:4px 10px;
  border-radius:999px;
  font-size:.72rem;
  border:1px solid rgba(55,65,81,.9);
  background:radial-gradient(circle at top left,rgba(34,197,94,.18),rgba(2,6,23,.9));
  color:var(--text);
  white-space:nowrap;
}

.nav{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:10px;
}

.nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  color:var(--text);
  border:1px solid transparent;
  background:rgba(2,6,23,.6);
  transition:.18s ease;
}

.nav a:hover{
  border-color:rgba(56,189,248,.55);
  transform:translateY(-1px);
}

.nav a.active{
  background:linear-gradient(120deg,rgba(34,197,94,.95),rgba(14,165,233,.95));
  color:#020617;
  font-weight:900;
  box-shadow:0 14px 30px rgba(34,197,94,.22);
}

.nav a small{
  color:rgba(148,163,184,.95);
  font-weight:800;
}

.nav a.active small{
  color:rgba(2,6,23,.75);
}

/* =========================================================
   4) TIPOGRAFIA / TEXTOS
========================================================= */
h1{
  font-size:1.55rem;
  background:linear-gradient(120deg,var(--blue),var(--good));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:6px;
}

.sub{
  color:var(--muted);
  font-size:.9rem;
  line-height:1.2;
}

.info{
  font-size:.82rem;
  color:var(--muted);
  margin-top:-4px;
}

.hint{
  color:rgba(148,163,184,.95);
  font-size:.85rem;
}

.vazio{
  margin-top:10px;
  font-size:.95rem;
  color:var(--muted);
  text-align:center;
}

.dash-muted{
  color:var(--muted);
}

/* =========================================================
   5) INPUTS / FORMULÁRIOS
========================================================= */
form{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:10px;
}

label{
  font-size:.85rem;
  font-weight:700;
  margin-bottom:4px;
  display:block;
  color:var(--text);
}

input,
.year-field select{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(55,65,81,.9);
  font-size:.95rem;
  outline:none;
  background:rgba(2,6,23,.75);
  color:var(--text);
  transition:border-color .18s ease, box-shadow .18s ease, transform .06s ease;
}

input::placeholder{
  color:#6b7280;
}

input:focus,
.year-field select:focus{
  border-color:rgba(56,189,248,.7);
  box-shadow:0 0 0 2px rgba(56,189,248,.15);
  transform:translateY(-1px);
}

input[type="month"]{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(55,65,81,.9);
  background:rgba(2,6,23,.75);
  color:var(--text);
  outline:none;
  transition:.18s ease;
}

input[type="month"]:focus{
  border-color:rgba(56,189,248,.7);
  box-shadow:0 0 0 2px rgba(56,189,248,.15);
  transform:translateY(-1px);
}

.month-field,
.year-field{
  min-width:190px;
}

.row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.row > div{
  flex:1;
  min-width:220px;
}

/* =========================================================
   6) BOTÕES
========================================================= */
button{
  margin-top:8px;
  padding:12px 14px;
  border-radius:999px;
  border:none;
  font-size:.95rem;
  font-weight:950;
  cursor:pointer;
  background:linear-gradient(120deg,rgba(34,197,94,.95),rgba(14,165,233,.95));
  color:#020617;
  box-shadow:0 14px 30px rgba(34,197,94,.18);
  transition:transform .12s ease, filter .15s ease, opacity .15s ease;
  text-transform:uppercase;
  letter-spacing:.08em;
}

button:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

button:active{
  transform:translateY(0);
}

button:disabled{
  opacity:.55;
  cursor:not-allowed;
  transform:none;
  filter:none;
}

.btn-secondary{
  margin-top:0;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(55,65,81,.9);
  font-size:.92rem;
  font-weight:900;
  cursor:pointer;
  background:rgba(2,6,23,.75);
  color:var(--text);
  box-shadow:none;
  text-transform:none;
  letter-spacing:.02em;
  transition:.18s ease;
}

.btn-secondary:hover{
  border-color:rgba(56,189,248,.55);
  transform:translateY(-1px);
}

.btn-produto{
  margin-top:0;
  padding:12px 14px;
  border-radius:999px;
  border:none;
  font-size:.95rem;
  font-weight:950;
  cursor:pointer;
  background:linear-gradient(120deg,rgba(34,197,94,.95),rgba(14,165,233,.95));
  color:#020617;
  box-shadow:0 14px 30px rgba(34,197,94,.18);
  transition:transform .12s ease, filter .15s ease, opacity .15s ease;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.btn-produto:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

/* =========================================================
   7) CHIPS / ALERTAS / FEEDBACK
========================================================= */
.chip{
  padding:4px 10px;
  border-radius:999px;
  font-size:.72rem;
  border:1px solid rgba(55,65,81,.9);
  background:radial-gradient(circle at top left,rgba(56,189,248,.18),rgba(2,6,23,.9));
  color:var(--text);
  white-space:nowrap;
  height:fit-content;
}

.alert{
  display:none;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(245,158,11,.45);
  background:radial-gradient(circle at top left,rgba(245,158,11,.18),rgba(2,6,23,.65));
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}

.alert .title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
  letter-spacing:.02em;
}

.alert .title .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(245,158,11,.95);
  box-shadow:0 0 0 4px rgba(245,158,11,.12);
  flex:0 0 auto;
}

.alert .desc{
  margin-top:6px;
  color:rgba(226,232,240,.92);
  font-size:.92rem;
  line-height:1.25;
}

.alert .desc small{
  color:rgba(148,163,184,.95);
  font-weight:800;
}

.alert.danger{
  border-color:rgba(239,68,68,.45);
  background:radial-gradient(circle at top left,rgba(239,68,68,.18),rgba(2,6,23,.65));
}

.alert.danger .title .dot{
  background:rgba(239,68,68,.95);
  box-shadow:0 0 0 4px rgba(239,68,68,.12);
}

.feedback{
  display:none;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(34,197,94,.35);
  background:rgba(34,197,94,.12);
  color:var(--text);
  font-size:.92rem;
  line-height:1.25;
}

.feedback.show{
  display:block;
}

.feedback.error{
  border-color:rgba(239,68,68,.35);
  background:rgba(239,68,68,.12);
}

.status-box{
  margin-top:10px;
  display:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(56,189,248,.25);
  background:rgba(56,189,248,.10);
  font-size:.9rem;
}

.status-box.show{
  display:block;
}

.status-box.error{
  border-color:rgba(239,68,68,.28);
  background:rgba(239,68,68,.10);
}

/* =========================================================
   8) AGENDAMENTO
========================================================= */
fieldset.grupo-opcoes{
  border:1px solid rgba(55,65,81,.9);
  border-radius:18px;
  padding:12px;
  margin-top:4px;
  background:radial-gradient(circle at top left,rgba(14,165,233,.12),rgba(2,6,23,.6));
}

fieldset.grupo-opcoes legend{
  padding:0 8px;
  font-size:.85rem;
  font-weight:900;
  color:var(--text);
  letter-spacing:.02em;
}

.opcoes-tipo{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  margin-top:10px;
}

.opcoes-tipo .opcao{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.9rem;
  color:var(--text);
  white-space:nowrap;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(2,6,23,.55);
}

.opcoes-tipo input[type="checkbox"],
.opcoes-tipo input[type="radio"]{
  width:16px;
  height:16px;
  cursor:pointer;
  accent-color:var(--blue);
}

.outro-valor{
  margin-top:10px;
  display:none;
}

.outro-valor.ativo{
  display:block;
}

.outro-valor label{
  font-size:.82rem;
}

/* =========================================================
   9) RESUMOS / KPIs
========================================================= */
.resumo-grid{
  margin-top:10px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.resumo-grid-3{
  grid-template-columns:repeat(3,1fr);
}

.card-resumo{
  background:rgba(2,6,23,.55);
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}

.resumo-titulo{
  color:var(--muted);
  font-weight:900;
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.resumo-valor{
  margin-top:8px;
  font-size:1.35rem;
  font-weight:950;
  letter-spacing:-.02em;
}

.resumo-sub{
  margin-top:6px;
  font-size:.82rem;
  color:rgba(148,163,184,.95);
}

/* =========================================================
   10) FILTROS
========================================================= */
.filters{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:end;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(2,6,23,.55);
}

/* =========================================================
   11) AGENDA / PENDENTES
========================================================= */
.agenda-lista{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:14px;
}

.dia-bloco{
  border-radius:18px;
  padding:12px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(2,6,23,.55);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.dia-header{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:10px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(148,163,184,.12);
  flex-wrap:wrap;
}

.dia-titulo{
  font-size:1rem;
  font-weight:950;
  text-transform:capitalize;
}

.dia-resumo{
  font-size:.84rem;
  color:var(--muted);
  white-space:nowrap;
}

.dia-itens{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
}

.card-agendamento{
  display:grid;
  grid-template-columns:86px minmax(0,1fr);
  gap:12px;
  padding:12px;
  border-radius:16px;
  background:rgba(15,23,42,.70);
  border:1px solid rgba(148,163,184,.14);
  box-shadow:0 10px 22px rgba(0,0,0,.30);
}

.col-hora{
  display:flex;
  flex-direction:column;
  gap:4px;
  justify-content:center;
  border-right:1px dashed rgba(148,163,184,.22);
  padding-right:10px;
}

.col-hora .hora{
  font-size:1.05rem;
  font-weight:950;
}

.col-hora .duracao{
  font-size:.78rem;
  color:var(--muted);
}

.col-conteudo{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.linha-topo{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}

.cliente{
  font-size:1rem;
  font-weight:950;
}

.valor{
  font-size:.95rem;
  font-weight:950;
  color:rgba(34,197,94,.95);
}

.linha-servicos{
  font-size:.88rem;
  color:rgba(209,213,219,.95);
}

.linha-rodape{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:2px;
}

.rodape-esquerda{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.chip-pagamento{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.74rem;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.20);
  background:rgba(2,6,23,.55);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:950;
  white-space:nowrap;
}

.chip-pagamento::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:currentColor;
  display:inline-block;
}

.pag-pix{
  color:rgba(34,197,94,.95);
  border-color:rgba(34,197,94,.32);
  background:rgba(34,197,94,.12);
}

.pag-cartao{
  color:rgba(56,189,248,.95);
  border-color:rgba(56,189,248,.32);
  background:rgba(56,189,248,.12);
}

.pag-dinheiro{
  color:rgba(245,158,11,.95);
  border-color:rgba(245,158,11,.32);
  background:rgba(245,158,11,.12);
}

.pag-pendente{
  color:rgba(239,68,68,.95);
  border-color:rgba(239,68,68,.32);
  background:rgba(239,68,68,.12);
}

.pag-desconhecido{
  color:rgba(148,163,184,.95);
  border-color:rgba(148,163,184,.24);
  background:rgba(148,163,184,.10);
}

/* =========================================================
   12) VENDA DE PRODUTOS
========================================================= */
.produto-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}

.produto-card{
  background:rgba(2,6,23,.55);
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  padding:14px;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  position:relative;
  overflow:hidden;
}

.produto-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(56,189,248,.12), transparent 55%);
  pointer-events:none;
  opacity:.9;
}

.produto-card > *{
  position:relative;
  z-index:1;
}

.kpi-card{
  grid-column:span 4;
}

.span-6{
  grid-column:span 6;
}

.span-12{
  grid-column:span 12;
}

.produto-kpi-titulo{
  color:var(--muted);
  font-weight:900;
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.produto-kpi-valor{
  margin-top:8px;
  font-size:1.35rem;
  font-weight:950;
  letter-spacing:-.02em;
}

.produto-kpi-sub{
  margin-top:6px;
  font-size:.82rem;
  color:rgba(148,163,184,.95);
}

.form-produto{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:6px;
}

.list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:8px;
}

.item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.14);
  background:rgba(15,23,42,.70);
  box-shadow:0 10px 22px rgba(0,0,0,.25);
  flex-wrap:wrap;
}

.item .left{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:220px;
}

.item .name{
  font-weight:950;
  font-size:1rem;
}

.item .meta{
  color:rgba(148,163,184,.9);
  font-size:.86rem;
}

.item .right{
  display:flex;
  align-items:center;
  gap:10px;
}

.price{
  font-weight:950;
  color:rgba(34,197,94,.95);
  font-size:1rem;
}

/* =========================================================
   13) DASHBOARDS
========================================================= */
.dashboard-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
  margin-top:16px;
}

.dashboard-bloco{
  margin-top:16px;
  padding:12px;
  border-radius:18px;
  background:rgba(2,6,23,.55);
  border:1px solid rgba(148,163,184,.18);
}

.dashboard-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;
}

.dashboard-header h2{
  font-size:1rem;
}

.dashboard-header span{
  color:var(--muted);
  font-size:.8rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.chart-wrap{
  height:320px;
}

.chart-wrap.small{
  height:280px;
}

canvas{
  width:100% !important;
  height:100% !important;
}

.grafico{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.barra{
  display:flex;
  justify-content:space-between;
  padding:10px;
  border-radius:12px;
  background:rgba(15,23,42,.7);
  border:1px solid rgba(148,163,184,.14);
}

/* =========================================================
   14) TABELAS
========================================================= */
.table-wrap{
  overflow:auto;
}

.dash-table{
  width:100%;
  border-collapse:collapse;
  border-radius:14px;
  overflow:hidden;
}

.dash-table thead th{
  text-align:left;
  font-size:.78rem;
  color:var(--muted);
  padding:10px;
  border-bottom:1px solid rgba(148,163,184,.18);
  text-transform:uppercase;
  letter-spacing:.06em;
}

.dash-table tbody td{
  padding:10px;
  border-bottom:1px solid rgba(148,163,184,.10);
  font-size:.9rem;
  vertical-align:top;
}

.heatmap-table .heat-cell{
  font-size:.8rem;
  text-align:center;
}

/* =========================================================
   15) RESPONSIVO
========================================================= */
@media (max-width:980px){
  .page{
    grid-template-columns:1fr;
  }

  .sidebar{
    position:relative;
    top:0;
  }

  .resumo-grid,
  .resumo-grid-3{
    grid-template-columns:1fr;
  }

  .card-agendamento{
    grid-template-columns:80px minmax(0,1fr);
  }

  .kpi-card,
  .span-6,
  .span-12{
    grid-column:span 12;
  }

  .chart-wrap{
    height:300px;
  }
}

@media (max-width:520px){
  .row > div{
    min-width:100%;
  }

  .dia-resumo{
    white-space:normal;
  }

  .card-agendamento{
    grid-template-columns:1fr;
  }

  .col-hora{
    border-right:none;
    border-bottom:1px dashed rgba(148,163,184,.22);
    padding-right:0;
    padding-bottom:10px;
  }
}
.acoes-agendamento{
  display:inline-flex;
  gap:8px;
  flex-wrap:wrap;
}

.btn-icon{
  margin-top:0;
  border-radius:999px;
  padding:6px 10px;
  border:1px solid rgba(148,163,184,.24);
  background:rgba(2,6,23,.65);
  color:var(--text);
  font-size:.78rem;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:.16s ease;
  font-weight:900;
  text-transform:none;
  letter-spacing:.02em;
  box-shadow:none;
}

.btn-icon:hover{
  border-color:rgba(56,189,248,.55);
  transform:translateY(-1px);
  filter:none;
}

.btn-icon--danger{
  border-color:rgba(239,68,68,.45);
  color:rgba(254,202,202,.95);
}

.btn-icon--danger:hover{
  background:rgba(127,29,29,.55);
  border-color:rgba(239,68,68,.65);
}
.btn-pay {
  border-color: rgba(34,197,94,.28);
}

.btn-pay:hover {
  background: rgba(21,128,61,.35);
  border-color: rgba(34,197,94,.55);
}

.btn-icon--edit{
  border-color:rgba(56,189,248,.35);
  color:rgba(186,230,253,.95);
}

.btn-icon--edit:hover{
  background:rgba(3,105,161,.45);
  border-color:rgba(56,189,248,.65);
}

.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:50;
  backdrop-filter:blur(2px);
  padding:16px;
}

.modal-backdrop.aberto{
  display:flex;
}

.modal{
  background:rgba(2,6,23,.95);
  border-radius:20px;
  padding:16px 16px 14px;
  max-width:420px;
  width:100%;
  border:1px solid rgba(148,163,184,.22);
  box-shadow:0 20px 50px rgba(0,0,0,.80);
}

.modal h2{
  font-size:1.05rem;
  margin-bottom:10px;
}

.modal form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.modal label{
  font-size:.75rem;
  color:var(--muted);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:6px;
  display:block;
}

.modal input,
.modal select{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(55,65,81,.9);
  background:rgba(2,6,23,.75);
  color:var(--text);
  font-size:.95rem;
  outline:none;
  transition:.18s ease;
}

.modal input:focus,
.modal select:focus{
  border-color:rgba(56,189,248,.7);
  box-shadow:0 0 0 2px rgba(56,189,248,.15);
  transform:translateY(-1px);
}

.modal-acoes{
  display:flex;
  justify-content:flex-end;
  gap:8px;
  margin-top:10px;
  flex-wrap:wrap;
}

.btn-modal-secundario,
.btn-modal-primario{
  border-radius:999px;
  padding:10px 12px;
  font-size:.9rem;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:950;
  transition:.16s ease;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.btn-modal-secundario{
  background:rgba(2,6,23,.75);
  color:var(--text);
  border:1px solid rgba(55,65,81,.9);
  text-transform:none;
  letter-spacing:.02em;
  box-shadow:none;
  margin-top:0;
}

.btn-modal-secundario:hover{
  border-color:rgba(56,189,248,.55);
  transform:translateY(-1px);
  filter:none;
}

.btn-modal-primario{
  background:linear-gradient(120deg,rgba(34,197,94,.95),rgba(14,165,233,.95));
  color:#020617;
  box-shadow:0 14px 30px rgba(34,197,94,.18);
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-top:0;
}

.btn-modal-primario:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}