@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');html{

    height: 100%;
    

  }
  *{
    text-decoration: none;


}

.tela-boas-vindas {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #121212, #1e1e1e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.tela-boas-vindas.oculta {
  opacity: 0;
  pointer-events: none;
}

.conteudo-boas-vindas {
  text-align: center;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  animation: zoomIn 0.4s ease;
  max-width: 90%;
  width: 400px;
}

.logo-boas-vindas {
  max-width: 100px;
  margin-bottom: 1rem;
}

.conteudo-boas-vindas h1 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.conteudo-boas-vindas p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #ccc;
}

.conteudo-boas-vindas button {
  background: #f0c040;
  color: #000;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.conteudo-boas-vindas button:hover {
  background: #e6b030;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}






  body{
    height: 100%;
    font-family: "PT Sans", sans-serif!important;
    /*  font-style: italic;*/
    font-weight: 400!important;

    font-style: normal;


  }
  
.body{
  
    font-family: var(--roboto);
     justify-content: center;
    margin:0px;
    padding:0px;
    box-sizing:border-box;
    text-align:center;
    align-items:center;
    background-color: #ececec;
    color: #000000;
    background-size:400% 400%;
    height:100%;    
}
#header{
    width:100%;
    position:-webkit-sticky; /* Necessário para funcionar no Safari */
    position:fixed;
    top:0;
    z-index:99;
    box-shadow:0px 0px 6px 0px rgb(0, 0, 0);
    box-sizing:border-box;
    height:60px;
    margin-bottom: 44rem ;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#000000;
}
section{
 
    
    margin: 1rem;
    padding: 1rem;
 
}
#logo{
     margin-left:5rem;
    width:150px;
    height:auto;
}
.fotologo{
    margin-left:50%;

    width:154px;
    height:auto;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.5));

}
#menu{
    padding-top: 1rem;
    font-family:Arial;
    display:block;
    list-style:none;
    gap:.5rem;/*ESPAÇAMENTO*/
}
.a{ 
    display:block;
    padding:1rem;
    font-family:var(--roboto);
    color: white;
    text-decoration:none;
    
}
.a:hover{
    font-weight: 700;
     color: rgb(178, 10, 10);
    border-radius: .1rem;
    text-decoration: line-through
}
#btn-mobile{
    display:none; 
}
 