* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}

/* ====== UTIL ====== */
html body.width-layout {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 50px !important;
}

@media (max-width: 500px) {
  html body.width-layout {
    padding: 10px !important;
  }

}

.form-check-input {
  width: 1.6em;
  height: 1.55em;
  margin-right: 7px;
}

.text-main-color {
  color: rgba(38, 60, 98, 1) !important;
}

.padding-main {
  padding: 30px !important;
}

.padding-inline-main {
  padding-inline: 24px !important;
}

.body-base-width {
  max-width: 1440px;
  margin: 0 auto;
}

.width-layout {
  max-width: 1440px;
  margin: 0 auto;
}

.page-first-title {
  font-size: 20px !important;
  font-weight: 700 !important;
}

.back-link {
  font-size: 1.1rem;
  color: inherit;
  text-decoration: none;
}

.list-page-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-page-header .header-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.list-page-header .header-title-row h3 {
  margin: 0;
  font-size: 1.5rem;
}

.list-page-header .header-actions {
  margin-left: auto;
}

.list-page-header .header-actions a,
.list-page-header .header-actions button {
  white-space: nowrap;
}

.btn {
  margin: 0;
}

.btn-primary,
.btn-primary[type="button"],
.btn-primary[type="reset"],
.btn-primary[type="submit"] {
  background-color: var(--bs-primary);
}

.btn-secondary,
.btn-secondary[type="button"],
.btn-secondary[type="reset"],
.btn-secondary[type="submit"] {
  background-color: var(--bs-secondary);
}

.btn-success,
.btn-success[type="button"],
.btn-success[type="reset"],
.btn-success[type="submit"] {
  background-color: var(--bs-success);
}

.btn-info,
.btn-info[type="button"],
.btn-info[type="reset"],
.btn-info[type="submit"] {
  background-color: var(--bs-info);
}

.btn-warning,
.btn-warning[type="button"],
.btn-warning[type="reset"],
.btn-warning[type="submit"] {
  background-color: var(--bs-warning);
}

.btn-danger,
.btn-danger[type="button"],
.btn-danger[type="reset"],
.btn-danger[type="submit"] {
  background-color: var(--bs-danger);
}

/* Profile modal (logged pages) */
.modal,
.profile-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #344767a6 !important;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
  overflow-y: auto;
  min-height: 100vh;
  padding: 8px;
}

.profile-modal {
  background: #fff;
  width: 80vw;
  max-width: 1100px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto;
}

.profile-modal-left {
  padding-right: 16px;
}

.profile-modal-info {
  background: linear-gradient(180deg, #f5f7fb 0%, #edf2ff 100%);
  padding: 16px;
  height: 100%;
  min-height: 100%;
}

.profile-section.full-width {
  width: 100%;
}

.profile-modal-info-inner {
  padding: 8px;
}

.profile-modal-header h4 {
  margin-bottom: 4px;
}



.header-menu-mobile {
  display: none;
}

@media (max-width: 768px) {
  .profile-modal {
    padding: 12px !important;
    width: 95vw;
    max-height: 92vh;
  }

  .header-menu-mobile {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
  }
}

.header-user-info {
  gap: .35rem;
  margin-top: -18px;
}

.header-user-info:hover {
  font-weight: 600;
}

.profile-modal-body .iti,
.profile-modal-body .iti input {
  width: 100%;
}

.profile-options-single .col-12,
.profile-options-single .col-md-6 {
  width: 100%;
  flex: 0 0 100%;
}

.profile-modal select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #344767 50%), linear-gradient(135deg, #344767 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

@media (max-width: 768px) {
  .login-register-field {
    flex: 0 0 100%;
    width: 100%;
  }
}

.profile-modal-body h6 {
  color: #8392AB;
  text-transform: uppercase;
  margin: 2rem 0 0.5rem 0;
}

.profile-modal .profile-section .form-label {
  display: block;
  min-height: 18px;
}

/* Garante clique nos checkboxes das informações complementares */
.profile-options-row .form-check,
.profile-options-row .form-check-input,
.profile-options-row .form-check-label {
  pointer-events: auto !important;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}

.profile-options-row .form-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 16px 8px 0;
}

.profile-options-row .form-check-input {
  margin-top: 0;
}

.profile-options-row .form-check-label {
  line-height: 1.2;
}

.profile-options-row .form-check-input {
  position: relative;
}

.profile-options-row .form-check-label {
  user-select: none;
}

.profile-options-container {
  position: relative;
  z-index: 10000;
}

/* Garantir que o Swal apareça acima do modal */
.swal2-container {
  z-index: 50000 !important;
}

