@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300&family=Inter:wght@200;400;600&family=Poppins:wght@300;400;600&display=swap');

/* Definição de animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Estilos para as linhas coloridas no topo */
.top-color-lines {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

}

.line {
  height: 3px;
  width: 100%;
}

.dark-green {
  background-color: #50b450; /* Verde escuro */
}

.gray {
  background-color: #c5c2c2; /* Cinza */
}

.light-green {
  background-color: #90EE90; /* Verde claro */
}

body { 
  padding: 9px 0 0 0; /* Adicionado padding-top para compensar as 3 linhas de 3px cada */
  margin: 0; 
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

.navbar-home { 
  padding-top: 15px; 
  padding-bottom: 15px; 
  background-color: rgba(255, 255, 255, 0.95); 
  border-bottom: 1px solid rgba(221, 221, 221, 0.5); 
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  animation: fadeInDown 0.6s ease-out;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.navbar-home .container-fluid {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-header {
  padding-left: 20px;
  display: flex;
  align-items: center;
  animation: fadeIn 1s ease-out;
}

.logo-odintech {
  max-height: 40px;
  transition: all 0.3s ease;
}

.logo-odintech:hover {
  transform: scale(1.05);
}

.logo { 
  max-width: 150px; 
  color: #22b14c; 
  font-size: 24px; 
  font-weight: bold; 
  text-decoration: none; 
  transition: all 0.3s ease;
  animation: fadeIn 1s ease-out;
}

.logo:hover { 
  text-decoration: none; 
  color: #22b14c; 
  transform: scale(1.05);
}

.menu-home { 
  display: flex; 
  justify-content: flex-end; 
  align-items: center; 
  animation: fadeIn 1s ease-out;
  padding: 0;
  margin: 0;
  width: 100%;
}

.item-menu-home { 
  list-style-type: none; 
  padding-right: 15px; 
  transition: all 0.3s ease;
  animation: slideInRight 0.8s ease-out;
  animation-fill-mode: both;
}

.item-menu-home:nth-child(1) { animation-delay: 0.1s; }
.item-menu-home:nth-child(2) { animation-delay: 0.2s; }
.item-menu-home:nth-child(3) { animation-delay: 0.3s; }
.item-menu-home:nth-child(4) { animation-delay: 0.4s; }
.item-menu-home:nth-child(5) { animation-delay: 0.5s; }

.item-menu-home a { 
  color: #333; 
  background-color: rgba(248, 249, 250, 0.8); 
  padding: 8px 15px; 
  border-radius: 8px; 
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.item-menu-home a:hover { 
  text-decoration: none; 
  background-color: #22b14c; 
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(34, 177, 76, 0.3);
}
.select-plataforma-home { 
  max-width: 600px; 
  padding-top: 5%; 
  margin: auto; 
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.8s ease-out;
}

.select-plataforma-home h4 { 
  margin-bottom: 10px; 
  font-weight: 600;
  color: #333;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.select-plataforma { 
  width: 100%; 
  height: 50px; 
  border: 1px solid rgba(34, 177, 76, 0.5); 
  border-radius: 8px; 
  background-color: white; 
  cursor: pointer; 
  line-height: 50px; 
  padding-left: 20px; 
  position: relative; 
  z-index: 10; 
  font-weight: 400;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.select-plataforma:hover {
  border-color: #22b14c;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.select-plataforma::after {
  content: '↓';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #22b14c;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.select-plataforma.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.select-plataforma-options { 
  width: 100%; 
  background-color: white; 
  border: 1px solid rgba(34, 177, 76, 0.5); 
  border-top: 0px; 
  border-radius: 0 0 8px 8px; 
  padding: 5px 0; 
  display: none; 
  list-style: none; 
  position: absolute;
  z-index: 9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none; /* Remove a barra de rolagem no Firefox */
  -ms-overflow-style: none; /* Remove a barra de rolagem no IE/Edge */
}

.select-plataforma-options::-webkit-scrollbar {
  width: 0; /* Remove a barra de rolagem no Chrome/Safari/Opera */
  display: none; /* Alternativa para garantir que a barra de rolagem não apareça */
}

.plataforma-option { 
  color: #444; 
  list-style-type: none; 
  padding: 10px 20px; 
  border-bottom: 1px solid rgba(240, 240, 240, 0.5); 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.plataforma-option:last-child {
  border-bottom: none;
}

.plataforma-option:hover { 
  color: #fff; 
  background-color: #22b14c; 
  transform: translateX(5px);
}

.plataforma-option::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #22b14c;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.plataforma-option:hover::before {
  opacity: 1;
  left: 8px;
}

.select-plataforma-options a {
  text-decoration: none;
  display: block;
}

.select-plataforma-options a:hover { 
  text-decoration: none; 
}
.sem-borda { border: 0; }

.rodape { 
  position: fixed; 
  width: 100%; 
  bottom: 0; 
  text-align: center; 
  background-color: rgba(248, 249, 250, 0.95); 
  backdrop-filter: blur(10px);
  padding: 15px 0; 
  border-top: 1px solid rgba(221, 221, 221, 0.5);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.3s ease;
}

.rodape:hover {
  background-color: rgba(248, 249, 250, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.rodape p { 
  line-height: 100%; 
  margin: 0; 
  font-size: 14px; 
  color: #6c757d; 
  transition: all 0.3s ease;
  animation: fadeIn 1s ease-out;
}

.rodape:hover p {
  color: #333;
  transform: scale(1.02);
}
.botao-plataformas { 
  max-width: 50%; 
  display: flex; 
  justify-content: space-around; 
  margin: auto; 
  margin-bottom: 20px; 
  animation: fadeIn 1.2s ease-out;
}

.link-plat { 
  width: 150px; 
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.link-plat:hover { 
  opacity: 0.8; 
  transform: scale(1.1) rotate(2deg);
}

.todas-plat { 
  color: #3d46cb; 
  transition: all 0.3s ease; 
  position: relative;
  overflow: hidden;
}

.todas-plat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3d46cb;
  transition: width 0.3s ease;
}

.todas-plat:hover { 
  text-decoration: none; 
  color: #22b14c; 
  transform: translateY(-2px);
}

.todas-plat:hover::after {
  width: 100%;
}
.topo-login { width: 100%; display: flex; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; align-items: center; }
.home-img-login { width: 30px; }
.corfonte-admin { color: #22b14c; }
.corfonte-admin:hover { text-decoration: none; color: #22b14c; }

.corfonte-fiscal { color: #6dcff6; }
.corfonte-fiscal:hover { text-decoration: none; color: #6dcff6; }
.borda-fiscal { border-bottom: 15px solid #dcf2fd; }
.form-login-area-fiscal {  width:  clamp(300px, 50%, 90%); margin: auto; margin-bottom: 50px;  padding: 5%;  box-shadow: 5px 5px 5px rgb(192, 182, 182);   border-radius: 5px 5px; margin-top: clamp(0, 10%, 200px); background-color: #dcf2fd; }
.botao-fiscal { background-color: #6dcff6; color: #fff; margin-right: 5px; }
.botao-fiscal:hover { background-color: #007bff; color: #fff; }
.rodape-fiscal { position: fixed; bottom: 0; width: 100%; display: flex; flex-direction: column; background-color: #dcf2fd; padding-top: 10px; padding-bottom: 10px; font-size: 1vw; }
.menu-fiscalpage { width: 100%; display: flex; justify-content: space-around; background-color: #d0d2cc; border-top: 5px solid #6dcff6; border-bottom: 3px solid #007bff; }
.menu-fiscalpage-item { font-weight: bold; }
.menu-fiscalpage-item:hover { background-color: #6dcff6; color: #fff; }
.menu-fiscalpage-subitem:hover { background-color: #007bff; color: #fff; }

.corfonte-usuario { color: #6dcff6; }
.corfonte-usuario:hover { text-decoration: none; color: #6dcff6; }
.corfonte-paciente { color: #ccbbdb; }
.corfonte-paciente:hover { text-decoration: none; color: #ccbbdb; }
.imagem-login-box { width: 100%; margin-bottom: 20px; }
.imagem-login { width: 100%; max-height: 300px;}
.borda-admin { border-bottom: 15px solid #e8eed9; }
.borda-usuario { border-bottom: 15px solid #dcf2fd; }
.borda-paciente { border-bottom: 15px solid #ccbbdb; }
.form-login-area-usuario {  width:  clamp(300px, 50%, 90%); margin: auto; margin-bottom: 50px;  padding: 5%;  box-shadow: 5px 5px 5px rgb(192, 182, 182);   border-radius: 5px 5px; margin-top: clamp(0, 10%, 200px); background-color: #dcf2fd; }
.form-login-area-admin { width:  clamp(300px, 50%, 90%);margin: auto; margin-bottom: 50px;  padding: 5%; box-shadow: 5px 5px 5px rgb(192, 182, 182);   border-radius: 5px 5px;  background-color: #e8eed9;}
.form-login-area-paciente {width:  clamp(300px, 50%, 90%); margin: auto; margin-bottom: 50px;  padding: 5%; box-shadow: 5px 5px 5px rgb(192, 182, 182);   border-radius: 5px 5px; background-color: #ccbbdb}
.botao-admin { background-color: #86c88c; color: #fff; margin-right: 5px; }
.botao-admin:hover { background-color: #48bb4f; color: #fff; }
.botao-usuario { background-color: #6dcff6; color: #fff; margin-right: 5px; }
.botao-usuario:hover { background-color: #007bff; color: #fff; }
.botao-paciente { background-color: #b395c6; color:#ffff; margin-right: 5px; }
.botao-paciente:hover { background-color: #d2b1ee;  color: #ffff;}
.login-botoes { display: flex; justify-content: center; }
.rodape-admin { position: fixed; bottom: 0; width: 100%; display: flex; flex-direction: column; background-color:  #e8eed9; padding-top: 10px; padding-bottom: 10px; font-size: 1vw; }
.rodape-usuario { position: fixed; bottom: 0; width: 100%; display: flex; flex-direction: column; background-color: #dcf2fd; padding-top: 10px; padding-bottom: 10px; font-size: 1vw; }
.rodape-paciente { position: fixed; bottom: 0; width: 100%; display: flex; flex-direction: column; background-color: #ccbbdb; padding-top: 10px; padding-bottom: 10px; font-size: 1vw; }
.selecionar-inst-box { max-width: 600px; margin: auto; margin-top: 15%; }
.tela-carregamento { position: absolute; width: 100%; height: 100%; z-index: 99; display: none; background-color: #fff; }
.page-admin-topo { width: 100%; display: flex; justify-content: space-between; padding: 5px; }
.user-info { display: flex; flex-direction: column; align-items: flex-end; font-size: 1vw; }
.info-data { height: 100%; display: flex; align-items: flex-end; font-size: 1vw; }
.logo-centro { display: flex; align-items: center; }
.no-padding { padding: 0; }
.no-margin { margin: 0; }
.menu-adminpage { width: 100%; display: flex; justify-content: space-around; background-color: #a7a5a5a9; border-top: 5px solid #90ee90; border-bottom: 3px solid #2ea553; }
.menu-adminpage-item { color: white; }
.menu-adminpage-item:hover { color: rgb(46, 59, 231);  }
.menu-adminpage-subitem:hover { color: rgb(46, 59, 231); }
.marcadagua { position: fixed; bottom: 15px; right: 15px; opacity: 0.8; max-width: 150px; }
.page-admin-corpo { display: flex; flex-direction: column; margin-top: 10px; }
.input-form { margin-bottom: 10px; }
.titulo-form { margin-bottom: 20px; }
.botao-select-to-select { padding: 0; background-color: rgba(0, 0, 0, 0); border: none; }
.conteudo-corpo::-webkit-scrollbar { display: none; }
.menu-usuariopage { width: 100%; display: flex; justify-content: space-around; background-color: #d0d2cc; border-top: 5px solid #6dcff6; border-bottom: 3px solid #007bff; }
.menu-usuariopage-item { font-weight: bold; }
.menu-usuariopage-item:hover { background-color: #6dcff6; color: #fff; }
.menu-usuariopage-subitem:hover { background-color: #007bff; color: #fff; }

.menu-pacientepage { width: 100%; display: flex; justify-content: space-around; background-color: #d0d2cc; border-top: 5px solid #ccbbdb; border-bottom: 3px solid #ccbbdb; }
.menu-pacientepage-item { font-weight: bold; }
.menu-pacientepage-item:hover { background-color: #ffff00; color: #fff; }
.menu-pacientepage-subitem:hover { background-color: #ffff00; color: #fff; }

.maiusculo { text-transform: uppercase; }
.card-header-user { background-color: #007bff; color: #fff; }
.meu-dropdown { display: flex; }
.meu-menu-dropdown { display: none; }
.cad-conteudo { display: flex; justify-content: center; padding-top: 20px; padding-bottom: 20px; }
.cad-ordem-box { width: 80px; height: 100px; background-color: #000; clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%); }
.cad-ordem-box:hover { cursor: pointer; }
.form-cadastro { width: 100%; display: flex; }
.form-lado { flex: 5; }
.form-divisor { flex: 1; display: flex; justify-content: center; }
.divisor-linha { width: 1px; height: 100%; border-right: 1px solid #2ea553; }
.padding-top { padding-top: 20px; }
.cad-info { width: 100%; border-top: 1px solid #2ea553; margin-top: 20px; padding: 20px; }
.cad-naveg-titulo {  font-size: 1vw; color: #c55b11; border-bottom: 1px solid #2ea553; padding-left: 10px; }
.cad-ordem-box-ativo { width: 360px; height: 100px; background-color: #c5e0b5; clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%); position: relative; }
.ordem-box-lista-link { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-left: 40px; }
.ordem-box-link { color: #aaa; font-size: 1vw; list-style-type: none; }
.ordem-box-link:hover { cursor: default; }
.ordem-box-link-ativo { color: #000; }
.ordem-box-badge { position: absolute; top: 10%; left: 85%; border: 1px solid #000; }
.icone-plat { 
  max-height: 25px; 
  list-style-type: none; 
  margin-right: 10px; 
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-out;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.icone-plat:hover {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}
.lista-sem-dec { list-style-type: none; }
.form-mensagem { min-width: 50%; position: absolute; top: 20%; left: 25%; z-index: 99; }


@media only screen and (max-height: 599px) {
  .conteudo-corpo { height: 480px; }
  .imagem-login { max-height: 250px; }

}
@media only screen and (min-height: 600px) and (max-height: 800px) {
	.conteudo-corpo { height: 480px; }
  .adminpage-subcorpo { padding: 30px; }
  .imagem-login { max-height: 250px; }
}
@media only screen and (min-height: 801px) {
	.conteudo-corpo { height: 600px; }
  .adminpage-subcorpo { padding: 70px; }
}
@media only screen and (min-height: 1000px) {
	.conteudo-corpo { height: 900px; }
  .adminpage-subcorpo { padding: 120px; }
}
@media only screen and (min-height: 1200px) {
	.conteudo-corpo { height: 1100px; }
  .adminpage-subcorpo { padding: 200px; }
}


/* Estilos para o fundo com partículas */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  overflow: hidden;
}

.particles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
  z-index: -9;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(34, 177, 76, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(34, 177, 76, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -8;
  opacity: 0.6;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/png;base64,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');
  opacity: 0.05;
  z-index: -7;
}

/* Animação do ECG (mantida e melhorada) */
svg { 
  height: 10rem; 
  width: 110%; 
  position: absolute; 
  top: 1%; 
  left: -5%; 
  z-index: -6;
}

path { 
  stroke: #2ea553; 
  stroke-width: 2px; 
  fill: none; 
  stroke-dasharray: 800, 500; 
  stroke-dashoffset: 0; 
  animation: pulse 6s infinite linear;
}

path:nth-child(1) { 
  stroke: #b7b4c2;
}
/* Animacao do ECG */
@keyframes pulse {
  0% {
    stroke-dashoffset: 5000;/*velocidade do pulso*/
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/*--------------------------------------TREEVIEW_LISTAGEM_EM_SETORES-------------------------------------------------------*/

.treeView{
    display: flex;
    flex-direction: column;
}
.tabela{
    margin-left: 700px;
    margin-top: 100px;
}
.titulo{
    font-family:Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.andar1{
    padding-left: 5px;
    cursor: pointer;
    font-family:Arial, Helvetica, sans-serif;
}
.andar2{
    padding-left: 15px;
    display: none;
    cursor: pointer;
    font-family:Arial, Helvetica, sans-serif;
}
.andar3{
    padding-left: 40px;
    display: none;
    cursor: pointer;
    font-family:Arial, Helvetica, sans-serif;
}
.Content{
    overflow:auto; 
}

