/* =====================
   SALARIO NETO — ESTILOS ESPECÍFICOS
   ===================== */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.neto-mensual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  background: var(--accent-light);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.neto-mensual span:nth-child(2) {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
}

/* Barra de distribución */
.neto-barra {
  margin-top: 20px;
}

.barra-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.barra-wrap {
  display: flex;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--border);
}

.barra-seg {
  height: 100%;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}

.barra-neto   { background: #2d6a4f; }
.barra-reta   { background: #c8a96e; }
.barra-irpf   { background: #e8445a; }
.barra-gastos { background: #7ec8e3; }

.barra-legend {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.barra-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-neto   { background: #2d6a4f; }
.dot-reta   { background: #c8a96e; }
.dot-irpf   { background: #e8445a; }
.dot-gastos { background: #7ec8e3; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}