@font-face {
  font-family: 'Inter';
  src: url('/view/fonts/Inter/Inter-VariableFont_slnt\,wght.ttf');
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.hint {
  border: 1px solid;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  margin: 10px auto;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  width: fit-content;

  &[data-color="primary"] {
    border-color: var(--cor-04);
    color: var(--cor-04);
    background-color: #e0e7ee;
  }

  &[data-color="secondary"] {
    border-color: var(--cor-01);
    color: var(--cor-01);
    background-color: #fef7ee;
  }
}





@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}



:root {
  --cor-00: #e8e9ee;
  --cor-01: #f7941d;
  --cor-02: #363273;
  --cor-03: #585858;

  --cor-04: #003875;
  --cor-04-opc: 0 56 117;



  --cor-05: #aaaaaa;
  --lato: "Lato", sans-serif;
  --heavy: "Lato-Heavy", sans-serif;
  --primary: var(--cor-02);
  --secondary: var(--cor-01);
  --tertiary: var(--cor-04);
  --success: #0099DD;
  --info: var(--cor-05);
  --warning: #FF9933;
  --danger: #E3371E;

  --main: #313a46;
  --main-rgb: 49 58 70;
  --main-hover: #323e50;

  --background-theme: #fff;

  --secondary-theme: #f3f3f3;
  --secondary-theme-opc: 242 242 242;

  --primary-theme: #fff;
  --primary-theme-opc: 255 255 255;

  --primary-blue: #3498db;
  --primary-blue-opc: 52 152 219;

  --secondary-blue: #e1e9f5;
  --secondary-blue-opc: 225 233 245;

  --tertiary-blue: #1b4d81;
  --tertiary-blue-opc: 27 77 129;

  --primary-green: #3da45b;
  --primary-green-opc: 61 164 91;

  --primary-red: #ef4444;
  --primary-red-opc: 239 68 68;

  --primary-yellow: #f59e0b;
  --primary-yellow-opc: 245 158 11;

  --primary-zinc: #4a4e51;
  --primary-zinc-opc: 74 78 81;

  --white: #ffffff;
  --black: #000000;

  --text-color: #585858;
  --text-color-rgb: 88 88 88;




  --cor-svg-areas: #3677bb;
  --cor-fundo-card: #fff;
  --titulo-cor: #1b4d81;
  --titulo-cor-opc: 27 77 129;
  --titulo-cor-secundaria: #fff;





  --nav-interno-bg: #313a46;
  --nav-interno-outline: #4f698b;
  --linha-fieldset: #0000002e;

  --cor-fundo-card-interno: #fff;
  --cor-fundo-card-interno-opc: 255 255 255;
  --cor-borda-card-interno: #00000020;

  --cor-fundo-comunica-lido: #f5f6f9;
}

/* POPUPINFO */
.popupInfo {
  z-index: 999999;
  animation: fadeToTop 200ms forwards;
  transition: 200ms bottom;
  background-color: var(--primary-theme);
  color: var(--primary-theme);
  position: absolute;
  width: 300px;
  right: 3rem;
  bottom: 1rem;
  border-radius: .5rem;
  box-shadow: rgb(0 0 0 / 11%) 0px 2px 8px;
  overflow: hidden;

  &.success {
    background-color: var(--primary-green);
  }

  &.danger {
    background-color: var(--primary-red);
  }

  &.info {
    background-color: var(--primary-blue);
  }

  &.warning {
    background-color: var(--primary-yellow);
  }

  &.load {
    background-color: var(--primary-theme);
    border: 1px solid var(--primary-blue);

    & .info {
      padding-bottom: .75rem;
    }

    & p {
      color: var(--text-color);
    }

    & i {
      color: var(--primary-blue);
    }
  }

  &.progress {
    background-color: var(--primary-theme);
    border: 1px solid var(--primary-blue);
    /* Sobrepondo o bootstrap */
    display: block;
    height: unset;
    font-size: unset;
    color: var(--text-color);

    & .info {
      padding-bottom: .75rem;
    }

    & i {
      color: var(--primary-blue);
    }

    & .line-progress {
      height: .25rem;

      & div {
        transition: 200ms width;
        background-color: var(--primary-blue);
        height: 100%;
        border-radius: 999px;
      }
    }
  }

  & .info {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;

    & i {
      margin-top: 4px;
    }

    & span {
      margin-left: auto;
    }
  }

  & p {
    margin: 0;
  }
}

