body {
  font-family: "nunito", sans-serif;
  margin: 0 !important;
  background: #f1f1f1;
}

.navbar {
  background: #251d59;
  height: 98px;
  color: #fff;
  position: relative;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
}

.nav-itens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: 100%;
  margin: 0 25px;
}

.nav-itens a {
  text-decoration: none;
  color: #fff;
  margin: 15px;
  font-size: 20px;
}

.nav-itens a:hover {
  color: #16f9b9;
}

.nav-itens a img {
  width: 202px;
  height: 56px;
}

.nav-itens .links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-itens .sair {
  text-align: end;
}

.nav-line {
  position: absolute;
  background: #16f9b9;
  width: 100%;
  height: 5px;
  top: 100%;
}

.header {
  margin-top: 10%;
}

.card-projeto {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.opcoes-projetos{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.opcoes-projetos button {
  width: 200px;
  height: 160px;
  font-size: 18px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dedede;
  margin: 10px 10px;
}

.opcoes-projetos button:hover {
  background: #fefefe;
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.3s;
}

.opcoes-projetos a{
  width: 200px;
  height: 160px;
  font-size: 18px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dedede;
  margin: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
}

.opcoes-projetos a:hover{
  background: #fefefe;
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.3s;
}

.opcoes-projetos-itens{
  margin: 5px;
}

.card-gerador {
  margin-top: 30px;
}

.card-gerador h2 {
  text-align: center;
  color: #252525;
  font-size: 27px;
}

.card-gerador form {
  width: 45%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 6px;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card-gerador form label {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: bold;
  color: #252525;
}

.card-gerador form input[type="number"],
input[type="text"],
input[type="date"],
select {
  background: #f3f3f7;
  width: 100%;
  font-size: 17px;
  padding: 13px;
  border-radius: 6px;
  box-sizing: border-box;
  border: none;
  color: #797979;
}

.card-gerador .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-gerador input[type="submit"] {
  background-color: #16f9b9;
  color: #252525;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  margin-inline: 20px;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-gerador input[type="submit"]:hover {
  background: #69f9de;
}
/*
#mensagem {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(189 189 189 / 50%);
    z-index: 100;
}

#mensagem p{
    font-size: 22px;
    color: #252525;
}

.modal-carregando {
    width: 500px;
    height: 400px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #16F9B9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

.list-tags {
  background-color: #ff5151;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  margin-inline: 20px;
  font-size: 19px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-tags:hover {
  background-color: #ff7373;
}

.card-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.card-tags h2 {
  color: #252525;
  font-size: 27px;
}

.card-tabela-tags {
  width: 80%;
  background: #fff;
  border-radius: 6px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px;
  margin: auto;
}

/* Estilos para o menu hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #f0f0f0;
  margin: 2px 0;
  transition: 0.4s;
  border-radius: 11px;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
    margin-left: 130px;
    width: 27px;
    padding: 5px;
  }

  .nav-itens .links,
  .nav-itens .sair {
    display: none;
  }

  .nav-itens.active .links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 0px 20px 35px 20px;
    z-index: 9;
    margin: 0 0px 0 10px;
    border-radius: 7px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 200px;
  }

  .nav-itens.active .sair {
    display: flex;
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    text-align: center;
    margin-left: 24px;
    width: 91%;
    bottom: -195px;
  }

  .nav-itens.active .links a,
  .nav-itens.active .sair a {
    margin: 0px 0;
    color: #252525;
    border-bottom: 1px solid #dedede;
    width: 100%;
    text-align: center;
    padding: 5px;
  }
}
/* Fim menu hamburguer */

/* Lista de Tags */

.tabelas-cursos {
  color: #252525;
}

.card-tabela-tags-list {
  width: 80%;
  background: #fff;
  border-radius: 6px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px;
  margin: auto;
  cursor: pointer;
  margin-bottom: 20px;
}

.card-tabela-tags-list h4 {
  font-size: 20px;
  margin: 10px;
  position: relative;
  width: 100%;
}

.card-tabela-tags-list h4::after {
  display: none;
  content: "\25BC";
  position: absolute;
  left: 95%;
  color: #252525;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.card-tabela-tags-list.expandido h4::after {
  transform: rotate(180deg);
}

.card-tabela-tags-list.expandido .tabela-tags-list {
  display: table;
  transition: transform 0.3s ease;
  animation-name: animatetop;
  animation-duration: 0.4s;
  cursor: auto;
}

.card-tabela-tags-list.expandido .baixarPlanilha-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 0;
}

.baixarPlanilha-2 {
  display: none;
}

.baixarPlanilha-2 a {
  background-color: #16f9b9;
  color: #252525;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  margin-inline: 20px;
  font-size: 19px;
  text-decoration: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.baixarPlanilha-2 a:hover {
  background: #69f9de;
}

.copiar-id {
  margin-left: 8px;
}
.tabela-container {
  max-height: 270px;
  overflow-y: auto;
  width: 100%;
}

.tabela-tags-list {
  display: none;
  width: 100%;
  border-collapse: collapse;
}

.tabela-tags-list th {
  background: #16f9b9;
  text-align: center;
  color: #252525;
}

.tabela-tags-list td {
  background: #fff;
  text-align: center;
  color: #434343;
  font-size: 17px;
}

.campo-vazio td {
  padding: 18px;
}

.filtro-itens {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

#filtroCategoria {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 200px;
  background: #fff;
  margin-inline: 20px;
}

.home {
  background-color: #16f9b9;
  color: #252525;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  margin-inline: 20px;
  font-size: 19px;
  text-decoration: none;
}

.home:hover {
  background: #69f9de;
}

.tabelas-cursos {
  padding: 10px;
  border: 1px solid #dedede;
  border-radius: 7px;
  margin-bottom: 50px;
}

.tabela-curso {
  text-align: center;
}

.card-tabela-tags {
  margin-bottom: 30px;
}

.nenhum-resultado {
  text-align: center;
  font-size: 1.2em;
  color: #777;
  margin-top: 20px;
  display: none;
}

.info-cursos-config {
  display: flex;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  font-size: 25px;
  margin: auto;
  cursor: pointer;
}

.dropdown-button:hover {
  background: #efefef;
  border-radius: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  right: -95px;
  top: 32px;
  padding: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #dedede;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-content.show {
  display: block;
  padding: 12px;
  border-radius: 6px;
}

.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);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content {
  animation-name: animatetop;
  animation-duration: 0.4s;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.opcoes-modal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.opcoes-modal #confirmarExclusao {
  background-color: #16f9b9;
  color: #252525;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-inline: 20px;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opcoes-modal #confirmarExclusao:hover {
  background: #69f9de;
}

.opcoes-modal #cancelarExclusao {
  background-color: #ff5151;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-inline: 20px;
  font-size: 19px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opcoes-modal #cancelarExclusao:hover {
  background-color: #ff7373;
}

.editar-curso form {
  text-align: start;
}

.editar-curso form label {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: bold;
  color: #252525;
}

.editar-curso form input[type="submit"] {
  background-color: #16f9b9;
  color: #252525;
  display: flex;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-inline: 20px;
  font-size: 19px;
}

.editar-curso form input[type="submit"]:hover {
  background: #69f9de;
}

.opcoes-modal #cancelarEdicao {
  background-color: #ff5151;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-inline: 20px;
  font-size: 19px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opcoes-modal #cancelarEdicao:hover {
  background-color: #ff7373;
}

