/* =========== Google Fonts ============ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap');

/* =============== Globals ============== */
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #0B2655;
  --white: #fff;
  --gray: #f5f5f5;
  --black1: #222;
  --black2: #999;
  --neutral1: #f4f5f7;
  --yellow: #FFF3E4;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
}

/* =============== Navigation ================ */
.navigation {
  position: fixed;
  width: 300px;
  height: 100%;
  background: var(--blue);
  border: 10px solid var(--blue);
  transition: 0.5s;
  overflow: auto;
}
.navigation.active {
  width: 80px;
}

.navigation ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.navigation ul li {
  position: relative;
  width: 100%;
  list-style: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.navigation ul li:hover{
  background-color: var(--white);
}

.navigation ul li:nth-child(1) {
  margin-bottom: 18px;
  pointer-events: none;
}

.navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  text-decoration: none;
  color: var(--white);
}
.navigation ul li:hover a{
  color: var(--blue);
}
.navigation a.active {
  background-color: #f0f0f0;
  font-weight: 500; 
  color: #333;
  border-radius: 12px;
}

.navigation ul li .logo2{
  width: 100%;
  max-width: 190px;
  margin-top: 10px;
  margin-left: 10px;
}
.navigation ul li .logo2 img{
  width: 100%;
}

.navigation ul li a .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 75px;
  text-align: center;
}
.navigation ul li a .icon ion-icon {
  font-size: 1.75rem;
}

.navigation ul li a .title {
  position: relative;
  display: block;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  text-align: start;
  white-space: nowrap;
}
.navigation ul button{
    position: relative;
    width: 100%;
    list-style: none;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    display: flex;
    text-decoration: none;
    color: var(--white);
    background-color: #2F80ED;
    border: 1px solid #2F80ED;
}
.navigation ul button .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 75px;
  text-align: center;
}
.navigation ul button .title {
  position: relative;
  display: block;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  text-align: start;
  white-space: nowrap;
}
.navigation ul button .icon ion-icon {
  font-size: 1.75rem;
}


/* ===================== Main ===================== */
.main {
  position: absolute;
  width: calc(100% - 300px);
  left: 300px;
  min-height: 100vh;
  background: var(--neutral1);
  transition: 0.5s;
}
.main.active {
  width: calc(100% - 80px);
  left: 80px;
}

.topbar {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  background-color: #ffff;
  border-bottom: 1px solid #F5F5F5;
}

.navbar-content{
  width: 100%;
  padding: 10px 15px;
  background-color: var(--white);
  border-bottom: 1px solid #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  cursor: pointer;
}

.filter-search{
  width: 100%;
  display: flex;
  align-items: center;
}
.filter-search .select-drop{
  margin-left: 5px;
  margin-right: 5px;
}
.filter-search .select-drop select{
  width: 100%;
  height: 40px;
  border-radius: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border: 1px solid #dfdfdf;
  font-size: 14px;
  outline: none;
}




/* Ajusta a aparência geral do Select2 */
.select2-container {
  width: 100% !important;
  max-width: 300px !important;
}

/* Ajusta a aparência do campo selecionado */
.select2-container .select2-selection--single {
  width: 100% !important;
  min-width: 300px !important; /* Aumente conforme necessário */
  max-width: 100%; /* Para não estourar o layout */
  height: 40px !important;
  border-radius: 8px !important;
  border: 1px solid #dfdfdf !important;
  display: flex !important;
  align-items: center !important;
  background: var(--white) !important;
  font-size: 14px !important;
  padding-left: 12px !important;
}

/* Ajusta a posição do texto dentro do campo */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
  color: #333 !important;
}

/* Ajusta a seta do dropdown */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  position: absolute !important;
  top: 50% !important;
  right: 12px !important;
  transform: translateY(-50%) !important;
}

/* Ajusta a aparência quando o campo está focado */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:focus-visible {
  border-color: #2F80ED !important;
  box-shadow: 0 0 5px rgba(47, 128, 237, 0.3) !important;
}

/* Ajusta o dropdown */
.select2-container .select2-dropdown {
  border: 1px solid #dfdfdf !important;
  border-radius: 8px !important;
  background: white !important;
}

/* Ajusta as opções do dropdown */
.select2-container .select2-results__option {
  font-size: 14px !important;
  padding: 10px !important;
  color: #333 !important;
}

/* Ajusta a opção selecionada */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #2F80ED !important;
  color: white !important;
}