@keyframes fadeToTop {
  from {
    transform: translateY(.5rem);
    opacity: 0;
  }

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

@keyframes fadeToBottom {
  from {
    transform: translateY(-.5rem);
    opacity: 0;
  }

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

@keyframes fadeToLeft {
  from {
    transform: translateX(.5rem);
    opacity: 0;
  }

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

.card {
  border-radius: 24px;
}

.bg-primary,
.btn-primary {
  background-color: var(--cor-04) !important;
}

.bg-secondary,
.btn-secondary {
  background-color: var(--secondary) !important;
}

.bg-tertiary,
.btn-tertiary {
  background-color: var(--tertiary) !important;
}

.bg-success,
.btn-success {
  background-color: var(--success) !important;
}

.bg-info,
.btn-info {
  background-color: var(--info) !important;
}

.bg-warning,
.btn-warning {
  background-color: var(--warning) !important;
}

.bg-danger .btn-danger {
  background-color: var(--danger) !important;
}

.nav-link {
  color: var(--primary) !important;
}

.nav-link:hover {
  color: var(--warning) !important;
}

.dropdown-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 10;
}

@font-face {
  font-family: "Lato-Heavy";
  src: url(../font/Lato-Heavy.eot);
  src: url(../font/Lato-Heavy.eot?#iefix) format("embedded-opentype"), url(../font/Lato-Heavy.woff2) format("woff2"), url(../font/Lato-Heavy.woff) format("woff"), url(../font/Lato-Heavy.svg#Lato-Heavy) format("svg"), url(../font/Lato-Heavy.otf) format("otf");
}

/* Scrollbar style */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Scrollbar style */

#animation {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
}

.titulo-secao {
  color: var(--cor-04);
  font-size: 32px;
  font-weight: 400;
  font-family: var(--heavy);
}

.titulo-secao a {
  color: var(--cor-04);
}

.tag {
  display: inline-block;
  padding: 3px 9px;
  font-family: var(--heavy);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 4px;
  line-height: 9px;
}

.tag.laranja {
  background-color: var(--cor-01);
  color: white;
  padding: 10px 13px 10px 13px;
  border-radius: 12px 0px 12px 0px;
}

.botao {
  border: none;
  display: inline-block;
  font-size: 18px;
  padding: 10px 30px;
  text-align: center;
  border-radius: 17px;
}

.botao.laranja {
  background-color: var(--cor-01);
  color: white;
}

.botao.azul {
  background-color: var(--cor-04);
  color: white;
}

.botao.cancelar {
  font-size: 14px;
  background-color: var(--cor-00);
  color: var(--danger);
  padding: 10px 15px;
}

.elemento-1 {
  border: none;
  opacity: 1;
  width: 35px;
  height: 7px;
  border-radius: 4px;
  margin: 0 auto;
}

.elemento-1.laranja {
  background: var(--cor-01);
}

html {
  overflow-x: hidden;
}

html.open {
  overflow-y: hidden;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--cor-00);
  overflow-x: hidden;
}


body.open {
  overflow-y: hidden;
}

a,
a:hover {
  text-decoration: none;
}

header {
  height: 128px;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  margin-bottom: 72px;
}

header #logo {
  height: 78px;
  margin: 0;
}

header #logo a span {
  font-size: 0;
  color: transparent;
}

header #area-login {
  height: 78px;
  gap: 20px;
}

header #area-login .aniversario {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}

header #area-login .aniversario .saudacao {
  text-transform: capitalize;
}

