@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
  /* background-color: #F4F5F9; */
  font-family: "Poppins", sans-serif;
  color: #333;
  margin: 0;
}



.corpo-centralizado {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}




.form-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 600;
}

.custom-input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  transition: .2s;
  font-family: "Poppins", sans-serif;
}

.custom-input:focus {
  border-color: #66afe9;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
  outline: none;
}









.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 20px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary:active {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #204d74;
}

.btn-warning {
  color: #fff;
  background-color: #ff9800;
  border-color: #e78b00;
}

.btn-warning:hover {
  color: #fff;
  background-color: #e78b00;
  border-color: rgb(179, 111, 16)
}

.btn-warning:active {
  color: #fff;
  background-color: #e78b00;
  background-image: none;
  border-color: rgb(180, 114, 22);
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}

.btn-cancelar {
  color: #fff;
  background-color: #898989;
  border-color: #797979;
}

.btn-cancelar:hover {
  color: #fff;
  background-color: #909090;
  border-color: #797979;
}

.btn-cancelar:active {
  color: #fff;
  background-color: #8c8a8a;
  background-image: none;
  border-color: #8c8a8a;
}

.btn-right {
  float: right;
}


.btn-light {
  background: #fff;
  color: #333;
  border: 1px solid #d1d5db;
}




.btn-small {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-margin-left {
  margin-left: 10px;
}


.btn-min-w-70 {
  min-width: 70px;
}



.span-separador {
  position: absolute;
  top: 90px;
  margin-bottom: 50px;
  width: 70%;
  height: 4px;
  background-color: #dfdfdf;
  right: 25px;
  border-radius: 2px;
}



.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.5rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.custom-select-wrapper::after {
  content: "▼";
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #dddddd;
  pointer-events: none;
}

.custom-select:hover {
  border-color: #86b7fe;
}

.custom-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
}

.custom-select:disabled {
  background-color: #e9ecef;
  opacity: 0.75;
  cursor: auto;
  border-color: #adb5bd;
}





.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: .375rem .75rem;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}


.input-group>.form-control,
.input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 1px solid #ccc;

  font-size: 13px;
  transition: .2s;
  font-family: "Poppins", sans-serif;

  border-top-left-radius: 0px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 0px;

}

.form-control:focus {
  border-color: #66afe9;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
  outline: none;
}

.controle-texto {
  position: relative;
  top: 5px;
  left: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #333;
}




.table-padrao {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 11px;
  cursor: default;
}

.table-padrao th,
td {
  padding: 9px 2px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}

.table-padrao th {
  font-weight: 500;
  color: #6b7280;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.table-padrao tbody tr:nth-child(even) {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  background-color: #f9f9f9;
}

.table-padrao tbody tr:last-child td {
  border-bottom: none;
}



/* TH não muda nunca (nem hover nele, nem hover na linha) */
.table-padrao thead th,
.table-padrao thead th:hover,
.table-padrao thead tr:hover th {
  background: transparent !important;
}

/* Hover apenas no tbody (linhas de dados) */
.table-padrao tbody tr:hover {
  background: #f3faff;
}

/* mantém o hover do tbody mesmo em linhas pares */
.table-padrao tbody tr:nth-child(even):hover {
  background: #f3faff;
}










.hr-label {
  position: relative;
  margin: 18px 0;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.hr-label::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, #cbd5e1, transparent);
  transform: translateY(-50%);
}

.hr-label span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}