:root {
  /* Shadows and Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

#main {
  min-height: 300px;
}

.blue-logo {
  background-color: #3679aa;
}

.blue-logo-gradient {
  background: #3679AA !important;
  background: linear-gradient(-35deg, rgba(54, 121, 170, 1) 30%, rgba(68, 152, 212, 1) 100%) !important;
}

.blue-text {
  color: #3679aa !important;
}

.h-divider {
  background-color: rgba(150, 150, 150, .1);
  border: solid rgba(150, 150, 150, 0.15);
  border-width: 0px 0;
  box-shadow: inset 0 0.5em 1.5em rgb(0 0 0 / 10%), inset 0 0.125em 0.5em rgb(0 0 0 / 15%);
}

.navbar-custom {
  padding-top: 0rem;
  padding-bottom: .2rem;
}

.bgimg-1 {
  background-image: url("/ses/include/images/background.png");
  height: 50%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.less-opacity {
  opacity: 0.85;
}

.space-header {
  height: 60px;
}

.space-element {
  height: 30px;
}

.custom-title {
  padding: 2%
}

.custom-text {
  padding: 1.5%
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #eee;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.collapsible:after {
  content: '\25BC';
  /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  float: right;
  margin-left: 5px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.activeTeste,
.collapsible:hover {
  background-color: #ccc;
}

.activeTeste:after {
  content: "\25B2";
  /* Unicode character for "minus" sign (-) */
}


.nav-item:hover {
  background-color: rgb(241, 241, 241) !important;

}

.pressed {
  border-bottom: 2px solid #f9dd29;
}

.link-ppp::before {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.link-ppp:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #f9dd29;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
  /* show by default */
}

.section {
  width: 100%;
  position: relative;
  background-color: #3679aa"

}