header #area-login .aniversario .perfil {
  height: 36.5px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

header #area-login .aniversario .perfil .foto {
  width: 36.5px;
  height: 36.5px;
  overflow: hidden;
}

header #area-login .aniversario .perfil .foto .img-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

header #area-login .aniversario .perfil .nome {
  line-height: 12px;
}

header #area-login .aniversario .perfil .nome a {
  color: white;
  font-size: 12px;
}

header #area-login .aniversario .perfil .chapeu {
  position: absolute;
  top: -12px;
  left: -18px;
}

header #area-login .notificacoes {
  position: relative;
}

header #area-login .notificacoes .icone {
  position: relative;
}

.icone img {
  width: 20px;
}

.sair img {
  width: 20px;
}

.engrenagem img {
  width: 20px;
}

header #area-login .notificacoes .icone #qtd-notificacoes {
  display: block;
  color: white;
  font-size: 8px;
  background-color: var(--cor-01);
  width: 14.3px;
  height: 14.3px;
  line-height: 17px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
  text-align: center;
}

header #area-login .notificacoes .open-lista {
  /* DISPLAY FIXAR NOTIFICAÇÃO */
  display: none;
  position: absolute;
  padding-top: 20px;
  transform: translateX(-46%);
  z-index: 5;
}

/* ::-webkit-scrollbar {
  display: none;
} */

.lista-notificacao-pop-up::-webkit-scrollbar,
::-webkit-scrollbar-track {
  display: block;
  background: #F2F2F2;
  /* Cor de fundo */
  border-radius: 10px;
  /* Borda arredondada (opcional) */
}

.lista-notificacao-pop-up::-webkit-scrollbar,
::-webkit-scrollbar-thumb {
  display: block;
  background: #003875;
  /* Cor do thumb */
  border-radius: 10px;
  /* Borda arredondada */
}

header #area-login .notificacoes .open-lista .pop-up {
  background-color: white;
  height: 280px;
  width: 250px;
  z-index: 5;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  flex-direction: column;
}

header #area-login .notificacoes .open-lista .pop-up .titulo {
  background: #F2F2F2;
  color: #003875;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  z-index: 10;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .row {
  margin-bottom: 12px !important;
  padding: 12px !important;
  border: none !important;
  border-bottom: 1px solid #f0f0f0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .row:last-child {
  border-bottom: none !important;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .row:hover {
  background: #f8f9fa !important;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .row .col-12 {
  padding: 0 !important;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .row .col-12 strong {
  color: #2c3e50;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  margin-bottom: 4px;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .row .col-12:not(:has(strong)):not(.data) {
  color: #f8991d;;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  background-color: none;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .row .col-12.data {
  color: #999;
  font-size: 9px;
  margin-top: 4px;
}

header #area-login .notificacoes .open-lista .pop-up .link {
  background: white;
  border-top: 1px solid #e5e5e5;
  padding: 12px 20px;
  text-align: center;
}

header #area-login .notificacoes .open-lista .pop-up .link a {
  color: #007bff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

header #area-login .notificacoes .open-lista .pop-up .link a:hover {
  color: #0056b3;
  text-decoration: underline;
}






header #area-login .notificacoes .open-lista .pop-up {
  /* TAMANHO CARD */
  background-color: white;
  height: 230px;
  width: 250px;
  z-index: 5;
  /* padding: 20px; */
  border-radius: 8px;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .nota hr {
  margin-top: 7px;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .nota .texto {
  /* TAMANHO DA FONT */
  display: block;
  color: var(--cor-02);
  font-size: 18px;
  FONT-WEIGHT: 500;
  line-height: 16px;
  margin-bottom: 12px;
}

header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .nota .data {
  /* TAMANHO DA DATA */
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--darkGray);
}

.lista-notificacao-pop-up {
  display: flex;
  flex-direction: column;
  margin: 5px;
}


header #area-login .notificacoes .open-lista .pop-up .lista-notificacao-pop-up .nota:last-child hr {
  border: none;
  margin-top: 0;
}

