/*
* Importações
*/
/*
* font-family: "DM Serif Display", serif;
* font-family: "Nunito", sans-serif;
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/*
* Padrões
*/
:root {
    --background-one: #f5f5f5;
    --background-two: #FFFFFF;
    --cor-primaria: #a51a16;
}
*:not(i) {
  font-family: "Nunito", sans-serif !important;
}
body {
    background-color: var(--background-one);
}
h1, h2, h3 {
	font-family: "Nunito", sans-serif;
}
p, span {
	font-family: "Nunito", sans-serif;
}
div.main {
  position: relative;
  margin: 70px 0 0 220px;
  padding: 20px;
}
div.quadro {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 5px;
  box-shadow: 1px 1px 5px #CCCCCC;
  padding: 10px;
}
.btn-default {
  --bs-btn-color: #fff;
  --bs-btn-bg: #607D8B;
  --bs-btn-border-color: #515e65;
  --bs-btn-hover-color: #272727;
  --bs-btn-hover-bg: #9E9E9E;
  --bs-btn-hover-border-color: #9E9E9E;
  --bs-btn-focus-shadow-rgb: 165, 54, 52;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #607D8B;
  --bs-btn-active-border-color: #515e65;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #cdcdcd;
  --bs-btn-disabled-border-color: #cdcdcd;
}
.btnExcelTable {
  background-color: #98f79c !important;
}
.btnPDFTable {
  background-color: #ffa3a3 !important;
}
.btns-dias {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  float: right;
}
.btns-dias a {
  padding: 5px 0;
}
.qdBtnPedidosEditora {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.qdBtnPedidosEditora .active {
  border-radius: 5px;
  background-color: #607d8b;
  color: #FFFFFF;
}

div.dt-buttons .dt-button {
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 10px;
  border-radius: 5px;
  border: 1px solid #CCC;
}

/*
* Estilização do topo
*/
div.topo {
    background-color: var(--background-two);
    width: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    flex-direction: row;
    flex-wrap: nowrap;
    z-index: 9000;
}
div.qdLogo {
  display: flex;
  width: 220px;
  height: 70px;
  text-align: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.logotipo {
    position: relative;
    height: 60px;
}
div.qdFerramentas {
  display: flex;
  width: calc(100% - 220px);
  align-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  box-shadow: 1px 1px 3px #CCC;
}
div.qdFerramentas div {
  display: flex;
  padding: 0 15px;
  align-items: center;
}
div.qdFerramentas i.icoFerramentas {
  font-size: 1.5rem;
  margin: 0 15px;
  color: #474747;
}
div.qdFerramentas i.icoSair {
  font-size: 1.5rem;
  margin: 0;
  color: #474747;
  cursor: pointer;
}
div.qdFerramentas h1 {
  font-size: 1.3rem;
  margin: 0;
  color: #474747;
}

.qdFerramentasTopo {
  padding: 5px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgb(231 231 231), -1px -1px 6px rgba(255, 255, 255, 0.4);
}

/*
* Estilização do menu
*/
div.menu {
    background-color: var(--background-two);
    display: block;
    width: 220px;
    height: calc(100% - 70px);
    position: fixed;
    top: 70px;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    box-shadow: 1px 1px 3px #CCC;
    transition: transform 0.5s ease-in-out;
}
.menu.hidden {
  transform: translateX(-100%);
}
div.menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
div.menu ul {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}
div.menu ul > li {
  list-style: none;
  position: relative;
}
div.menu ul > li.drop::after {
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  position: absolute;
  top: 14px;
  right: 10px;
  font-weight: 700;
  cursor: pointer;
}
div.menu ul > li.drop.active > a {
  background-color: rgba(0, 0, 0, 0.05);
  color: #606060;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
div.menu ul > li.drop.active::after {
  font-family: "Font Awesome 6 Free";
  content: "\f0d7";
  font-weight: 700;
}

div.menu ul > li > a {
  color: #606060;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  font-family: "Nunito", sans-serif;
  margin: 5px;
  border-radius: 5px;
}
div.menu ul > li > a.active {
  background-color: var(--cor-primaria);
  color: #FFF;
  font-weight: bold;
  margin: 5px;
  border-radius: 5px;
  border: none;
  letter-spacing: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
div.menu ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #606060;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}
div.menu ul > li > a i {
  margin: 5px 15px;
}
div.menu ul > li > ul {
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0;
  padding: 0 0 0 10px;
}
div.menu ul > li > ul.open {
  display: block;
  padding: 0 0 0 10px;
}
div.menu ul > li > ul > li {
  position: relative;
}
div.menu ul > li > ul > li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f111";
  position: absolute;
  top: 15px;
  left: 35px;
  font-size: .5rem;
}
div.menu ul > li > ul > li:has(a.active)::before {
  color: #FFFFFF;
}
div.menu ul > li > ul > li > a {
  font-size: .9rem;
  padding: 10px 0 10px 50px;
}

/*
* Formulário de acesso
*/

.logotipo-login {
    width: 80%;
}

div#acesso {
  display: grid;
  position: fixed;
  height: 100%;
  width: 100%;
  place-items: center;
  background: linear-gradient(50deg, rgba(222, 222, 222, 1) 0%, rgba(242, 242, 242, 1) 100%);
}
::selection{
  background: var(--cor-primaria);
  color: #fff;
}
.wrapper{
  overflow: hidden;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
}
.wrapper .title-text{
  display: flex;
  width: 200%;
}
.wrapper .title{
  width: 50%;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.wrapper .slide-controls{
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0 10px 0;
  justify-content: space-between;
  border: 1px solid lightgrey;
  border-radius: 15px;
}
.slide-controls .slide{
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.signup{
  color: #000;
}
.slide-controls .slider-tab{
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 15px;
  background: linear-gradient(50deg, rgba(149, 18, 16, 1) 1%, rgba(179, 25, 25, 1) 100%);
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
a.assinar {
    color: var(--cor-primaria);
    text-decoration: none;
    display: block;
    margin: 0 auto;
    width: fit-content;
}
input[type="radio"]{
  display: none;
}
#signup:checked ~ .slider-tab{
  left: 50%;
}
#signup:checked ~ label.signup{
  color: #fff;
  cursor: default;
  user-select: none;
}
#signup:checked ~ label.login{
  color: #000;
}
#login:checked ~ label.signup{
  color: #000;
}
#login:checked ~ label.login{
  cursor: default;
  user-select: none;
}
.wrapper .form-container{
  width: 100%;
  overflow: hidden;
}
.form-container .form-inner{
  display: flex;
  width: 200%;
}
.form-container .form-inner form{
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.form-inner form .field{
  height: 50px;
  width: 100%;
  margin-top: 20px;
}
.form-inner form .fieldTxt {
  min-height: 50px;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
.form-inner form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 15px;
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 17px;
  transition: all 0.3s ease;
}
.form-inner form .field input:focus{
  border-color: var(--cor-primaria);
}
.form-inner form .field input::placeholder{
  color: #999;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder{
  color: var(--cor-primaria);
}
.form-inner form .pass-link{
  margin-top: 5px;
}
.form-inner form .signup-link{
  text-align: center;
  margin-top: 30px;
}
.form-inner form .pass-link a,
.form-inner form .signup-link a{
  color: var(--cor-primaria);
  text-decoration: none;
}
.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover{
  text-decoration: underline;
}
.form-inner form .btn{
  height: 50px;
  width: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.form-inner form .btn .btn-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: linear-gradient(50deg, rgba(149, 18, 16, 1) 1%, rgba(179, 25, 25, 1) 100%);
  border-radius: 15px;
  transition: all 0.4s ease;;
}
.form-inner form .btn:hover .btn-layer{
  left: 0;
}
.form-inner form .btn input[type="submit"]{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

/* Calendário */
:root {
  --fc-page-bg-color: #fffaf9;              /* fundo geral mais suave */
  --fc-neutral-bg-color: #ffffff;           /* fundo das células */
  --fc-border-color: #d6bfbf;               /* borda suavizada */
  --fc-button-bg-color: #c94a4a;            /* fundo dos botões suavizado */
  --fc-button-border-color: #c94a4a;        /* fundo dos botões suavizado */
  --fc-button-text-color: #ffffff;          /* texto branco para contraste */
  --fc-button-hover-bg-color: #e27d7d;      /* tom mais claro no hover */
  --fc-event-bg-color: #c94a4a;             /* cor de fundo dos eventos */
  --fc-event-border-color: #a03333;         /* borda um pouco mais escura */
  --fc-event-text-color: #fff;              /* texto dos eventos */
  --fc-today-bg-color: #fbe9e9;             /* destaque no dia atual */
  --fc-toolbar-title-color: #c94a4a;        /* título com cor suavizada */
}

.fc a {
  color: #c94a4a;
  text-decoration: none;
}

.fc a:hover {
  color: #e27d7d;
  text-decoration: underline;
}

.fc-col-header-cell {
  background-color: #6b5656;
  color: #fff !important;
  font-weight: bold;
  padding: 8px;
  border: 1px solid #d6bfbf;
}

.fc-col-header-cell * {
  color: #fff !important;
}
.fc .fc-toolbar-title {
    font-size: 1em;
    margin: 0px;
}
/* Calendário */

ul.visuAgenda {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
}
ul.visuAgenda li {
  list-style: none;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #dfdfdf;
  padding: 5px 0 5px 20px;
}
ul.visuAgenda li::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #CCC;
  border-radius: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
ul.visuAgenda li:nth-child(1)::before {
  background-color: #009DC1;
}
ul.visuAgenda li:nth-child(2)::before {
  background-color: #DDA842;
}

ul.assinaturas {
  display: flex;
  margin: 0 0 30px 0;
  padding: 0;
  flex-direction: column;
  flex-wrap: nowrap;
}
ul.assinaturas > li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 5px 0 5px 20px;
  background-color: #f1f1f1;
  padding: 5px 19px;
  width: calc(100% - 40px);
  border-radius: 10px;
}
ul.assinaturas > li p {
  margin-bottom: 0;
}

/* xs: menor que 576px */
@media (max-width: 575.98px) {
  div.qdLogo {
    margin-left: -220px;
  }
  div.qdFerramentas {
    width: 100%;
  }
  div.menu {
    transform: translateX(-100%);
    z-index: 3;
  }
  div.menu.show {
    transform: translateX(0);
  }
  div.main {
    margin-left: 0;
  }
}

/* sm: entre 576px e 767.98px */
@media (min-width: 576px) and (max-width: 767.98px) {
  div.qdLogo {
    margin-left: -220px;
  }
  div.qdFerramentas {
    width: 100%;
  }
  div.menu {
    transform: translateX(-100%);
    z-index: 3;
  }
  div.menu.show {
    transform: translateX(0);
  }
  div.main {
    margin-left: 0;
  }
}

/* md: entre 768px e 991.98px */
@media (min-width: 768px) and (max-width: 991.98px) {

}

.cardDash {
  padding: 5px;
  border-radius: 5px;
  width: 100%;
  box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03),0 0.9375rem 1.40625rem rgba(4,9,20,0.03),0 0.25rem 0.53125rem rgba(4,9,20,0.05),0 0.125rem 0.1875rem rgba(4,9,20,0.03);
}
.cardDash h3 {
  font-size: 1.3em;
}
.cardDash .cardBody {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 15px;
}
.cardDash .cardBody p {
  font-size: 1.7em;
  margin: -13px 0 0 0;
  font-weight: bold;
}
.cardDashTopo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.cardDash .bottom {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 5px;
}

.ferramentasTopo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.listaEvolucao li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.listaEvolucao li div:first-child {
  width: 60%;
}
.listaEvolucao li div:last-child {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: end;
  width: 40%;
}
.listaEvolucao li div:last-child .dropdown {
  margin-left: 5px;
}