.section:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 5px;

  /* liniar gradient for all browsers */
  background-image: -webkit-linear-gradient(0deg, #f9dd29 25%, #4cbbe6 15%);
  background-image: -moz-linear-gradient(0deg, #f9dd29 25%, #4cbbe6 15%);
  background-image: -o-linear-gradient(0deg, #f9dd29 25%, #4cbbe6 15%);
  /*end liniar gradient for all browsers */
}

.section-alt {
  width: 100%;
  position: relative;
  background-color: #ebedf0;
}

.section-alt:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 5px;

  /* liniar gradient for all browsers */
  background-image: -webkit-linear-gradient(0deg, #f9dd29 25%, #4cbbe6 15%);
  background-image: -moz-linear-gradient(0deg, #f9dd29 25%, #4cbbe6 15%);
  background-image: -o-linear-gradient(0deg, #f9dd29 25%, #4cbbe6 15%);
  /*end liniar gradient for all browsers */
}

.title-line {
  margin: 5px auto 30px auto;
  width: 60px;
  height: 4px;
  background: #f9dd29;
}

.sub-title-line {
  margin: 0px auto 10px auto;
  width: 60px;
  height: 4px;
  background: #f9dd29;
}

.bg-yellow {
  background: #f9dd29;
}

.float {
  position: fixed !important;
  z-index: 1000000000;
  bottom: 2%;
  right: 2%;
  opacity: 0.7;
}

.btn-primary-go {
  --bs-btn-bg: #3679aa;
  --bs-btn-border-color: #3679aa;
  --bs-btn-hover-bg: #2d6991;
  --bs-btn-hover-border-color: #2d6991;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-focus-shadow-rgb: 54, 121, 170;

  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary-go:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary-go:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}


.btn-secondary-go {
  --bs-btn-color: #000;
  --bs-btn-bg: #f9dd29;
  --bs-btn-border-color: #f9dd29;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f3d62f;
  --bs-btn-hover-border-color: #f3d62f;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #f3d62f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f9dd29;
  --bs-btn-disabled-border-color: #f9dd29;

  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-secondary-go:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary-go:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.app-input span.search-icon {
  position: absolute;
  z-index: 5;
  line-height: 38px;
  left: 40px;
  align-self: center;
  color: rgba(0, 0, 0, 0.4) !important;
}

.app-input .form-control {
  border: none;
  height: calc(1.5em + 0.9rem + 2px);
  padding-left: 60px;
  padding-right: 20px;
  /* background-color: #c9e9ff !important; */
  -webkit-box-shadow: none;
  box-shadow: none;
}

.app-input input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.app-input input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.app-input input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.app-input input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.menu-icon {
  width: 1.25rem;
  /* largura fixa */
  display: inline-block;
  text-align: center;
  /* centraliza o ícone dentro da largura */
  margin-right: 0.5rem;
  /* espaço entre o ícone e o texto */
}

.custom-pagination .circle-link {
  color: #3679aa;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.custom-pagination .page-item {
  margin: 0 4px;
  color: #3679aa;
}

.custom-pagination .page-link:hover,
.custom-pagination .page-item.active .page-link {
  background-color: #3679aa;
  color: white;
}

.custom-pagination .nav-arrow {
  color: #3679aa;
  border: none;
  background: transparent;
  padding: 6px 12px;
  transition: color 0.3s ease;
}

.border-light-go {
  border-color: #ebedf0;
}

.fs-7 {
  font-size: small !important;
}

.fs-5-5 {
  font-size: large !important;
}

.bg-secondary-go {
  background-color: #f9dd29;
  color: var(--bs-btn-active-color);
}

.text-secondary-go {
  color: #f9dd29;
}

.fs-8 {
  font-size: x-small !important;
}

.fs-9 {
  font-size: 8px !important;
}

.pcd-ribbon-radius {
  border-radius: 0 0.25rem 0;
}

.dropdown-menu-go {
  max-height: 300px;
  overflow-y: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown-divider-go {
  margin: 0.5rem 0;
}

.dropdown-menu-go .form-check-input:focus {
  box-shadow: none;
}

.dropdown-menu-go .form-check-label {
  cursor: pointer;
}

.dropdown-menu-go li:focus,
.dropdown-menu-go li:active {
  background-color: transparent !important;
}

@media (min-width: 576px) {
    .dropdown-lg {
        width: 320px;
    }
}

.noti-item {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.noti-date {
    position: absolute;
    top: 3px;
    right: 5px;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Animação de entrada */
@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Remove margem do Bootstrap no dialog */
.modal-dialog.modal-dialog-bottom {
  margin: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 90vh;
  transform: translateY(100%);
  animation: slide-up 0.3s forwards;
  pointer-events: none;
}

/* Quando o modal está aberto, ativa pointer e reseta transform */
.modal.show .modal-dialog-bottom {
  transform: translateY(0);
  pointer-events: auto;
}

/* Estilo do painel inferior */
.bottom-sheet .modal-content {
  border-radius: 16px 16px 0 0;
  height: auto;
  overflow-y: auto;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
}

body.modal-open {
  padding-right: 0 !important;
}

@media (max-width: 767.98px) {
  .modal-dialog.modal-dialog-bottom {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    left: 0;
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .modal-content {
    border-radius: 16px 16px 0 0;
    width: 100%;
  }
}

.dropdown-header {
  width: 100%;
  padding: 1rem 1rem;
  position: sticky;
  top: 0;
}

.dropdown-footer {
  width: 100%;
  padding: 1rem 1rem;
  position: sticky;
  bottom: 0;
}

.border-primary-go {
  --bs-border-opacity: 1;
  border-color: rgba(54, 121, 170, var(--bs-border-opacity)) !important;
}

.border-secondary-go {
  --bs-border-opacity: 1;
  border-color: rgba(249, 221, 41, var(--bs-border-opacity)) !important;
}

input,
select {
  box-shadow: none !important;
}

.fade-page {
  opacity: 0;
  animation: fadeInPage 0.5s ease forwards;
}

@keyframes fadeInPage {
  to {
    opacity: 1;
  }
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0092CC 0%, #1A6285 100%);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #a2c037 0%, #20763a 100%);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #f9dd29 0%, #e2c716 100%);
}

.job-modal .modal-content {
  border-radius: 1rem;
  overflow: hidden;
}

.job-modal .modal-header {
  padding: 2rem;
}

.job-modal .card {
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-modal .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.job-modal .badge {
  border-radius: 0.5rem;
  font-weight: 500;
}

.job-modal .btn {
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.job-modal .btn:hover {
  transform: translateY(-1px);
}

.job-modal .z-index-1 {
  z-index: 1;
}

@media (max-width: 768px) {
  .job-modal .modal-dialog {
    margin: 0.5rem;
  }

  .job-modal .modal-header {
    padding: 1.5rem;
  }

  .job-modal .card-body {
    padding: 1rem;
  }
}

/* Animações suaves */
.job-modal .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.job-modal .modal.show .modal-dialog {
  transform: none;
}

/* Scrollbar personalizada */
.job-modal .modal-body::-webkit-scrollbar {
  width: 6px;
}

.job-modal .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.job-modal .modal-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.job-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.job-modal .icon-circle {
  width: 26px;
  height: 26px;
}

@media (min-width: 576px) {
  .job-modal .icon-circle {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 768px) {
  .job-modal .icon-circle {
    width: 38px;
    height: 38px;
  }
}

.disabled-input {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

.border-primary-go {
  border-color: #3679aa !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: none !important;
}

label.required::after {
  content: " *";
  color: red;
}

.table-separate {
    border-collapse: separate !important;
    border-spacing: 0 7px !important;
}