header #area-login .notificacoes .open-lista .pop-up .link a {
  /* TAMANHO FONT VER TUDO */
  color: var(--cor-01);
  font-size: 15px;
  font-weight: 500;
}

header #area-login .notificacoes .open-lista .pop-up::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: white;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

header #area-login .notificacoes .open-lista.active {
  display: block;
}

header #area-login .notificacoes:hover .open-lista {
  display: block;
}

header #area-login .notificacoes #pop-up-notificacoes .pop-up {
  overflow: hidden;
}

header #area-login .notificacoes #pop-up-notificacoes .pop-up .lista-notificacao-pop-up {
  /* OVERFLOW NOTIFICAÇÃO */
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;

}

header #area-login .notificacoes #pop-up-notificacoes .pop-up .link {
  line-height: 14px;
}

header #area-login .sair a {
  color: white;
  font-size: 12px;
}

header #area-login .sair a img {
  margin-right: 5px;
}

header::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #003875;
  opacity: 1;
  z-index: -1;
}

header #menu .nivel-2 {
  display: none;
  width: 100vw;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: white;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
}

header #menu .nivel-2 ul {
  width: 100%;
  height: 80px;
  text-align: center;
}

header #menu .nivel-2 ul .opc-nivel-2 {
  font-size: 16px;
  color: var(--cor-04);
  text-shadow: -0.25px -0.25px 0 transparent, 0.25px 0.25px transparent;
  margin: 0 4px;
}

header #menu .nivel-2 ul li:hover a,
header #menu .nivel-2 ul li.active a {
  text-shadow: -0.25px -0.25px 0 var(--cor-04), 0.25px 0.25px var(--cor-04);
}

header #menu .nivel-2 .sub-titulo {
  padding: 5px 10px;
  margin: 5px 0;
}

header #menu .nivel-2 .sub-titulo strong {
  color: var(--cor-01);
  display: block;
  border: 1px solid var(--cor-01);
  border-bottom: none;
  padding-top: 5px;
}

header #menu .nivel-2 .sub-titulo ul {
  height: 40px;
}

header #menu ul.nivel-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  text-align: center;
}

header #menu ul.nivel-1 li {
  display: inline-block;
}

header #menu ul.nivel-1 li .opc-nivel-1 {
  font-size: 16px;
  color: white;
  text-shadow: -0.25px -0.25px 0 transparent, 0.25px 0.25px transparent;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  position: relative;
}

header #menu ul.nivel-1 li.active .opc-nivel-1,
header #menu ul.nivel-1 li:hover .opc-nivel-1 {
  text-shadow: -0.25px -0.25px 0 white, 0.25px 0.25px white;
}

header #menu ul.nivel-1 li.active .opc-nivel-1::after,
header #menu ul.nivel-1 li:hover .opc-nivel-1::after {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 7.5px;
  background-color: var(--cor-01);
  border-radius: 3.3px;
  bottom: -3px;
  left: 50%;
  transform: translateX(-45%);
  z-index: 2;
}

header #menu ul.nivel-1 li:hover .nivel-2 {
  display: flex;
}

header.scroll::before {
  opacity: 1;
}

footer {
  background-color: var(--cor-04);
  padding: 30px 0;
}

footer .social {
  gap: 40px;
}

footer .social .texto {
  font-family: var(--heavy);
  font-size: 12.5px;
  color: white;
}

footer .social ul {
  gap: 10px;
  margin: 0;
}

footer .direitos {
  height: 130px;
  display: flex;
  align-items: flex-end;
  color: white;
  font-size: 12px;
  letter-spacing: 1px;
}

.laranja {
  color: var(--cor-01);
}

.footer-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 90px));
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.footer-icons .icons {
  width: 100%;
}

/*ACEITES*/
#aceites {
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--cor-00);
  width: 100vw;
  height: 100vh;
}

#aceites .area-close .link-close {
  color: var(--cor-04);
  font-size: 14px;
}