/* Fim Lista de Tags */

/* Gerador UTM */

.card-utm {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.card-utm-itens {
  width: 45%;
  margin: 0 0 30px 0;
  padding: 20px;
  border-radius: 6px;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card-utm-itens h2 {
  text-align: center;
  color: #252525;
  font-size: 27px;
}

.card-utm-itens label {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: bold;
  color: #252525;
}

.inputs-group{
  margin: 10px 0;
}

.card-utm-itens input {
  background: #f3f3f7;
  width: 100%;
  font-size: 17px;
  padding: 13px;
  border-radius: 6px;
  box-sizing: border-box;
  border: none;
  color: #797979;
}

.form-utm {
  display: flex;
  flex-direction: column;
}

.form-utm span {
  font-size: 13px;
  color: #949494;
  margin-top: 5px;
}

.inputs-group-itens{
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-id{
  background: #69f9de;
  font-size: 17px;
  border-radius: 6px;
  box-sizing: border-box;
  border: none;
  color: #333333;
  font-weight: bold;
  width: 95px;
  height: 47px;
  cursor: pointer;
  margin-left: 5px;
}

.add-id:hover{
  background: #16f9b9;
}

.gerar-links {
  background-color: #16f9b9 !important;
  color: #252525 !important;
  font-size: 19px !important;
}

.gerar-links:hover {
  background-color: #69f9de !important;
  cursor: pointer;
}

.resultado-utm {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.resultado-utm h3 {
  text-align: center;
  color: #252525;
  font-size: 24px;
  margin: 25px 0px 10px 0;
}

.buttons-result {
  text-align: center;
}

.resultado-utm button {
  background: #69f9de;
  width: 30%;
  font-size: 18px;
  padding: 13px;
  border-radius: 6px;
  box-sizing: border-box;
  border: none;
  color: #252550;
}

.resultado-utm button:hover {
  background-color: #16f9b9 !important;
  cursor: pointer;
}

.resultado-utm textarea {
  background: #f3f3f7;
  width: 100%;
  border-radius: 6px;
  box-sizing: border-box;
  border: 1px solid #dedede;
  color: #2f2f2f;
  height: 135px;
  margin: 0 0 15px 0;
}

button#testar {
  background-color: #22cff9 !important;
  color: #fff;
}

button#testar:hover {
  background-color: #1fb0ff !important;
}

.bg-tabela-tags {
  overflow-y: auto;
}

#tabela-tags-2 td {
  font-size: 15px !important;
}

/* Fim Gerador UTM */

.tabela-tags {
  width: 100%;
  border-collapse: collapse;
}

.tabela-tags th {
  background: #16f9b9;
  text-align: center;
  color: #252525;
}

.tabela-tags td {
  background: #fff;
  text-align: center;
  color: #434343;
  font-size: 17px;
}

th,
td {
  border: 1px solid #ccc;
  padding: 8px;
}

th {
  background-color: #f0f0f0;
}

/* Classe para destacar a linha da UE */
.linha-ue {
  background-color: #f7f7f7;
}

.itens-home {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.baixarPlanilha {
  display: flex;
  align-items: center;
  justify-content: center;
}

.baixarPlanilha a {
  background-color: #16f9b9;
  color: #252525;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  margin-inline: 20px;
  font-size: 19px;
  text-decoration: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.baixarPlanilha a:hover {
  background: #69f9de;
}

.section-login {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-login {
  background: #fff;
  border-radius: 6px;
  width: 30%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  color: #252525;
}

.form-login input {
  background: #f3f3f7;
  width: 100%;
  font-size: 17px;
  padding: 13px;
  border-radius: 6px;
  box-sizing: border-box;
  border: none;
  color: #797979;
}

.form-login button {
  background-color: #1ba57e;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-inline: 20px;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.form-login button:hover {
  background: #46e3b7;
}

.form-login button a {
  text-decoration: none;
}

.card-form h2 {
  text-align: center;
  font-size: 30px;
  color: #1ba57e;
}

.card-form label {
  font-size: 20px;
}

.card-form input {
  margin-top: 10px;
}

.card-form .inputs {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.card-form .inputs p a {
  text-decoration: none;
  color: #1ba57e;
}

.card-form .inputs p a:hover {
  text-decoration: none;
  color: #46e3b7;
}

.footer {
  height: 150px;
  background: #251d59;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.footer .itens {
  text-align: center;
}

.footer .itens img {
  margin: 10px;
}

.line-teste {
  background: #16f9b9;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #251d59;
}

.contatos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contatos span {
  margin-right: 10px;
}

.contatos a {
  margin-right: 10px;
}

.contato a {
  text-decoration: none;
  color: #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1180px) {
  .bg-tabela-tags {
    overflow-y: auto;
  }
}

@media (max-width: 1130px) {
  .header {
    margin-top: 12%;
  }
}

@media (max-width: 960px) {
  .header {
    margin-top: 14%;
  }

  .form-login {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .nav-itens {
    margin: auto;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-itens .links {
    margin-left: 0;
  }

  .header {
    margin-top: 30%;
  }

  .form-login {
    width: 90%;
    margin-top: 10%;
  }

  .opcoes-projetos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .opcoes-projetos button {
    margin: 10px 0;
  }

  .resultado-utm button {
    width: 36%;
  }

  .card-utm-itens {
    width: 80%;
    margin: 0 0 55px 0;
  }

  .card-gerador form {
    width: 80%;
  }

  .list-tags {
    width: 100%;
    margin: auto;
    font-size: 17px;
  }

  .dropdown-content {
    right: 20px;
    top: 50px;
  }

  .card-gerador input[type="submit"] {
    width: 100%;
    margin: 5px;
    font-size: 17px;
  }

  .card-tabela-tags {
    overflow-y: auto;
  }

  .modal-carregando {
    width: 355px;
    height: 325px;
  }

  .card-tabela-tags-list {
    overflow-y: auto;
  }

  .card-tabela-tags-list h4::after {
    left: 90%;
  }

  .line-teste {
    flex-direction: column;
  }

  .dropdown-content.show {
    position: fixed;
    top: 42%;
  }

  .modal-content {
    margin-top: 45%;
  }
}
