/* Estilo Global*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ysabeau Infant', sans-serif;
}
.secao-banner{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secao-banner video{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container-info{
  width: 768px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
}
 

/* Estilo da imagem de perfil e do titulo */
.imgPerfil-titulo{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.imgPerfil{
  width: 200px; 
  height: 200px;
  border-radius: 100%;
  background-image: url(assets/neymar.jpg);
  background-position: center; 
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imgPerfil::before {
   content: ""; 
   position: absolute;
   width: 215px;
   height: 215px;
   background: linear-gradient(90deg, #ffdf00, #009c3b );
   z-index: -1;
    border-radius: 100%;
}
.imgPerfil-titulo h1{
    position: relative;
    font-size: 50px;
    color: #fff;
    text-shadow:1px 6px 2px #000000 ;
}
h1::before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #ffdf00, #009c3b );
  bottom: 2px;
  left: 5px;
  border-radius: 4px;
  width: 55px;
  height: 5px;
 
}
.imgPerfil-titulo h1::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: -20px;
  background-image: url(./assets/verificado.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
/* Estilo dos links */
.arvore-links {
  max-width: 768px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.arvore-links a {
  width: 100%;
  padding: 10px;

  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;

  border-radius: 20px;
  background-color: #0200006e;
  color: #fff;
}
.arvore-links a:hover {
  background-color: #fff;
  color: #000;
}
.arvore-links a p {
  width: 90%;
}
.arvore-links a img {
  width: 30px;
}
/* Estilo da tabela */
.secao-tabela{
    position: relative;
    width: 100%;
    height: 100vh;
    text-align: center;

    display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  font-family: 'Monstserrat', sans-serif;
  background-image: url(assets/imagem-de-fundo.jpg); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
}
.secao-tabela h2 {
   font-size: 74px;
  opacity: 0.8;
  color: #ffff;
  text-shadow: 2px 2px 1px #000000;  
}
.tabela th, tr, td {
  padding: 20px;
}
.tabela td img {
  width: 30px;
}
.tabela tbody td:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tabela tbody tr:nth-of-type(odd) {
  background-color: #ffffffcc;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  
}
.tabela tbody tr:nth-of-type(even) {
  background-color: #000000cc;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.tabela th{
  font-size: 26px;
  background-color: #000000cc;
  color: #fff;
  text-shadow: 2px 2px 1px #000000;

}
.rodape {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.rodape span {
  font-weight: bold;
  color: #ffdf00;
}