#aceites .area-close .link-close img {
  height: 25px;
}

#aceites .topo .titulo-secao {
  line-height: 34px;
}

#aceites .topo .titulo-secao .data {
  color: var(--cor-01);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--lato);
}

#aceites .texto {
  font-size: 16px;
  color: var(--cor-04);
  line-height: 20px;
  /*min-height: 200px;*/
  overflow: auto;
}

#aceites .rodape {
  font-size: 16px;
  color: var(--cor-04);
  line-height: 20px;
}

.texto-pop-up-notificacao {
  display: block;
  color: #003875;
  font-size: 18px;
  FONT-WEIGHT: 500;
  /* line-height: 16px; */
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.25rem;
  height: 2.8rem;
  max-height: 2.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/*-xl*/
/*-lg*/
@media (max-width: 1199.98px) {
  header #menu ul.nivel-1 li .opc-nivel-1 {
    font-size: 14px;
  }

  header #menu .nivel-2 ul .opc-nivel-2 {
    font-size: 12px;
  }
}

/*-md*/
@media (max-width: 991.98px) {
  header {
    height: auto;
  }

  header #menu {
    display: block;
    position: fixed;
    top: 0;
    left: -101vw;
    width: 100vw;
    height: 100vh;
    background: var(--cor-00);
    z-index: 5;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.3s;
  }

  header #menu #fechar-menu {
    height: 70px;
    width: 100%;
    line-height: 70px;
    font-size: 10px;
    color: var(--cor-04);
    position: fixed;
    top: 0;
    left: -101vw;
    background-color: transparent;
    transition: 0.5s;
  }

  header #menu #fechar-menu img {
    margin-left: 10px;
    height: 24px;
  }

  header #menu ul.nivel-1 {
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 5vw;
    padding-top: 70px;
  }

  header #menu ul.nivel-1>li {
    margin-bottom: 25px;
  }

  header #menu ul.nivel-1>li .opc-nivel-1 {
    color: var(--cor-04);
    margin: 0 auto;
    margin-bottom: 0px;
    padding: 0;
    font-family: var(--heavy);
    height: auto;
    display: inline;
  }

  header #menu ul.nivel-1>li:hover .opc-nivel-1,
  header #menu ul.nivel-1>li.active .opc-nivel-1 {
    color: var(--cor-01);
  }

  header #menu ul.nivel-1>li:hover .opc-nivel-1::after,
  header #menu ul.nivel-1>li.active .opc-nivel-1::after {
    display: none;
  }

  header #menu .nivel-2 {
    display: block;
    width: 80vw;
    padding-left: 5vw;
    position: static;
    box-shadow: none;
    background: var(--cor-00);
  }

  header #menu .nivel-2 ul {
    position: static;
    height: auto;
    text-align: left;
    width: 100%;
  }

  header #menu .nivel-2 ul li {
    height: 40px;
    line-height: 40px;
    display: block;
  }

  header #menu .nivel-2 ul li a.active {
    color: var(--cor-01);
  }

  header #menu .nivel-2 .sub-titulo strong {
    border: none;
  }

  header #menu .nivel-2 .sub-titulo ul {
    height: auto;
  }

  header #menu .nivel-2 .sub-titulo ul li {
    padding-left: 15px;
    display: block;
  }

  header #menu.open {
    left: 0;
  }

  header #menu.open #fechar-menu {
    left: 0;
  }

  header #topo .titulo-area {
    font-family: var(--heavy);
    font-size: 25px;
    color: white;
  }

  header #topo #logo {
    height: auto;
    margin: 30px 0;
  }

  header #topo #logo img {
    width: 160px;
  }

  header #topo #area-login .aniversario {
    flex-direction: column;
    height: 100%;
    gap: 7px;
    width: 50%;
    align-items: flex-start;
  }

  header #topo #area-login .aniversario .saudacao {
    margin-left: 50px;
  }

  header #topo #area-login .notificacoes .open-lista {
    transform: none;
    right: -48px;
  }

  header #topo #area-login .notificacoes .open-lista .pop-up::before {
    left: auto;
    transform: rotate(45deg);
    right: 50px;
  }

  header::before {
    opacity: 1;
  }

  .botao {
    font-size: 14px;
  }
}

