*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*secao-1*/
.secao-1{
    font-family: 'Ysabeau Infant', sans-serif; 
}

.secao-banner-1{
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

/*video*/
.secao-banner-1 video{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*container informações*/
.informacoes{
    width: 600px;
    padding: 0 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

/*imagem perfil*/
.perfil{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-perfil{
    width: 200px;
    height: 200px;
    background-image: url("img/neymar.jpg");
    background-position: center;
    background-size: cover;
    border-radius: 50%;  

    display: flex;
    align-items: center;
    justify-content: center;
}

.img-perfil::before{
    content: "";
    position: absolute;
    background: linear-gradient( #fff700, #08ce54);
    width: 210px;
    height: 210px;
    z-index: -1;
    border-radius: 50%;
}

.perfil h1{
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 2px #000000;
    padding-bottom: 30px;
    position: relative;
}

h1::before{
    content: "";
    position: absolute;
    background: linear-gradient( #fff700, #08ce54);
    width: 40px;
    height: 8px;
    left: 5px;
    top: 50px;
    border-radius: 15px;
}

.perfil h1::after{
    content: "";
    position: absolute;
    bottom: 35px;
    left: 185px;
    background-image: url("img/verificado.png");
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*redes-sociais*/
.link{
    max-width: 500px;
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.link a{
    background-color: #0000004f;   
    width: 100%;
    color: #fff;
    font-weight: 700;
    padding: 5px;
    border-radius: 15px;
    text-decoration: none;
    
    display: flex;
    align-items: center;
    gap: 10px
}

.link p{
    width: 100%;
    text-align: center;
} 

.link a:hover{
    background-color: #fff;
    color:#000000;
}

.link a img{
    width: 30px;
}

/*secao-2*/
.secao-2{
    font-family: 'Montserrat', sans-serif;
}

.secao-banner-2{
    width: 100%;
    height: 100vh;
    background-image: url("img/imagem-de-fundo.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.secao-banner-2 h2{
    color: #fff;
    text-align: center;
    font-size: 50px;
    padding-bottom: 30px;
}

/*container-tabela*/
.container-tabela{    
    max-width: 100%;
    height: auto;
}

.tabela{
    margin: 0 20px;
}

/*tabela thead*/
.tabela th{
    border: 1px solid rgba(0, 0, 0, 0.3);
    width: 120px;
    height: 50px;
    background-color: #0000008b;
    color: #fff;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/*tabela tbody*/
.tabela tr{
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabela td{
    border: 1px solid rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 50px;
    font-size: 12px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.tabela td img {
    width: 30px;
}

/*cores pares e impar da tabela*/
.tabela tbody tr:nth-child(odd){
    background-color: #ffffff79;
    color: #000000;
    font-weight: 700;
}

.tabela tbody tr:nth-child(even){
    background-color: #0000008b;
    color: #fff;
    font-weight: 700;
}

/*tabela t-foot*/
tfoot{
    background-color: #0000008b;
}

.tabela tfoot p{
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

tfoot a{
    color: #fff;
}

/*secao-footer*/
.rodape{
    width: 100%;
    height: 50px;
    background-color: #313030;
   
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.secao-footer p{
    text-align: center;
    color: #fff;
    font-weight: 500;
}

/*dispositivos que tenham largura máxima de 780px*/
@media (max-width: 780px){
    .secao-2{
        display: none;
    }
}


