body.open-menu {
  padding-top: 130px;
}
body.open-menu header {
  position: fixed;
  top: -130px;
  z-index: 999999;
  -webkit-animation: showMenuMobile 0.3s ease-in-out forwards;
          animation: showMenuMobile 0.3s ease-in-out forwards;
}
body.closing-menu header {
  position: fixed;
  top: 0px;
  z-index: 999999;
  -webkit-animation: hideMenuMobile 0.3s ease-in-out forwards;
          animation: hideMenuMobile 0.3s ease-in-out forwards;
}

header {
  margin-bottom: 50px;
  width: 100%;
  background-color: #fff;
  height: 80px;
  position: relative;
  box-shadow: 0 6px 8.5px 0 rgba(0, 0, 0, 0.25);
}
header .home {
  text-decoration: none;
  position: relative;
  margin-right: 100px;
}
header img {
  max-width: 119px;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .title {
  color: #fff;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin-left: 110px;
  text-decoration: none;
  display: block;
}
header ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
header .btn-login {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #000;
}
header .dropdown .dropdown-menu i {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
header .btn-login i.photo {
  background-image: var(--bk-image);
  background-size: cover;
  background-position: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-style: normal;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary);
  margin-left: 15px;
  color: #fff;
}
header .dropdown .dropdown-menu i.photo {
  background-image: var(--bk-image);
  background-size: cover;
  background-position: center;
  font-style: normal;
  font-size: 13px;
}
header .dropdown .dropdown-menu.show {
  transform: unset !important;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
header .dropdown .dropdown-menu .dropdown-header {
  font-size: 14px;
}
header .dropdown .dropdown-menu .dropdown-item {
  color: var(--secondary);
  text-decoration: underline;
  font-size: 14px;
}
header .dropdown .dropdown-menu .dropdown-item:active {
  color: #fff;
  background-color: var(--secondary-hover);
}

@media (max-width: 768px) {
  header .home {
    width: 100%;
  }
  header img {
    top: 20px;
    max-width: 80px;
  }
  header .title {
    margin-left: 0px;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
  }
}
#header_mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  height: 80px;
  width: 100%;
  z-index: 9999;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease-in-out;
}
#header_mobile .items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
#header_mobile .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
}
#header_mobile .item i {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
}
#header_mobile .item i.photo {
  background-image: var(--bk-image);
  background-size: cover;
  background-position: center;
}
#header_mobile .item span {
  font-size: 12px;
}

@-webkit-keyframes showMenuMobile {
  from {
    top: -130px;
  }
  to {
    top: 0px;
  }
}

@keyframes showMenuMobile {
  from {
    top: -130px;
  }
  to {
    top: 0px;
  }
}
@-webkit-keyframes hideMenuMobile {
  from {
    top: 0px;
  }
  to {
    top: -130px;
  }
}
@keyframes hideMenuMobile {
  from {
    top: 0px;
  }
  to {
    top: -130px;
  }
}
footer {
  background-color: #fff;
}
footer h5 {
  color: #6F04D9;
  font-weight: 800;
}
footer ul {
  margin: 0;
}
footer ul li a {
  color: #6F04D9;
  text-decoration: none;
  font-weight: 300;
}
footer ul li a:hover {
  text-decoration: underline;
  color: #6F04D9;
}
footer ul li a:active, footer ul li a:focus, footer ul li a:visited {
  color: #6F04D9;
}
footer ul:not(.redes-sociais) li {
  margin-bottom: 10px;
}
footer .redes-sociais {
  gap: 20px;
}
footer .redes-sociais a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease-in-out;
  font-size: 25px;
}
footer .redes-sociais a:hover {
  background-color: var(--secondary);
  text-decoration: none;
}

:root {
  --primary: #6F04D9;
  --primary-hover: #5805aa;
  --bs-primary: #6F04D9;
  --bs-primary-rgb: 111, 4, 217;
  --secondary: #3C0396;
  --secondary-hover: #25015f;
  --bs-secondary: #3C0396;
  --bs-secondary-rgb: 60, 3, 150;
  --lilas-claro: #F4EAFF;
}

.badge-border {
  border: 1px solid #6f6f6f;
}

.bg-outline-secondary {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

[href*="?unlicensed"], html:not(.pintura-editor-validated) .pintura-editor:after {
  display: none !important;
}

body {
  overflow-x: hidden;
  background-color: #F0EFEF;
}
body.menu-active {
  overflow-y: hidden;
}

* {
  font-family: "Manrope", sans-serif;
}

.grecaptcha-badge {
  display: none;
}

.inativo {
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  background: #dcc115;
  font-size: 12px;
  z-index: 99999999;
}
.inativo a {
  font-weight: 900;
}

/* tabs custom */
.tabs-custom {
  display: flex;
}
.tabs-custom .btn-tabs {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border: 0;
  margin-right: 20px;
  padding: 10px 30px;
  transition: 0.1s ease-in-out;
  font-size: 14px;
}
.tabs-custom .btn-tabs:last-child {
  margin: 0;
}
.tabs-custom .btn-tabs.active {
  background-color: var(--lilas-claro);
}
.tabs-custom .btn-tabs.active:hover {
  background-color: var(--lilas-claro);
}

.btn-tabs:hover {
  transform: scale(1.1);
}

/* /tabs custom */
/*Alertas*/
.swal2-container.swal2-center {
  z-index: 100000 !important;
}

/* datepicker */
.datepicker {
  margin: 0 auto;
}
.datepicker .day {
  height: 30px;
  max-width: 30px;
  min-width: 30px;
  padding: 0;
  font-size: 12px;
  border-radius: 50%;
}
.datepicker .day.today {
  background: #dfd4f2;
}
.datepicker .day.active {
  background: var(--primary);
}

/* /datepicker */