/*-sm*/
@media (max-width: 767.98px) {
  .titulo-secao {
    font-size: 22px;
  }

  header #topo .titulo-area {
    font-size: 20px;
  }

  header #topo #logo {
    margin: 20px 0;
  }

  header #topo #logo img {
    width: 100px;
  }

  header #topo .borda {
    margin-bottom: 20px;
  }

  footer .logo {
    margin-bottom: 30px;
  }

  footer .direitos {
    justify-content: center;
    height: 70px;
  }
}

/*-xs*/
@media (max-width: 575.98px) {
  header #topo .borda {
    margin-bottom: 15px;
  }

  header #topo .titulo-area {
    font-size: 14px;
  }

  header #topo #logo {
    margin: 10px 0;
  }

  header #topo #logo img {
    width: 80px;
  }

  header #area-login .aniversario .perfil .nome {
    width: 130px;
    overflow: hidden;
  }
}

@media print {
  .noprint {
    display: none !important;
  }

  .impressao td {
    font-size: 9px;
    font-family: monospace !important;
  }

  .impressao th {
    font-size: 9px;
    font-family: monospace !important;
  }

  .impressao>div * {
    font-size: 9px;
    font-family: monospace !important;
  }
}

/*# sourceMappingURL=site.css.map */

/* ESTILIZAÇÃO CALENDARIO DE EVENTOS */
@media screen and (max-width: 768px) {
  .month-select {
    width: 100%;
    margin: 0 15px;
  }
}

.month-select:hover {
  background-color: var(--primary-color);
  color: white;
}

.month-select:focus {
  outline: 2px solid var(--secondary-color);
}

.months-select-container {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  background-color: #f9f9f9;
}

.month-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 10px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-align: center;
  width: 120px;
  align-items: center;
}

@media (max-width: 600px) {
  .calendar-container {
    flex-direction: column;
  }

  .calendar-section,
  .events-section {
    flex: none;
    border-right: none;
  }
}

.events-container {
  padding: 30px;
}

