.box-input {
  margin-bottom: 0;
  padding: 0 !important;
  max-height: auto;
  overflow: hidden;
}
.box-input:has(input:disabled) {
  background-color: #efefef;
  border: 1px solid #efefef;
}
.box-input:has(input:disabled) label,
.box-input.light label {
  background-color: transparent;
  padding: 0 5px;
  margin-left: 5px;
  width: auto;
}
.box-input label {
  font-size: 12px;
  color: #666;
  background-color: #fff;
  padding: 0 5px;
  z-index: 2;
  position: relative;
  height: 17px;
  max-width: calc(100% - 20px);
  line-height: 17px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-top: 0;
  top: 0 !important;
  display: table;
  clear: both;
}
.box-input input,
.box-input select {
  width: 100%;
  border: 1px solid #D1D5DB;
  padding: 8px 10px 6px 10px;
  background: #fff;
  color: #000 !important;
  z-index: 1;
  line-height: 40px;
  height: 40px;
  margin: -10px 0 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.box-input input:focus,
.box-input select:focus {
  background: transparent !important;
}
.box-input input.valido:after,
.box-input select.valido:after {
  width: 30px;
  height: 30px;
  background: #0066cc;
  content: "11111";
  position: absolute;
  right: 0px;
}
.box-input input.invalido:after,
.box-input select.invalido:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f007";
  position: absolute;
  left: 0;
  top: 5px;
}
.box-input input.sem-icone:after,
.box-input select.sem-icone:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
.box-input input[type="checkbox"] {
  width: 15px !important;
  height: 15px !important;
  padding: 0;
  background: #fff;
  color: #000 !important;
  margin: 13px 0 0 10px !important;
  top: 0;
  line-height: 40px;
}
.box-input input[type="file"] {
  width: 100%;
  line-height: 20px;
  height: 40px;
  margin: -10px 0 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.box-input textarea {
  width: 100%;
  height: 120px;
  padding: 15px 10px 10px 10px;
  color: #000 !important;
  z-index: 1;
  margin: -10px 0 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #D1D5DB;
  line-height: 140%;
}
.box-input textarea:focus {
  background: transparent !important;
}
.box-input textarea.big {
  height: 200px;
}
.box-input .caixa {
  overflow: hidden;
  border: 0;
  font-size: 14px;
  height: 40px;
  margin: -10px 0 0 0;
  border: 1px solid #D1D5DB;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.box-input .caixa .line {
  border-bottom: 1px solid #ccc;
  padding: 6px 0;
}
.box-input .caixa .line:first-child {
  margin-top: -8px;
}
.box-input .caixa .line:last-child {
  border: 0;
}
.box-input .dropdown-select {
  width: 100%;
  border: 0;
  padding: 6px 10px;
  background: transparent !important;
  cursor: pointer;
  position: relative;
}
.box-input .dropdown-select:focus {
  background: transparent !important;
}
.box-input .dropdown-select .clear-dropdown {
  position: absolute;
  right: 0px;
  top: 5px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #ff0000;
  display: none;
}
.box-input .dropdown-select .list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
  z-index: 999;
  max-height: 250px;
  overflow-y: auto;
}
.box-input .dropdown-select ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.box-input .dropdown-select.open .list {
  display: block;
}
.box-input .dropdown-select .option {
  padding: 10px 18px;
  cursor: pointer;
}
.box-input .dropdown-select .option:hover {
  background-color: #f5f5f5;
}
.box-input .dropdown-select .dd-search {
  padding: 10px;
}
.box-input .dropdown-select .dd-search .dd-searchbox {
  width: 100%;
  padding: 8px;
  border: 1px solid #999;
  border-radius: 4px;
  outline: none;
}
.box-input .dropdown-select .dd-search .dd-searchbox:focus {
  border-color: #ccc;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ccc;
  opacity: 1;
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}
/* Layout auxiliar */
.area {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .area {
    padding-top: 20px;
  }
}
.area::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  max-width: 1500px;
  height: 642px;
  background: rgba(0, 85, 255, 0.08);
  margin: 0 auto;
  z-index: -1;
  border-radius: 20px;
  overflow: hidden;
}
.area .palco {
  margin-top: 40px;
  padding: 60px;
  padding-top: 50px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
}
@media screen and (max-width: 768px) {
  .area .palco {
    padding: 20px;
    margin-top: 20px;
  }
}
:root {
  --primary-1: #F44336;
  --primary-2: #1E88E5;
  --primary-3: #FDD835;
  --border: #CDD9ED;
  --border-hover: #99A3BA;
  --text-color: #6C7486;
  --text-color-headline: #3F4656;
  --shadow: rgba(22, 30, 50, 0.04);
}
.form-field {
  --color: var(--primary-1);
  outline: none;
  display: block;
  width: 100%;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 6px;
  transition: border 0.3s ease;
}
.form-field::placeholder {
  color: var(--border-hover);
}
.form-field:focus {
  outline: none;
  border-color: var(--color);
}
.form-element {
  margin-bottom: 20px;
}
.form-element label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--text-color-headline);
  font-weight: 500;
}
.iconList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.iconList li {
  --color: var(--primary-1);
  margin: 0 0 20px 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
}
.iconList li:last-child {
  margin-bottom: 0;
}
.iconList li a {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}
.iconList li a .icon {
  width: 44px;
  height: 44px;
  position: relative;
  margin-right: 12px;
}
.iconList li a .icon:before {
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  border-radius: 50%;
  display: block;
  background: var(--color);
  opacity: 0.1;
}
.iconList li a .icon svg {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  fill: var(--color);
  transform: translate(-50%, -50%);
}
.iconList li a .text {
  color: var(--text-color-headline);
  font-weight: 600;
  font-size: 14px;
}
.iconList li a .text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
  color: var(--text-color);
}
.iconList li a > svg {
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  fill: var(--border-hover);
}
.iconList li a:hover > svg {
  transform: translateY(-50%) translateX(2px);
}
.radioGroup {
  --color: var(--primary-1);
  --border-width: 2px;
  display: flex;
  font-size: 14px;
  line-height: 100%;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .radioGroup {
    font-size: 12px;
  }
}
.radioGroup label {
  cursor: pointer;
}
.radioGroup label input {
  display: none;
}
.radioGroup label input + span {
  display: block;
  position: relative;
  padding: 4px 10px;
  border: var(--border-width) solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .radioGroup label input + span {
    padding: 6px 8px;
  }
}
.radioGroup label input:checked + span {
  z-index: 2;
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
.radioGroup label:hover input + span {
  z-index: 1;
  border-color: var(--color);
}
.radioGroup label:first-child input + span {
  border-radius: 6px 0 0 6px;
}
.radioGroup label:last-child input + span {
  border-radius: 0 6px 6px 0;
}
.radioGroup label:not(:first-child) {
  margin-left: calc(var(--border-width) * -1);
}
.checkbox,
.radio,
.switch {
  --color: var(--primary-1);
  --border-hover: var(--primary-1);
  --border-width: 2px;
  margin: 0 0 12px 0;
  display: table;
  cursor: pointer;
}
.checkbox.inline,
.radio.inline,
.switch.inline {
  margin: 0 12px 0 0;
  display: inline-block;
}
.checkbox input,
.radio input,
.switch input {
  display: none;
}
.checkbox input + span,
.radio input + span,
.switch input + span {
  color: var(--text-color);
  height: 22px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: block;
}
.checkbox input + span:before,
.radio input + span:before,
.switch input + span:before,
.checkbox input + span:after,
.radio input + span:after,
.switch input + span:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  position: absolute;
}
.checkbox input + span:before,
.radio input + span:before,
.switch input + span:before {
  height: 22px;
  border: var(--border-width) solid var(--border);
  background: #fff;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.checkbox input + span:after,
.radio input + span:after,
.switch input + span:after {
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
}
.checkbox input:checked + span:before,
.radio input:checked + span:before,
.switch input:checked + span:before {
  background: var(--color);
  border-color: var(--color);
}
.checkbox input:checked + span:after,
.radio input:checked + span:after,
.switch input:checked + span:after {
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2);
}
.checkbox:hover input:not(:checked) + span:before,
.radio:hover input:not(:checked) + span:before,
.switch:hover input:not(:checked) + span:before {
  border-color: var(--border-hover);
}
.checkbox input + span,
.radio input + span {
  padding-left: 22px;
}
.checkbox input + span:not(:empty),
.radio input + span:not(:empty) {
  padding-left: 30px;
}
.checkbox input + span:before,
.radio input + span:before {
  width: 22px;
}
.checkbox input + span:after,
.radio input + span:after {
  opacity: 0;
}
.checkbox input:checked + span:after,
.radio input:checked + span:after {
  opacity: 1;
}
.radio input + span:before,
.radio input + span:after {
  border-radius: 50%;
}
.radio input + span:after {
  width: 22px;
  height: 22px;
  background: #fff;
  opacity: 0;
  transform: scale(0.6);
}
.radio input:checked + span:after {
  background: #fff;
  transform: scale(0.4);
}
.switch input + span {
  padding-left: 38px;
}
.switch input + span:not(:empty) {
  padding-left: 46px;
}
.switch input + span:before {
  width: 38px;
  border-radius: 11px;
}
.switch input + span:after {
  left: 4px;
  top: 4px;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background: var(--border);
}
.switch input:checked + span:after {
  background: #fff;
  transform: translateX(16px) scale(0.9);
}
.switch:hover input:not(:checked) + span:after {
  background: var(--border-hover);
}
.footer-vaga {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3F4656;
  color: #fff;
  padding: 10px 0;
}
.footer-vaga * {
  color: #fff;
}
.notif-dropdown {
  position: relative;
}
.notif-btn {
  position: relative;
  color: #111827;
  padding: 0;
}
.notif-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  font-size: 10px;
}
.notif-menu {
  width: 320px;
  max-height: 380px;
  overflow-y: auto;
  padding: 0;
}
.notif-menu .notif-header {
  padding: 8px 12px;
  border-bottom: 1px solid #e5e7eb;
}
.notif-item {
  border-bottom: 1px solid #eee;
}
.notif-item:last-child {
  border-bottom: 0;
}
.notif-unread {
  background: #f3f4f6;
}
.notif-desc {
  font-size: 13px;
  color: #6b7280;
}
.notif-time {
  font-size: 11px;
  color: #6b7280;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-size: 60%;
  line-height: 60%;
}
.home-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-search-example {
  font-size: 13px;
  color: #6b7280;
}
.home-search-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}
.home-search-input {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}
.home-search-input .form-control {
  height: 48px;
  border: 1px solid #c7cbd1;
  border-radius: 6px;
  padding-left: 42px;
}
.home-search-input .form-control:focus {
  border-color: #e5007d;
  box-shadow: none;
}
.home-search-input i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 16px;
}
.home-search .home-search-btn {
  height: 48px;
  border-radius: 6px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.home-search .home-search-btn i {
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .home-search-row {
    flex-wrap: wrap;
  }
  .home-search-input {
    min-width: 100%;
  }
  .home-search .home-search-btn {
    width: 100%;
  }
}