/* Form layout reused in profile modal */
.wrapper-register-inputs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.login-register-field {
  flex: 1 0 0%;
}

.wrapper-register-inputs.phone-row .login-register-field {
  flex: 1 0 50%;
  min-width: 240px;
}

.wrapper-register-inputs.phone-row .iti {
  width: 100%;
}



.iti--allow-dropdown {
  width: 100%;
}


.cpf-field {
  flex: 0 0 35%;
  min-width: 200px;
  max-width: 300px;
}

.w-35 {
  flex: 0 0 35% !important;
}

.profile-section .wrapper-register-inputs.phone-row {
  display: flex !important;
}

.profile-section .wrapper-register-inputs.phone-row .login-register-field {
  flex: 1 0 48%;
}

@media (max-width: 768px) {
  .login-register-field {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.login-register-field.field-area_setor {
  max-width: 370px;
}

.login-register-field.field-cargo {
  max-width: 350px;
}

.btn.bg-gradient-info {
  background-image: linear-gradient(#439DEE 0%, #1E78E9 100%) !important;
}

body.loading .loading-area {
  padding: 10px;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white center center;
}

body.loading .loading-area {
  z-index: 1000;
  display: none;
  position: fixed;
}

body.loading .loading-area {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin:auto;background:none;display:block;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Ccircle cx='6.451612903225806' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-0.5s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='0s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-0.5s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='6.451612903225806' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-1.5s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-0.5s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='16.129032258064512' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-0.7s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-0.2s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-0.7s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='16.129032258064512' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-1.7s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1.2s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-0.7s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='25.806451612903224' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-0.9s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-0.4s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-0.9s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='25.806451612903224' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-1.9s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1.4s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-0.9s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='35.48387096774193' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-1.1s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-0.6s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-1.1s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='35.48387096774193' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-2.1s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1.6s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-1.1s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='45.16129032258064' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-1.3s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-0.8s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-1.3s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='45.16129032258064' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-2.3s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1.8s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-1.3s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='54.838709677419345' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-1.5s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-1.5s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='54.838709677419345' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-2.5s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-2s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-1.5s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='64.51612903225805' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-1.7s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1.2s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-1.7s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='64.51612903225805' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-2.7s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-2.2s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-1.7s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='74.19354838709677' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-1.9s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1.4s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-1.9s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='74.19354838709677' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-2.9s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-2.4s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-1.9s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='83.87096774193547' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-2.1s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1.6s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-2.1s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='83.87096774193547' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-3.1s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-2.6s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-2.1s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='93.54838709677418' cy='50' r='3' fill='%23801994'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-2.3s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-1.8s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23801994;%23fbacc9;%23801994' dur='2s' repeatCount='indefinite' begin='-2.3s'%3E%3C/animate%3E%3C/circle%3E%3Ccircle cx='93.54838709677418' cy='50' r='3' fill='%23a2f0fb'%3E%3Canimate attributeName='r' times='0;0.5;1' values='2.4000000000000004;3.5999999999999996;2.4000000000000004' dur='2s' repeatCount='indefinite' begin='-3.3s'%3E%3C/animate%3E%3Canimate attributeName='cy' keyTimes='0;0.5;1' values='32;68;32' dur='2s' repeatCount='indefinite' begin='-2.8s' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' calcMode='spline'%3E%3C/animate%3E%3Canimate attributeName='fill' keyTimes='0;0.5;1' values='%23a2f0fb;%231a16a3;%23a2f0fb' dur='2s' repeatCount='indefinite' begin='-2.3s'%3E%3C/animate%3E%3C/circle%3E%3C/svg%3E");
}

body.loading {
  overflow: hidden;
}

body.loading .loading-area {
  display: block;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.body-base-layout {
  padding: 45px !important;
  padding-block: 24px !important;
}


.button-main {
  margin-left: 0;
  padding: 13px 30px 13px 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  border: none;
  font-weight: 700;
}

.main-padding {
  padding: 24px;
  padding-top: 24px;
}

.button-primary {
  color: white;
  background-color: #E93B77;
}

.button-secondary {
  color: white;
  background: linear-gradient(to right, #FF667C, #EA0606);
}

.button-tertiary {
  color: white;
  background: linear-gradient(to right, #21D4FD, #2152FF);
}

.button-quaternary {
  color: #1A73E7;
  background-color: white;
  border: 1px solid #1A73E7;
}

.button-quinary {
  color: white;
  background: linear-gradient(to right, #FBCF33, #F53939);
}

.button-senary {
  color: white;
  background: linear-gradient(to right, #FF0080, #7928CA);
}

@media (max-width: 1199px) {
  .body-base-layout {
    padding: 0px !important;
  }
}

/*----------- ESTILO PRINCIPAL DA DIV E DO CONTEÚDO DO COMPONENTE -----------*/

.background-component-main {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  width: 100%;
}

.component-body-main {
  padding-top: 24px !important;
}

.subtitle-size {
  font-size: 12px !important;
  color: #67748e !important;
  font-weight: 400;
}

.title-size {
  font-size: 20px !important;
  font-weight: 700;
  font-family: 'open sans', sans-serif;
  color: #263C62 !important;
}

@media (max-width: 767px) {
  .component-body-main {
    padding: 12px !important;
  }
}

@media (min-width: 1201px) {
  .default__class__container__desktop__layout {
    max-width: calc(100% - 300px) !important;
  }
}

#register-report {
  background-color: #c7c7c7;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#register-report:hover {
  background-color: #E93B77;
  transform: scale(1.05);
}


/* Dropdown de responsáveis na tabela de parceiros */
.form-select {
  -webkit-appearance: none !important;
  /* Safari/Chrome */
  -moz-appearance: none !important;
  /* Firefox */
  appearance: none !important;
  /* Padrão */
  padding-right: 2rem;
  /* espaço para a seta do Bootstrap */
  background-repeat: no-repeat;
  background-position: right .75rem center;
  /* posição da seta do Bootstrap */
  background-size: 16px 12px;
}

/* Em navegadores antigos da família IE/Edge (se ainda impactarem) */
.form-select::-ms-expand {
  display: none;
}


.swal2-title * {
  font-size: 0.9em !important;
}

.swal2-html-container {
  font-size: 1.2em !important;
}

.swal2-popup {
  width: 50em;
}

.swal2-confirm {
  min-width: 100px;
}

.tox-statusbar__branding {
  display: none !important;
}

.badge.bg-success {
  background: #6fa825 !important;
}


.bg-warning {
  background-color: #f8e8ab !important;
  color: #665c00 !important;
  font-size: 0.9rem;
}

.badge-warning {
  background-color: #f8e8ab !important;
  color: #665c00 !important;
  font-size: 0.6rem;
  padding: 0.2rem 1rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

.alert-warning {
  background-image: linear-gradient(310deg, #f5393942 0%, #fac60b66 100%) !important;
}

.alert-danger {
  color: var(--bs-alert-color);
  background-image: linear-gradient(310deg, #ea060629 0%, #ff3d5908 100%);
  border: none;
}

.alert-info {
  background-image: linear-gradient(310deg, #c1caec 0%, #fff 100%);
}

.alert-success {
  background-image: linear-gradient(310deg, #17ad377a 0%, #84dc1429 100%);
}

/* ----\/---- ESTILO PADRÃO DAS TABELAS ----\/----  */

.table {
  border-collapse: inherit !important;
  border-spacing: 2px !important;
}

.container__forms__and__questionnaries__manager table.table thead tr th:not(:last-child),
.container__forms__and__questionnaries__manager table.table tbody tr td:not(:last-child) {
  min-width: 200px;
  max-width: 280px;
}

table.table thead tr th,
table.table tbody tr td {
  padding: 8px !important;
  opacity: 1 !important;
  height: 48px !important;
  min-height: 48px !important;
  vertical-align: middle;
}

table.table thead tr th a {
  align-content: center;
}

table.table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075) !important;
}

table.table tbody tr td:last-child:not(.row-actions-cell) a:not(.disabled) i,
table.table tbody tr td:last-child:not(.row-actions-cell) button:not(.disabled) i,
table.table tbody tr td:last-child:not(.row-actions-cell) button:not(.disabled) a i {
  transition: transform 0.10s ease-out !important;
}

table.table tbody tr td:last-child:not(.row-actions-cell) a:hover:not(.disabled) i,
table.table tbody tr td:last-child:not(.row-actions-cell) button:hover:not(.disabled) i,
table.table tbody tr td:last-child:not(.row-actions-cell) button:hover:not(.disabled) a i {
  color: #3b69de !important;
  transform: scale(1.35) !important;
  transition: transform 0.10s ease-in !important;
}

table.table thead tr th {
  background-color: #e9ecef !important;
  text-transform: uppercase !important;
  white-space: wrap !important;
  vertical-align: middle;
  text-align: center;
}

table.table thead tr th,
table.table thead tr th * {
  font-size: 12px !important;
  font-weight: 600 !important;
}

table.table tbody tr td {
  white-space: wrap !important;
}

table.table tbody tr td:last-child:not(.row-actions-cell) {
  text-align: center;
}

table.table tbody tr td,
table.table tbody tr td:not(:last-child) * {
  font-size: 12px;
  font-weight: 400;
}

table.table thead tr th,
table.table thead tr th *,
table.table tbody tr td:not(:last-child),
table.table tbody tr td:not(:last-child) * {
  color: #263C62;
}

/* ----/\---- ESTILO PADRÃO DAS TABELAS ----/\----  */

thead,
tbody,
tfoot,
tr,
td,
th {
  border-style: none;
}

table thead tr th {
  border-radius: 0 !important;
}

.form-check-inline {
  text-wrap-mode: nowrap;
}

.text-muted {
  font-size: 12px;
  font-weight: 400;
}

/* #-------- ESTILO ELEMENTO PILL ---- >> NÃO PODE EXCLUIR << --------#*/
/* 

CLASSE OBRIGATORIA BARRA NAV PILLS PARA MANTER ESTILO PADRAO DO ELEMENTO PILL 

--> Essa classe default__element__nav__pills tem que ir no elemento pai da ul 
--> Essa classe element__nav__pills__list tem que ir no elemento ul 

*/

.default__element__nav__pills .element__nav__pills__list {
  padding: 0.5rem 1rem !important;
  border-radius: 0 !important;
  gap: 0.5rem !important;
}

.default__element__nav__pills .element__nav__pills__list li.nav-item .nav-link {
  color: #1f396a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px !important;
  letter-spacing: 0.05em;
  padding: 5px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0.5rem;
  line-height: 1.5 !important;
}

.nav.nav-pills .nav-link {
  background: none;
}

#menu-search {
  background-color: #ffffff52 !important;
}

.nav.nav-pills .nav-link.active,
.default__element__nav__pills .element__nav__pills__list li.nav-item .nav-link.active {
  background: #1f396a;
  color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(31, 57, 106, 0.2);
}

.default__element__nav__pills .element__nav__pills__list li.nav-item:hover .nav-link:not(.active) {
  background: rgba(31, 57, 106, 0.1);
}

/* #-------- ESTILO ELEMENTO PILL --------#*/

.swal2-container.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.85) !important;
}

.swal2-container {
  z-index: 50000 !important;
}

/* Garantir backdrop escuro consistente nos modais */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.7) !important;
}

.modal-backdrop.show {
  opacity: 0.7 !important;
}

/* Evitar setas duplicadas em selects (modal de perfil e similares) */
#profileModal select.form-select,
#userStatusModal select.form-select,
.profile-form select.form-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23365272' d='M3.204 5h9.592L8 10.481z'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 12px !important;
  padding-right: 2.5rem !important;
  background-color: #fff;
}

#profileModal select.form-select::-ms-expand,
#userStatusModal select.form-select::-ms-expand,
.profile-form select.form-select::-ms-expand {
  display: none;
}


#nav-filters .nav-item.active a {
  font-weight: 600 !important;
  background-color: #1f396a;
  color: #fff !important;
}

.menu-icon-picker {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.menu-icon-picker .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  padding: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 40px;
  border-color: #d2d6da;
}

.menu-icon-picker .form-control {
  flex: 1 1 auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 40px;

}

.report-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.report-step-icon__symbol {
  width: 17px;
  height: 17px;
  font-size: 17px;
  line-height: 1;
}



.profile-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 38, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
}

.profile-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 1080px;
  width: 90%;
  padding: 16px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.profile-modal-header h4 {
  margin-bottom: 4px;
}

.profile-modal-footer {
  margin-top: 0;
}

.profile-options-single .col-12,
.profile-options-single .col-md-6 {
  width: 100%;
  flex: 0 0 100%;
}

.profile-modal select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none !important;
  padding-right: 36px;
}

.profile-modal .profile-section .form-label {
  display: block;
  min-height: 18px;
}

.profile-modal .profile-modal-body #profileOptionsSection #profileOptionsContainer .wrapper-register-inputs.profile-options-row {
  align-items: flex-end !important;
}

.profile-modal .iti,
.profile-modal .iti input {
  width: 100%;
}

.profile-options-row .form-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;

}

.profile-options-row .form-check-input {
  margin-top: 0;
}

.profile-options-row .form-check-label {
  margin-top: 10px;
}


@media (min-width: 1200px) {
  .profile-modal {
    padding: 24px;
  }

  .modal-xl {
    --bs-modal-width: 1354px;
  }
}