#primeiro-dia-de-evento {
  background: var(--primary-color);
  border-radius: 12px;
  padding: var(--spacing-xl);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.day-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.event-calendar {
  max-width: 1100px;
  margin: 40px auto;
  background-color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.event-card {
  background-color: #f4f6f9;
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.1em;
}

.event-card .event-date {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.event-card .event-date i {
  margin-right: 10px;
}

.event-marker {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.events-display h3 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--cor-04);
  font-size: 20px;
  font-weight: 200;
  font-family: var(--heavy);
}

.events-section {
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.calendar-grid>div {
  text-align: center;
  font-weight: bold;
  font-size: 1.0rem;
  color: var(--cor-04);
  padding: 5px;
}

.navigation-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-header h2 {
  color: var(--cor-04);
  font-size: 30px;
  font-weight: 400;
  font-family: var(--heavy);
}

.calendar-section {
  flex: 2;
  padding: 20px;
  border-right: 1px solid var(--border-color);
}

.event-calendar-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.event-calendar-container {
  background-color: var(--background-color);
}

.calendar-container {
  display: flex;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

.calendario-img {
  width: 500px;
  margin-left: 50px;
}



.calendar-day.current-month {
  color: #333;
  background-color: white;
}

.calendar-day {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 5px;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
  cursor: pointer;
  justify-content: center;
}

.calendar-day.today {
  background-color: var(--today-color);
  font-weight: bold;
}

.calendar-day.selected {

  border-color: var(--quaternary-color);
  box-shadow: 0 0 0 2px var(--quaternary-color);
}

.calendar-day .day-number {
  font-size: 0.9rem;
  text-align: center;
}

.calendar-day.has-event .day-number {
  color: var(--primary-color);
}

/* FIM DA ESTILIZAÇÃO CALENDARIO DE EVENTOS */

.container-brasao-adm {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f8f3;
  padding-left: 250px;
  /* Espaço para o sidebar */
}

.brasao-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 20px;
}

.brasao-image {
  width: 500px;
  height: 500px;
  object-fit: contain;
  opacity: 0.7;
  /* Deixa a imagem um pouco transparente */
}

.li-eventos-mes {
  background: #181b59;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  margin: 8px 0;
  padding: 12px 8px;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.li-eventos-mes .badge-evento {
  background: #fff;
  margin: 0 4px;
  font-weight: 600;
}

.event-list {
  list-style-type: none;
}

.event-list li {
  margin-bottom: 10px;
  padding: 10px;
  color: #f2f2f2;
  background-color: var(--cor-04);
  border-radius: 5px;
  font-size: 0.9rem;
}

.btn-saiba-mais {
  margin-inline: auto;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.375rem;
  outline: none;
  cursor: pointer;
  width: 95%;
  transition: all 0.15s ease-in-out;
  height: fit-content;
  color: rgb(47 71 93);
  white-space: normal;
  background-color: transparent;

  &:hover {
    background-color: rgba(47, 71, 93, 0.098);
  }
}

.pagination-btn {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:disabled,
.pagination-btn.disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.btn-secundario,
.btn-primario,
.btn-terciario,
.btn-quaternario {
  min-width: 48px;
}

.btn-terciario{
  border: unset !important;
  background-color: unset !important;
  color: var(--cor-04) !important;
}

.btn-terciario:hover{
  border: unset !important;
  background-color: rgb(var(--cor-04-opc) / .15) !important;
  color: var(--cor-04) !important;
}

.btn-terciario[data-color="red"]{
  border: unset !important;
  background-color: unset !important;
  color: var(--primary-red) !important;
}

.btn-terciario[data-color="red"]:hover{
  border: unset !important;
  background-color: rgb(var(--primary-red-opc) / .15) !important;
  color: var(--primary-red) !important;
}

.btn-terciario[data-color="green"]{
  border: unset !important;
  background-color: unset !important;
  color: var(--primary-green) !important;
}

.btn-terciario[data-color="green"]:hover{
  border: unset !important;
  background-color: rgb(var(--primary-green-opc) / .15) !important;
  color: var(--primary-green) !important;
}

.btn-terciario[data-color="yellow"]{
  border: unset !important;
  background-color: unset !important;
  color: var(--primary-yellow) !important;
}

.btn-terciario[data-color="yellow"]:hover{
  border: unset !important;
  background-color: rgb(var(--primary-yellow-opc) / .15) !important;
  color: var(--primary-yellow) !important;
}

.btn-terciario[data-color="blue"]{
  border: unset !important;
  background-color: unset !important;
  color: var(--cor-04) !important;
}

.btn-terciario[data-color="blue"]:hover{
  border: unset !important;
  background-color: rgb(var(--cor-04-opc) / .15) !important;
  color: var(--cor-04) !important;
}

.btn-primario {
  background-color: var(--cor-04);
  border: 1px solid var(--cor-04);
  color: var(--white);
}

.btn-primario:hover {
  background-color: rgb(0, 56, 117 / .75);
  color: var(--white);
}

.btn-primario:active {
  background-color: rgb(0, 56, 117 / .65);
  color: var(--white);
}

.btn-primario:disabled {
  background-color: var(--cor-04);
  border: 1px solid var(--cor-04);
  color: var(--white);
  opacity: .5;
  cursor: not-allowed;
}

.btn-primario[data-color="green"] {
  background-color: var(--primary-green);
  border: 1px solid var(--primary-green);
  color: var(--white);
}

.btn-primario[data-color="blue"] {
  background-color: var(--cor-04);
  border: 1px solid var(--cor-04);
  color: var(--white);
}

.btn-primario[data-color="yellow"] {
  background-color: var(--primary-yellow);
  border: 1px solid var(--primary-yellow);
  color: var(--white);
}

.btn-primario[data-color="red"] {
  background-color: var(--primary-red);
  border: 1px solid var(--primary-red);
  color: var(--white);
}

.btn-primario[data-color="green"]:hover {
  background-color: rgb(var(--primary-green-opc) / .75);
  color: var(--white);
}

.btn-primario[data-color="blue"]:hover {
  background-color: rgb(var(--cor-04-opc) / .75);
  color: var(--white);
}

.btn-primario[data-color="yellow"]:hover {
  background-color: rgb(var(--primary-yellow-opc) / .75);
  color: var(--white);
}

.btn-primario[data-color="red"]:hover {
  background-color: rgb(var(--primary-red-opc) / .75);
  color: var(--white);
}

.btn-primario[data-color="green"]:active {
  background-color: rgb(var(--primary-green-opc) / .65);
  color: var(--white);
}

.btn-primario[data-color="blue"]:active {
  background-color: rgb(var(--cor-04) / .65);
  color: var(--white);
}

.btn-primario[data-color="yellow"]:active {
  background-color: rgb(var(--primary-yellow-opc) / .65);
  color: var(--white);
}

.btn-primario[data-color="red"]:active {
  background-color: rgb(var(--primary-red-opc) / .65);
  color: var(--white);
}

.btn-primario[data-color="green"]:disabled {
  background-color: var(--primary-green);
  border: 1px solid var(--primary-green);
  color: var(--white);
  opacity: .5;
  cursor: not-allowed;
}

.btn-primario[data-color="blue"]:disabled {
  background-color: var(--cor-04);
  border: 1px solid var(--cor-04);
  color: var(--white);
  opacity: .5;
  cursor: not-allowed;
}

.btn-primario[data-color="yellow"]:disabled {
  background-color: var(--primary-yellow);
  border: 1px solid var(--primary-yellow);
  color: var(--white);
  opacity: .5;
  cursor: not-allowed;
}

.btn-primario[data-color="red"]:disabled {
  background-color: var(--primary-red);
  border: 1px solid var(--primary-red);
  color: var(--white);
  opacity: .5;
  cursor: not-allowed;
}


.btn-secundario[data-color="green"] {
  background: none;
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
}

.btn-secundario[data-color="blue"] {
  background: none;
  color: var(--cor-04);
  border: 1px solid var(--cor-04);
}

.btn-secundario[data-color="yellow"] {
  background: none;
  color: var(--primary-yellow);
  border: 1px solid var(--primary-yellow);
}


.btn-secundario[data-color="red"] {
  background: none;
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
}

.btn-secundario[data-color="green"]:hover {
  background: rgb(var(--primary-green-opc) / .3);
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-secundario[data-color="blue"]:hover {
  background: rgb(var(--cor-04-opc) / .3);
  color: var(--cor-04);
  border-color: var(--cor-04);
}

.btn-secundario[data-color="yellow"]:hover {
  background: rgb(var(--primary-yellow-opc) / .3);
  color: var(--primary-yellow);
  border-color: var(--primary-yellow);
}

.btn-secundario[data-color="red"]:hover {
  background: rgb(var(--primary-red-opc) / .3);
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-secundario[data-color="green"]:active {
  background: rgb(var(--primary-green-opc) / .4);
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-secundario[data-color="blue"]:active {
  background: rgb(var(--cor-04) / .4);
  color: var(--cor-04);
  border-color: var(--cor-04);
}

.btn-secundario[data-color="yellow"]:active {
  background: rgb(var(--primary-yellow-opc) / .4);
  color: var(--primary-yellow);
  border-color: var(--primary-yellow);
}

.btn-secundario[data-color="red"]:active {
  background: rgb(var(--primary-red-opc) / .4) ;
  color: var(--primary-red);
  border-color: var(--primary-red);
}