/* Ajusta a busca dentro do Select2 */
.select2-search input {
  width: 100% !important;
  padding: 8px !important;
  border: 1px solid #dfdfdf !important;
  border-radius: 8px !important;
  font-size: 14px !important;
}




.filter-search .date-range{
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
  align-items: center;
}
.filter-search .date-range input{
  height: 40px;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #dfdfdf;
  font-size: 14px;
  outline: none;
}


.search {
  position: relative;
  width: 292px;
  margin: 0 10px;
  display: flex;
  align-items: center;
}

.search label {
  position: relative;
  width: 100%;
}

.search label input {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  padding: 5px 20px;
  padding-left: 18px;
  font-size: 14px;
  outline: none;
  border: 1px solid #dfdfdf;
}

button.btn-buscar{
  font-size: 14px;
  color: #fff;
  height: 40px;
  background: var(--Blue-1, #2F80ED);
  border-color: var(--Blue-1, #2F80ED);
  border-radius: 10px 10px 10px 10px;
  position: relative;
  transition: all 0.3s ease 0s;
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px 0 15px;
}
button.btn-buscar:hover{
  background: var(--Blue-1, #2870cf);
  border-color: var(--Blue-1, #2F80ED);
  transition: all 0.3s ease 0s;
}

button.btn-buscar ion-icon {
  color: #fff;
  font-size: 14px;
}

button.btn-buscar ion-icon{
  color: #fff;
  font-size: 14px;
  padding-left: 5px;
}

.search label ion-icon {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 1.2rem;
}

.user {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.user img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================= Cards ====================== */
.cardBox {
  position: relative;
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.cardBox .card {
  position: relative;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.cardBox .card .numbers {
  position: relative;
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--blue);
}

.cardBox .card .cardName {
  color: var(--black2);
  font-size: 1.1rem;
  margin-top: 5px;
}

.cardBox .card .iconBx {
  font-size: 3.5rem;
  color: var(--black2);
}

.cardBox .card:hover {
  background: var(--blue);
}
.cardBox .card:hover .numbers,
.cardBox .card:hover .cardName,
.cardBox .card:hover .iconBx {
  color: var(--white);
}

/* ================== Order Details List ============== */
.details {
  position: relative;
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  /* margin-top: 10px; */
}
.details.reply{
  padding: 0px 20px;
}
.details.attachments{
  padding: 0px 20px 20px 20px;
}

.details .recentOrders {
  position: relative;
  display: block;
  min-height: 500px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  border-radius: 20px;
}
.details .demandPerson {
  position: relative;
  display: grid;
  background: var(--white);
  padding: 20px;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  border-radius: 20px;
}


.details .cardHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cardHeader h2 {
  font-weight: 600;
  color: var(--blue);
}
.cardHeader .btn {
  position: relative;
  padding: 5px 10px;
  background: var(--blue);
  text-decoration: none;
  color: var(--white);
  border-radius: 6px;
}
.cardHeader .btn-add button{
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background-color: #2f80ed;
  border: 1px solid #2f80ed;
  text-decoration: none;
  color: var(--white);
  border-radius: 6px;
  transition: 0.3s;
  cursor: pointer;
}
.cardHeader .btn-add button:hover{
  background-color: #216ed3;
  border: 1px solid #216ed3;
  transition: 0.3s;
}
.cardHeader .btn-add button ion-icon{
  margin-right: 8px;
}

.details table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.details table thead td {
  font-weight: 300;
  color: #A0AEC0;
  background-color: #ffff;
}
.details .recentOrders table tr {
  color: var(--black1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.details .recentOrders table tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.details .recentOrders table tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.details .recentOrders table tr:last-child {
  border-bottom: none;
}
.details .recentOrders table tbody tr:hover {
  background: var(--yellow);
  cursor: pointer;
  color: var(--black1);
  transition: 0.3s;
}


.details .recentOrders table tr td {
  padding: 10px;
}
.details .recentOrders table tr td small{
  color: var(--black2);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

.details .recentOrders table tr td:last-child {
  text-align: end;
}
.details .recentOrders table tr td:nth-child(2) {
  text-align: start;
}
/* .details .recentOrders table tr td:nth-child(3) {
  text-align: center;
} */



.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 40px;
  height: 40px;
  border-radius: 60%;
  background-color: #ebebeb;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 3px auto;
}

.dropdown-menu {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px 0;
  min-width: 144px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  right: 0;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(86,96,117,.2);
  top: 100%;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 8px 10px;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}
.dropdown-menu a ion-icon{
  margin-right: 8px;
}
.dropdown-menu li button{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
}
.dropdown-menu li ion-icon{
  margin-right: 8px;
}





.status.delivered {
  padding: 2px 4px;
  background: #8de02c;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.status.pending {
  padding: 2px 4px;
  background: #e9b10a;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.status.return {
  padding: 2px 4px;
  background: #f00;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.status.inProgress {
  padding: 2px 4px;
  background: #1795ce;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.recentCustomers {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  border-radius: 20px;
}
.recentCustomers .imgBx {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
}
.recentCustomers .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recentCustomers table tr td {
  padding: 12px 10px;
}
.recentCustomers table tr td h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2rem;
}
.recentCustomers table tr td h4 span {
  font-size: 14px;
  color: var(--black2);
}
.recentCustomers table tr:hover {
  background: var(--blue);
  color: var(--white);
}
.recentCustomers table tr:hover td h4 span {
  color: var(--white);
}

/* ================== Order Details demanda ============== */

.navbar-content .navgation{
  display: flex;
  align-items: center;
}
.navbar-content .navgation ul{
  display: flex;
  align-items: center;
  list-style: none;
}
.navbar-content .navgation ul li{
  text-decoration: none;
  margin-right: 15px;
  position: relative;
}
.navbar-content .navgation ul li a{
  text-decoration: none;
  color: var(--Black-30, #8B8D97);
  font-size: 14px;
  font-weight: 300;
}
.navbar-content .navgation ul li a.home{
  color: var(--blue);
}
.navbar-content .navgation ul li a.select{
  color: var(--blue);
  font-weight: 300;
}
.navbar-content .acoes{
  display: flex;
  align-items: center;
}
.navbar-content .acoes button.transferir{
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #26297a;
  border-color: #26297a;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding: 3px 10px;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
  transition: 0.3s;
}
.navbar-content .acoes button.transferir:hover{
  background-color: #1c1f5f;
  border-color: #1c1f5f;
  transition: 0.3s;
}
.navbar-content .acoes button.transferir ion-icon{
  margin-right: 4px;
}
.navbar-content .acoes button.responder{
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #22c68c;
  border-color: #22c68c;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding: 3px 10px;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
  transition: 0.3s;
}
.navbar-content .acoes button.responder:hover{
  background-color: #1bab79;
  border-color: #1bab79;
  transition: 0.3s;
}
.navbar-content .acoes button.responder ion-icon{
  margin-right: 4px;
}



.navbar-content .status-general{
  margin-left: 39px;
}
.navbar-content .status-general span{
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  padding: 3px 10px;
  border-radius: 8px;
  margin-right: 10px;
}
.navbar-content .status-general span.status{
  background: var(--Green-Green-400, #48BB78);
}
.navbar-content .status-general span.tipo{
  background: #2D3748;
}
.navbar-content .status-general span.itentific{
  background: #2D3748;
}

.details .demandPerson .card-person{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.details .demandPerson .card-person .info{
  display: flex;
  align-items: center;
}
.details .demandPerson .card-person .info .user{
  margin-right: 15px;
}
.details .demandPerson .card-person .info .dados h4{
  color: var(--Gray-Gray-700, #2D3748);
  font-size: 15px;
  font-weight: 600;
  line-height: 140%; /* 19.6px */
}
.details .demandPerson .card-person .info .dados h4 small{
  color: var(--Gray-Gray-700, #2D3748);
  font-size: 14px;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
  margin-left: 10px;
}
.details .demandPerson .card-person .info .dados span{
  color: var(--Gray-Gray-500, #718096);
  font-size: 14px;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
}

.details .demandPerson .card-person .action{
  display: flex;
  align-items: center;
}
.details .demandPerson .card-person .action .hour span{
  color: var(--Gray-Gray-500, #718096);
  font-size: 14px;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
  margin-right: 10px;
}

.details .demandPerson .info-demand {
  width: 100%;
  background: #F9FBFE;
  margin-top: 20px;
  border-radius: 6px;
  padding: 31px;
}
.details .demandPerson .info-demand p{
  color: #5A687E;
  font-size: 16px;
  font-weight: 400;
  line-height: 176%; /* 28.16px */
  margin-bottom: 10px;
}

.details .area-forms{
  position: relative;
  display: grid;
  background: var(--white);
  padding: 20px;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  border-radius: 20px;
}
.details .respond{
  display: flex;
  align-items: center;
}
.details .respond .inf-respond h2{
  color: var(--Gray-Gray-700, #2D3748);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}
.details .forms form{
  margin-top: 17px;
}
.details .forms form label{
  color: var(--Gray-Gray-700, #2D3748);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}
.details .forms form label.respos{
  display: block;
}
.details .forms form textarea{
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--Input-defaultBackground, rgba(239, 241, 249, 0.60));
  padding: 8px 16px;
  border: 1px solid #E9E9E9;
  margin-bottom: 22px;
}
.details .forms .general{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.details .forms .general .col1{
  width: 100%;
  max-width: 49%;
}
.details .forms .general .col1 label{
  display: block;
}
.details .forms .general .col1 select{
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--Input-defaultBackground, rgba(239, 241, 249, 0.60));
  padding: 8px 16px;
  border: 1px solid #E9E9E9;
  margin-bottom: 22px;
}

.details .forms input.btn-enviar{
  display: flex;
  width: 100%;
  max-width: 235px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  background: var(--Blue-1, #2F80ED);
  border: 1px solid #2F80ED;
  float: right;
}
.details .area-forms .forms form .line-anexto label{
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
.details .area-forms .forms form .line-anexto input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gray-200, #E4E4E7);
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 12px;
}


.anexos{
  position: relative;
  width: 100%;
  padding: 0 20px 20px 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
.anexos .anex-area{
  position: relative;
  display: grid;
  background: var(--white);
  padding: 20px;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  border-radius: 20px;
}
.anexos .anex-area .inf-respond h2 {
  color: var(--Gray-Gray-700, #2D3748);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.anex-media {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.anexos.responder{
  padding: 0;
}

.media {
  max-width: 100%;
}

.media video{
  width: 174px;
}

.preview {
  max-width: 166px;
  height: 99px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease 0s;
  border-radius: 6px;
}

.preview:hover {
  transform: scale(1.1);
}
a.link{
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  background-color: #1D6CC9;
  color: #fff;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}
a.link svg{
  margin-right: 5px;
}
a.link:hover{
  color: #fff;
  background-color: #105099;
  transition: 0.3s;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  transition: opacity 0.3s;
}

.preview-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  transition: opacity 0.3s, transform 0.3s;
}

.preview-modal.show {
  display: block;
}

.preview-content {
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.close-button:hover {
  color: #000;
}




/* ================== Login ============== */


.login-page .authcontrol {
  position: relative;
  width: 100%;
  height: 100vh; /* ajuste conforme necessário */
  background: url('../imgs/imperatriz.jpg') no-repeat center center;
  background-size: cover;
}

.login-page .authcontrol::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* cor e opacidade ajustáveis */
  z-index: 1;
}

.login-page .login-container {
  position: relative;
  z-index: 2; /* garante que o conteúdo fique acima do overlay */
}



.authcontrol{
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #f8fafb; */
}

.authcontrol .login-container {
  background-color: #fff;
  box-shadow: 8px 8px 17px -5px rgb(166 166 176 / 40%);
  border: 1px solid #f1f1f1;
  max-width: 580px;
  margin: 20vh auto 0;
  padding: 20px;
  overflow-y: auto;
  border-radius: 12px;
}
.info-consulta.demanda .login-container{
  margin: 1vh auto 0;
}
.authcontrol .login-container a.logo img{
  display: flex;
  width: 100%;
  max-width: 252px;
  margin: 0 auto;
}

.authcontrol .login-container h3 {
  text-align: center;
  color: var(--Black-60, #45464E);
  font-size: 18px;
  margin-top: 12px;
  font-weight: 400;
}

.authcontrol .login-form {
  margin-top: 20px;
}
.authcontrol .login-form .pessoais{
  display: flex;
  align-items: center;
}
.authcontrol .login-form .pessoais .col3{
  display: flex;
  align-items: flex-start;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.authcontrol .login-form .pessoais-col4 .col4{
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.authcontrol .login-form .pessoais .col3 div{
  width: 100%;
}
.authcontrol .login-form .pessoais-col4 .col4 div{
  width: 100%;
}

.authcontrol .login-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--black, #000);
  font-size: 16px;
  font-weight: 400;
}

.authcontrol .login-form input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gray-200, #E4E4E7);
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 12px;
}
.authcontrol .login-form select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gray-200, #E4E4E7);
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 12px;
}
.authcontrol .login-form textarea{
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gray-200, #E4E4E7);
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 12px;
}

.authcontrol .login-form button {
  border-radius: 12px;
  background: var(--Blue-1, #2F80ED);
  color: #fff;
  padding: 15px;
  border: none;
  cursor: pointer;
  width: 100%;
}


/* modal */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 644px;
  background-color: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  padding: 39px 30px;
}
.popup-container .topo{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-container .topo p{
  color: var(--Black-60, #45464E);
  font-size: 20px;
  font-weight: 500;
}
.popup-container .general {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
}
.popup-container .general .col1 {
  width: 100%;
}
.popup-container .general .col1 label {
  display: block;
  color: var(--Gray-Gray-700, #2D3748);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 6px;
}
.popup-container .general .col1 select {
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--Input-defaultBackground, rgba(239, 241, 249, 0.60)));
  padding: 14px 16px;
  border: 1px solid #E9E9E9;
  margin-bottom: 18px;
}
.popup-container .general .col1 input {
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--Input-defaultBackground, rgba(239, 241, 249, 0.60)));
  padding: 14px 16px;
  border: 1px solid #E9E9E9;
  margin-bottom: 18px;
}

.popup-container .general .col1 textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--Input-defaultBackground, rgba(239, 241, 249, 0.60)));
  padding: 8px 16px;
  border: 1px solid #E9E9E9;
  margin-bottom: 22px;
}
.popup-container .general .action button.btn-enviar {
  display: flex;
  width: 100%;
  max-width: 235px;
  cursor: pointer;
  height: 41px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  background: var(--Blue-1, #2F80ED);
  border: 1px solid #2F80ED;
  float: right;
}


.btn-create-account {
  background-color: #3498db;
  color: #fff;
  border: none;
  cursor: pointer;
}

.close-btn {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

/* modal transferir */
/* Estilize o modal para que ele seja inicialmente oculto */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4)
}

/* Estilize o conteúdo do modal */
.modal-content {
  background-color: #fefefe;
  margin: 2% auto;
  border-radius: 6px;
  border: 1px solid #888;
  width: 100%;
  max-width: 580px;
}
.modal-content .header{
  width: 100%;
  background-color: rgb(47, 128, 237);
  border-radius: 6px 6px 0 0;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
}
.modal-content .modal-body{
  padding: 20px;
  background: #f8fafb;
}
.modal-content .modal-body .col1 {
  width: 100%;
}
.col1 label {
  display: block;
  color: var(--Gray-Gray-700, #2D3748);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 6px;
}
.col1 input {
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--Input-defaultBackground, rgba(239, 241, 249, 0.60)));
  padding: 14px 16px;
  border: 1px solid #E9E9E9;
  margin-bottom: 18px;
}
.col1 select {
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--Input-defaultBackground, rgba(239, 241, 249, 0.60)));
  padding: 14px 16px;
  border: 1px solid #E9E9E9;
  margin-bottom: 12px;
  font-size: 16px;
}
.modal-content .action{
  display: flex;
  justify-content: flex-end;
  padding: 24px 20px;
  background-color: #fff;
  border-radius: 0 6px 0 6px;
}
.modal-content .action button.btn-enviar {
  display: flex;
  width: 100%;
  max-width: 235px;
  cursor: pointer;
  height: 41px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  background: var(--Blue-1, #2F80ED);
  border: 1px solid #2F80ED;
  float: right;
  transition: 0.3s;
}
.modal-content .action button.btn-enviar:hover{
  background: var(--Blue-1, #286fcc);
  border: 1px solid #286fcc;
  transition: 0.3s;
}


/* Estilize o botão de fechar */
.close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}



/* mensagem sucess e erro */
.card-menssage {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 14px;
  border-radius: 0.5rem;
  box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.14), 0px 6px 30px 0px rgba(0, 0, 0, 0.12), 0px 8px 10px 0px rgba(0, 0, 0, 0.20);
  display: flex;
  align-items: center;
  color: white;
  font-weight: bold;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s; /* Adiciona uma transição suave */
}
.card-menssage .image{
  margin-right: 10px;
}
.card-menssage .text h4{
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.375rem; /* 129.412% */
  letter-spacing: -0.0255rem;
}
.card-menssage .text span{
  display: block;
  color: #C8C5C5;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  letter-spacing: -0.078px;
}
.success {
  background: linear-gradient(93deg, #243226 -8.23%, #242C32 26.42%, #242C32 114.81%);
}
.errorCard {
  background: #322424;
}
.loadCard {
  background-color: rgb(34, 109, 206);
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner {
  margin-right: 10px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #333;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}


/* btns */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

/* Botão específico para acesso administrativo */
.btn-admin {
  background-color: #007bff;
  color: #fff;
  margin-top: 20px; /* Espaço entre os elementos */
}

.btn-admin:hover {
  background-color: #0056b3;
}

/* pagination */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-top: 1px solid #e0e0e0;
}

.pagination {
  display: flex;
  align-items: center;
}

.page-btn, .page-number {
  border: none;
  background-color: #f5f5f5;
  color: #333;
  padding: 8px 12px;
  margin: 2px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-number.active {
  background-color: #28a745;
  color: #fff;
}

.page-number:hover, .page-btn:hover {
  background-color: #ddd;
}




/* consultar demanda */
.admindash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  overflow: hidden;
}

.admindash .image {
  width: 100%;
  max-width: 50%;
  background-image: url(../imgs/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  height: 100vh;
  position: relative;
  padding: 20px;
}
.admindash .image .info{
  width: 100%;
  max-width: 488px;
  margin: 0 auto;
}
.admindash .image .info img.people{
  width: 100%;
  max-width: 324px;
  display: block;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.admindash .image .info img.logo{
  width: 100%;
  max-width: 291px;
  display: block;
  margin: auto;
}
.admindash .info-consulta{
  width: 100%;
  max-width: 50%;
  background-color: #F1F1F1;
  background-size: cover;
  overflow: hidden;
  height: 100vh;
  position: relative;
  padding: 20px;
}
.admindash .info-consulta.demanda{
  overflow: auto;
}
.admindash .info-consulta.principal{
  overflow: auto;
}
.admindash .info-consulta .login-container{
  border-radius: 28px;
  padding: 30px 26px;
  width: 100%;
  max-width: 380px;
}
.admindash .info-consulta .login-container.criar-demanda{
  max-width: 900px;
}

.admindash .info-consulta .login-container label{
  font-size: 12px;
}
.admindash .info-consulta .login-container p{
  color: #727272;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 127%; /* 0.9525rem */
  letter-spacing: 0.0225rem;
  margin-top: 10px;
}
.admindash .info-consulta .login-container p.criar-forms{
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}
.admindash .info-consulta .login-container small.criar-forms{
  font-size: 12px;
  color: #6D7480;
  display: block;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 8px;
}
.admindash .info-consulta .login-container small.criar-forms-title{
  font-size: 12px;
  color: #6D7480;
  display: block;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 10px;
}
.admindash .info-consulta .login-container .custom-switch{
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}

.admindash .info-consulta .login-container a span{
  text-decoration: none;
  color: #6D7480;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin-top: 26px;
  display: block;
}
.admindash .info-consulta .login-container.principal{
  max-width: 80vh;
  margin: 0vh auto 0;
}
.admindash .info-consulta .login-container.principal .btn-ouvidoria{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
  border-bottom: 1px solid #F3F1F1;
  padding-bottom: 18px;
}
.admindash .info-consulta .login-container.principal .btn-ouvidoria button.btn-cadastrar{
  border-radius: 12px;
  background: var(--Blue-1, #2F80ED);
  color: rgb(255, 255, 255);
  padding: 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin: 0 7px 0 7px;
  font-size: 14px;
  transition: 0.3s;
}
.admindash .info-consulta .login-container.principal .btn-ouvidoria button.btn-cadastrar:hover{
  background: var(--Blue-1, #206aca);
  transition: 0.3s;
}
.admindash .info-consulta .login-container.principal .btn-ouvidoria button.btn-cadastrar img{
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}
.admindash .info-consulta .login-container.principal .info{
  border-bottom: 1px solid #F3F1F1;
  padding-bottom: 18px;
}
.admindash .info-consulta .login-container.principal .info h3{
  font-size: 18px;
  font-weight: 600;
  color: #322A4A;
  text-align: left;
  margin-top: 10px;
}
.admindash .info-consulta .login-container.principal .info p{
  font-size: 15px;
  font-weight: 300;
  color: #3B3B3B;
  text-align: left;
  margin-top: 10px;
}
.admindash .info-consulta .login-container.principal .info ul.bullets{
  list-style: none;
  margin-top: 15px;
}
.admindash .info-consulta .login-container.principal .info ul.bullets li{
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #3B3B3B;
  font-style: normal;
  font-weight: 400;
}
.admindash .info-consulta .login-container.principal .info ul.bullets li a{
  text-decoration: none;
  color: #3B3B3B;
}
.admindash .info-consulta .login-container.principal .info ul.bullets li a:hover{
  color: #206aca;
  
}
.admindash .info-consulta .login-container.principal .info ul.bullets li img{
  margin-right: 5px;
}

/* protocolo */
.container .main .protocolo{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container .main .protocolo .responder{
  border-top: 1px solid #e1e1e1;
  padding-top: 20px;
  margin-top: 10px;
  position: relative;
}

.container .main .protocolo .responder .details.reply.pref{
  width: 80%;
  position: relative;
  float: right;
  margin-bottom: 15px;
}
.container .main .protocolo .responder .details.reply.pref .demandPerson{
  background-color: rgb(235, 244, 254);
  border: 1px solid #c6d7ef;
}

.container .main .protocolo .responder .details.reply.people{
  width: 80%;
  position: relative;
  float: left;
  margin-bottom: 15px;
}
.container .main .protocolo .responder .details.reply.status{
  width: 80%;
  position: relative;
  float: right;
  margin-bottom: 15px;
}
.container .main .protocolo .responder .details.reply.status .demandPerson{
  background-color: #1D6CC9;
  border: 1px solid #1D6CC9;
}
.container .main .protocolo .responder .details.reply.status .demandPerson .card-person .info .dados h4 {
  color: #fff;
}
.container .main .protocolo .responder .details.reply.status .demandPerson .card-person .info .dados span {
  color: #fff;
}
.container .main .protocolo .responder .details.reply.status .demandPerson .action .hour span {
  color: #fff;
}



/* ====================== Responsive Design ========================== */




@media (max-width: 1440px) {
  .admindash .image .info img.people {
    max-width: 40%;
    height: auto;
  }
  .admindash .image .info img.logo {
    max-width: 48%;
    height: auto;
  }
}


@media (max-width: 991px) {
  .navigation {
    left: -300px;
  }
  .navigation.active {
    width: 300px;
    left: 0;
  }
  .main {
    width: 100%;
    left: 0;
  }
  .main.active {
    left: 300px;
  }
  .cardBox {
    grid-template-columns: repeat(2, 1fr);
  }
  /* login */
  .admindash {
    flex-direction: column-reverse;
  }
  .authcontrol .login-container {
    margin: 5vh auto 0;
  }
  .admindash .info-consulta {
    max-width: 100%;
    height: auto;
    padding: 43px;
  }
  .admindash .image {
    max-width: 100%;
    height: 53vh;
  }





}

@media (max-width: 768px) {
  .details {
    grid-template-columns: 1fr;
  }
  .recentOrders {
    overflow-x: auto;
  }
  .status.inProgress {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .cardBox {
    grid-template-columns: repeat(1, 1fr);
  }
  .cardHeader h2 {
    font-size: 20px;
  }
  .user {
    min-width: 40px;
  }
  .navigation {
    width: 100%;
    left: -100%;
    z-index: 1000;
  }
  .navigation.active {
    width: 100%;
    left: 0;
  }
  .toggle {
    z-index: 10001;
  }
  .main.active .toggle {
    color: #fff;
    position: fixed;
    right: 0;
    left: initial;
  }


}

@media(max-width: 440px) and (min-width: 320px){
  .admindash .image .info img.people {
    max-width: 10%;
    height: auto;
  }
  .admindash .image .info img.logo {
    max-width: 32%;
    height: auto;
  }


}


/* 
new */

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 5px;
  z-index: 100;
}

.action-inf {
  position: relative;
  cursor: pointer;
}

.dropdown-menu button {
  display: block;
  width: 100%;
  padding: 5px 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.dropdown-menu button:hover {
  background: #f1f1f1;
}

.edit-input {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.edit-actions {
  margin-top: 5px;
}

.edit-actions button {
  margin-right: 5px;
  padding: 5px 10px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}

.save-btn {
  background: #28a745;
  color: white;
}

.cancel-btn {
  background: #dc3545;
  color: white;
}