body
{
    background-color: #8c0052;
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 1% 0 100px 0;
    padding: 0;
}

#imgTopo
{
    margin: 0 0 1% 0;
    height: 10%;
    text-align: center;
}

#conteudo
{
  border-radius: 16px;
  background: #ffffff;
  /*box-shadow:  35px 35px 70px #ffffff;*/
  text-align: center;
  padding: 20px;
  margin: 0 0 0 7%;
  width: 80%;
  position: absolute;
}

/* CONFIGURAÇÃO DO BOTÃO */
.myCard {
    background-color: transparent;
    width: 180px;
    height: 234px;
    perspective: 1000px;
    display: inline-block; /* Adicionado para exibir os cartões lado a lado */
    margin: 10px; /* Espaçamento entre os cartões */
}

.title 
{
    font-size: 1.5em;
    font-weight: 900;
    text-align: center;
    margin: 0;
}

.title2
{
    text-align: center;
    margin: 2px;
}

.innerCard 
{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.myCard:hover .innerCard 
{
    transform: rotateY(180deg);
}

.frontSide, .backSide 
{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /*border: 1px solid rgba(255, 255, 255, 0.8);*/
    border-radius: 1rem;
    color: black;
    box-shadow: 0 0 0.3em rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

/* FUNDO SEM IMAGEM */
.frontSide, .frontSide::before 
{
    /* background: linear-gradient(43deg, rgb(140, 0, 82) 0%, rgb(140, 0, 82) 46%, rgb(140, 0, 82) 100%); */
    background: rgb(140, 0, 82);
    background-size: cover; /* Ajusta o tamanho da imagem para cobrir todo o espaço */
    background-position: center; /* Centraliza a imagem no cartão */
}

/* Estilos do cartão GLPI */
.myCard-glpi .frontSide-glpi 
{
    background-image: url('../imgs/glpi.png');
}

/* Estilos do cartão AGENDA */
.myCard-agenda .frontSide-agenda {
    background-image: url('../imgs/agenda.png');
}    

/* Estilos do cartão MANUTENCAO */
.myCard-manutencao .frontSide-manutencao {
    background-image: url('../imgs/manutencao.png');
} 

/* Estilos do cartão MOODLE */
.myCard-moodle .frontSide-moodle {
  background-image: url('../imgs/moodle.png');
}  
        
/* Estilos do cartão EMAIL */
.myCard-email .frontSide-email {
    background-image: url('../imgs/email.png'); 
    color: white;          
}  

/* Estilos do cartão VAGAS */
.myCard-vagas .frontSide-vagas {
    background-image: url('../imgs/emprego.png');
}

/* Estilos do cartão SITE */
.myCard-site .frontSide-site {
    background-image: url('../imgs/site.png'); 
}

/* Estilos do cartão SISTEMA PONTO */
.myCard-ponto .frontSide-ponto {
    background-image: url('../imgs/ifractal.png'); 
}

/* Estilos do cartão MARCAÇÃO DE PONTO */
.myCard-marcacao .frontSide-marcacao {
    background-image: url('../imgs/registroponto.png'); 
}

/* Estilos do cartão WARELINE */
.myCard-wareline .frontSide-wareline {
    background-image: url('../imgs/wareline.png'); 
}

/* Estilos do cartão NEXTCLOUD */
.myCard-nextcloud .frontSide-nextcloud {
  background-image: url('../imgs/nextcloud.png'); 
  display: block !important;
}

/* Estilos do cartão LOGOS FATIMA */
.myCard-logosfatima .frontSide-logosfatima {
  background-image: url('../imgs/fatimalogos.png'); 
  display: block !important;
}

/* Estilos do cartão DOCUMENTOS FATIMA */
.myCard-documentosfatima .frontSide-documentosfatima {
  background-image: url('../imgs/fatimadocumetos.png'); 
  display: block !important;
}

.backSide, .backSide::before 
{
    background-image: linear-gradient(160deg, #ffffff 0%, #80D0C7 100%);
}

.backSide 
{
    transform: rotateY(180deg);
}

.backSide a
{
    cursor: pointer;
}

.frontSide::before, .backSide::before 
{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 110%;
    height: 110%;
    position: absolute;
    z-index: -1;
    border-radius: 1em;
    filter: blur(20px);
    animation: animate 5s linear infinite;
}

@keyframes animate 
{
    0% 
    {
        opacity: 0.3;
    }

    80% 
    {
        opacity: 1;
    }

    100% 
    {
        opacity: 0.3;
    }
}

/* ------------------------------------------- SMS -------------------------------------------*/
/* CONFIGURAÇÃO DO BOTÃO */
.myCardsms {
  background-color: transparent;
  width: 180px;
  height: 234px;
  perspective: 1000px;
  display: inline-block; /* Adicionado para exibir os cartões lado a lado */
  margin: 10px; /* Espaçamento entre os cartões */
}

.titlesms 
{
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.title2sms
{
  text-align: center;
  margin: 2px;
}

.innerCardsms
{
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.myCardsms:hover .innerCardsms
{
  transform: rotateY(180deg);
}

.frontSidesms, .backSidesms
{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /*border: 1px solid rgba(255, 255, 255, 0.8);*/
  border-radius: 1rem;
  color: black;
  box-shadow: 0 0 0.3em rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

/* FUNDO SEM IMAGEM */
.frontSidesms, .frontSidesms::before 
{
  /* background: linear-gradient(43deg, rgb(140, 0, 82) 0%, rgb(140, 0, 82) 46%, rgb(140, 0, 82) 100%); */
  background: rgb(0, 38, 75);
  background-size: cover; /* Ajusta o tamanho da imagem para cobrir todo o espaço */
  background-position: center; /* Centraliza a imagem no cartão */
}

/* ------------------------------------------- CARDS SMS -------------------------------------------*/
/* Estilos do cartão SIGA SAUDE */
.myCardsms-siga .frontSidesms-siga {
background-image: url('../imgs/siga.png'); 
}

/* Estilos do cartão GSS */
.myCardsms-gss .frontSidesms-gss {
background-image: url('../imgs/gss.png'); 
}

/* Estilos do cartão SEI */
.myCardsms-sei .frontSidesms-sei {
background-image: url('../imgs/sei.png'); 
}

/* Estilos do cartão GLPI SMS */
.myCardsms-glpisms .frontSidesms-glpisms {
background-image: url('../imgs/glpisms.png'); 
color: white;          
} 

/* Estilos do cartão SGHX SMS */
.myCardsms-sghxsms .frontSidesms-sghxsms {
background-image: url('../imgs/sghx.png'); 
color: white;          
} 

/* Estilos do cartão SGHX SMS */
.myCardsms-sghxsms .frontSidesms-sghxsms {
background-image: url('../imgs/sghx.png'); 
color: white;          
} 

/* Estilos do cartão 3Corp */
.myCardsms-3corp .frontSidesms-3corp {
background-image: url('../imgs/3Corp.png'); 
color: white;          
} 

/* Estilos do cartão SIGTAP */
.myCardsms-sigtap .frontSidesms-sigtap {
  background-image: url('../imgs/sigtap.png'); 
}

/* Estilos do cartão SIGTAP */
.myCardsms-docsms .frontSidesms-docsms {
  background-image: url('../imgs/projetosdocumetos.png'); 
}

.backSidesms, .backSidesms::before 
{
  background-image: linear-gradient(160deg, #ffffff 0%, #004f9f 100%);
}

.backSidesms 
{
  transform: rotateY(180deg);
}

.backSidesms a
{
  cursor: pointer;
}

.frontSidesms::before, .backSidesms::before 
{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 110%;
  height: 110%;
  position: absolute;
  z-index: -1;
  border-radius: 1em;
  filter: blur(20px);
  animation: animatesms 5s linear infinite;
}

.btn-conteinersms {
display: flex;
justify-content: center;
--color-text: #ffffff;
--color-background: #00264b;
--color-outline: #00264b;
--color-shadow: #00000080;
margin: 10px;
}
@keyframes animatesms 
{
  0% 
  {
      opacity: 0.3;
  }

  80% 
  {
      opacity: 1;
  }

  100% 
  {
      opacity: 0.3;
  }
}

  /* BOTÃO DE ACESSO AOS MANUAIS */
  .buttonsms {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px 8px 16px;
    gap: 8px;
    height: 40px;
    width: 180px;
    border: none;
    background: #004f9f;
    border-radius: 20px;
    cursor: pointer;
    margin: 10px;
  }
  
  .lablesms {
    margin-top: 1px;
    font-size: 19px;
    line-height: 22px;
    color: #ffffff;
    font-family: sans-serif;
    letter-spacing: 1px;
  }
  
  .buttonsms:hover {
    background: #00509fb2;
  }
  
  .buttonsms:hover .svg-icon {
    animation: spinsms 1s linear infinite;
  }
  
  @keyframes spinsms {
    0% {
      transform: rotate(0deg);
    }
  
    25% {
      transform: rotate(-8deg);
    }
  
    50% {
      transform: rotate(0deg);
    }
  
    75% {
      transform: rotate(8deg);
    }
  
    100% {
      transform: rotate(0deg);
    }
  }

/*--------------------------------------------------------------------------------------------------------------------------*/

/*********************************** *MENU ************************************/
#menu {
  width: 99%;
  height: 95%;
  position: absolute;
  z-index: 2;
  border-radius: 35px;
  background: linear-gradient(145deg, #ffffff, #78cdd1);
  box-shadow:  5px 5px 11px #747474,
             -5px -5px 11px #ffffff;
}
  
/*MENU*/
.hidden {
  display: none;
}

/*BOTÃO FECHAR MENU*/
.close-btn{
    margin-left: 80%;
    font-size: 25px;
    color: rgb(255, 0, 0);
    text-decoration: none;
}

/************************************ TABELA ************************************/
#menulat{
    height: 100%;
    text-align: center;
    border-collapse: collapse;
}

.visualizacao{
    width: 100%;
}

/* CONFIGURAÇÃO DO RADIO BUTTON */
.input {
    -webkit-appearance: none;
   /* remove default */
    display: block;
    margin: 10px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    cursor: pointer;
    vertical-align: middle;
    box-shadow: hsla(0,0%,100%,.15) 0 1px 1px, inset hsla(0,0%,0%,.5) 0 0 0 1px;
    background-color: hsla(0,0%,0%,.2);
    background-image: -webkit-radial-gradient( hsla(200,100%,90%,1) 0%, rgb(140,0,82) 15%, hsla(200,100%,60%,.3) 28%, hsla(200,100%,30%,0) 70% );
    background-repeat: no-repeat;
    -webkit-transition: background-position .15s cubic-bezier(.8, 0, 1, 1),
      -webkit-transform .25s cubic-bezier(.8, 0, 1, 1);
    outline: none;
  }
  
  .input:checked {
    -webkit-transition: background-position .2s .15s cubic-bezier(0, 0, .2, 1),
      -webkit-transform .25s cubic-bezier(0, 0, .2, 1);
  }
  
  .input:active {
    -webkit-transform: scale(1.5);
    -webkit-transition: -webkit-transform .1s cubic-bezier(0, 0, .2, 1);
  }
   
  /* The up/down direction logic */
    .input,
  .input:active {
    background-position: 0 24px;
  }
  
  .input:checked {
    background-position: 0 0;
  }
  
  .input:checked ~ .input,
  .input:checked ~ .input:active {
    background-position: 0 -24px;
  }


/* BOTÃO DE ACESSAR O SISTEMA */
  .btn-conteiner {
    display: flex;
    justify-content: center;
    --color-text: #ffffff;
    --color-background: #8C0052;
    --color-outline: #ff145b80;
    --color-shadow: #00000080;
    margin: 10px;
  }

  .btn-margemponto {
    margin: 5px !important;
  }

  .btn-margemdev {
    text-align: center;
    margin: 2px;
    color: white;
  }
 
  .btn-content {
    display: flex;
    align-items: center;
    padding: 0px 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 10;
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    border-radius: 100px;
    box-shadow: 0 0 0.2em 0 var(--color-background);
  }
  
  .btn-content:hover, .btn-content:focus {
    transition: 0.5s;
    -webkit-animation: btn-content 1s;
    animation: btn-content 1s;
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 0.4em 0 var(--color-background);
  }
  
  .btn-content .icon-arrow {
    transition: 0.5s;
    margin-right: 0px;
    transform: scale(0.6);
  }
  
  .btn-content:hover .icon-arrow {
    transition: 0.5s;
    margin-right: 25px;
  }
  
  .icon-arrow {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
  }
    
  /* SVG */
  #arrow-icon-one {
    transition: 0.4s;
    transform: translateX(-60%);
  }
  
  #arrow-icon-two {
    transition: 0.5s;
    transform: translateX(-30%);
  }
  
  .btn-content:hover #arrow-icon-three {
    animation: color_anim 1s infinite 0.2s;
  }
  
  .btn-content:hover #arrow-icon-one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
  }
  
  .btn-content:hover #arrow-icon-two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
  }
  
  /* SVG animations */
  @keyframes color_anim {
    0% {
      fill: white;
    }
  
    50% {
      fill: var(--color-background);
    }
  
    100% {
      fill: white;
    }
  }
  
  /* Button animations */
  @-webkit-keyframes btn-content {
    0% {
      outline: 0.2em solid var(--color-background);
      outline-offset: 0;
    }
  }
  
  @keyframes btn-content {
    0% {
      outline: 0.2em solid var(--color-background);
      outline-offset: 0;
    }
  }

  /* BOTÃO DE ACESSO AOS MANUAIS */

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px 8px 16px;
    gap: 8px;
    height: 40px;
    width: 180px;
    border: none;
    background: #78CDD1;
    border-radius: 20px;
    cursor: pointer;
    margin: 10px;
  }
  
  .lable {
    margin-top: 1px;
    font-size: 19px;
    line-height: 22px;
    color: #056DFA;
    font-family: sans-serif;
    letter-spacing: 1px;
  }
  
  .button:hover {
    background: #056bfa49;
  }
  
  .button:hover .svg-icon {
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    25% {
      transform: rotate(-8deg);
    }
  
    50% {
      transform: rotate(0deg);
    }
  
    75% {
      transform: rotate(8deg);
    }
  
    100% {
      transform: rotate(0deg);
    }
  }

  /*POSIÇÃO DO BOTÃO NA PAGINA*/
  .rodape {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    gap: 1em;
    transition: .4s ease-in-out;
  }
  
  /*CONFIGURAÇÃO DO BOTÃO*/
  .info {
    position: relative;
    width: 3em;
    height: 3em;
    outline: none;
    border: none;
    border-radius: 50%;
    background-color: white;
    transition: .4s all;
  }

  /*CONFIG DO CARTÃO*/
  .info .card {
    visibility: hidden;
    width: 10em;
    height: 3em;
    background-color: whitesmoke;
    color: black;
    text-align: center;
    border-radius: 10px;
    position: absolute;
    left: -6.8em;
    top: -2.2em;
    z-index: 1;
    transition: .1s ease-in-out;
  }

  /*TEXTO DO CARTÃO*/
  .info .card .texto {
    font-size: 0.75em;
    font-weight: bold;
  }
  
  /*IMAGEM NO BOTÃO*/
  .info .info-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  /*CONFIGURAÇÃO DA IMAGEM DO BOTÃO*/
  .info .info-icon img {
    width: 40%;
    height: auto;
  }

  /*APARECER O CARD*/
  .info:hover .card {
    transform: translateY(-1em);
    visibility: visible;
  }
  
  /*QUANDO COLOCAR O MOUSE ENCIMA DO BOTÃO*/
  .info:hover {
    background-color: #8C0052;
  }

  .textlateral{
    padding-bottom: 15%;
  }

  /* CONFIGURAÇÃO DA VIZUALIZAÇÃO DO VIDEO */
  .video{
    position: relative;
    padding-bottom: 56.25%; /* Proporção do vídeo (9:16 para vídeos de 16:9) */
    height: 0;
    overflow: hidden;
  }

  .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 99%;
    height: 75%;
  }

  /* CONFIGURAÇÃO DA VIZUALIZAÇÃO DO PDF */
  .pdf{
    position: relative;
    padding-bottom: 56.25%; /* Proporção do vídeo (9:16 para vídeos de 16:9) */
    height: 0;
    overflow: hidden;
  }

  .pdf embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 99%;
    height: 75%;
  }

  .titledivisor {
    text-align: center;
    position: relative;
  }

  .titledivisor h2 {
    margin: 5px;
  }

  .hr-top, .hr-bottom {
    width: 40%;
    position: absolute;
    top: 30%;
    border: none;
    border-top: 2px solid #000;
  }

  .hr-top {
    right: 60%;
  }

  .hr-bottom {
    left: 60%;
  }

  .hr-top2, .hr-bottom2 {
    width: 38%;
    position: absolute;
    top: 30%;
    border: none;
    border-top: 2px solid #000;
  }

  .hr-top2 {
    right: 62%;
  }

  .hr-bottom2 {
    left: 62%;
  }

  /*RESPONSIVIDADE DA PAGINA*/

  @media screen and (max-width: 1250px) {
    .hr-top, .hr-bottom {
        width: 40%; /* Ajuste conforme necessário */
    }
    .hr-top2, .hr-bottom2 {
      width: 35%; /* Ajuste conforme necessário */
    }
    .hr-top2 {
      right: 0%;
    }
  
    .hr-bottom2 {
      left: 0%;
    }
  }
  @media screen and (max-width: 1100px) {
    .hr-top, .hr-bottom {
        width: 38%; /* Ajuste conforme necessário */
    }
    .hr-top {
      right: 0%;
    }
  
    .hr-bottom {
      left: 0%;
    }
  }

  @media screen and (max-width: 945px) {
    .hr-top, .hr-bottom {
        width: 36%; /* Ajuste conforme necessário */
    }
    .hr-top {
      right: 0%;
    }
  
    .hr-bottom {
      left: 0%;
    }
    .hr-top2, .hr-bottom2 {
      width: 30%; /* Ajuste conforme necessário */
    }
    .hr-top2 {
      right: 0%;
    }

    .hr-bottom2 {
      left: 0%;
    }
  }

  @media screen and (max-width: 780px) {
    .hr-top, .hr-bottom {
        width: 34%; /* Ajuste conforme necessário */
    }
    .hr-top {
      right: 0%;
    }
  
    .hr-bottom {
      left: 0%;
    }
    .hr-top2, .hr-bottom2 {
      width: 28%; /* Ajuste conforme necessário */
    }
    .hr-top2 {
      right: 0%;
    }

    .hr-bottom2 {
      left: 0%;
    }
  }

  @media screen and (max-width: 690px) {
    .hr-top, .hr-bottom {
        width: 22%; /* Ajuste conforme necessário */
    }
    .hr-top {
      right: 0%;
    }
  
    .hr-bottom {
      left: 0%;
    }
    .hr-top2, .hr-bottom2 {
      width: 18%; /* Ajuste conforme necessário */
    }
    .hr-top2 {
      right: 0%;
    }

    .hr-bottom2 {
      left: 0%;
    }
  }

  @media screen and (max-width: 480px) {
    .hr-top, .hr-bottom {
        width: 18%; /* Ajuste conforme necessário */
    }
    .hr-top {
      right: 0%;
    }
  
    .hr-bottom {
      left: 0%;
    }
    .hr-top2, .hr-bottom2 {
      width: 8%; /* Ajuste conforme necessário */
    }
    .hr-top2 {
      right: 0%;
    }

    .hr-bottom2 {
      left: 0%;
    }
  }