/************************************Estilo Geral*/

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

/************************************Estilo Banner*/

.banner {
    font-family: 'Ysabeau Infant', sans-serif;
    width: 100%;
    height: 100vh;
}

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

.conteudo-banner {
    max-width: 768px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}

.container-info {
    max-width: 768px;
    height: 100%;

    text-align: center;
    margin: 0 auto;

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

.container-info img {
    width: 150px;
    height: 140px;
    border-radius: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container-info::before {
   content: "";
   width: 160px;
   height: 150px;
   position: absolute;
   top: 95px;
   background: linear-gradient(90deg, #ffdf00, #009c3b);
   border-radius: 100%;
   z-index: -1;
}

.container-info h1 {
    color: white;
    margin-bottom: 40px;

    font-weight: bold;
    font-family: 'Ysabeau Infant', sans-serif;
    font-size: 34px;

    text-shadow: 3px 2px 1px #000;
}

.tarja {
    position: relative; 
}

h1::before {
    content:"";
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ffdf00, #009c3b);
    position: absolute;
    bottom: 3px;
    border-radius: 4px;
}

.container-info h1::after {
    content:"";
    width: 12px;
    height: 12px;
    background-image: url(assets/verificado.png);
    background-size: 12px 12px;
    display: inline-block;
}

.container-links {
    width: 768px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    gap: 20px;
}

.container-links img {
    width: 20px;

}

.container-links a {
    width: 500px;
    padding: 10px;
    margin: 0 auto;
    text-align: center;

    border-radius: 20px;
    border: 1px solid #000;
    background-color: #0200009a;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size:.8rem;
    font-family: 'Ysabeau Infant', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    flex-shrink: 1;
}

.container-links a:hover {
    background-color: #fff;
    color: #000;
}

/************************************Estilo Estatísticas*/

.estatisticas {
    width: 100%;
    height: 100vh;

    font-family: 'Montserrat', sans-serif;

    background-image: url(assets/imagem-de-fundo.jpg);
    background-size: cover;
}

.conteudo-estatisticas {
    width: 768px;
    height: 100%;
    margin: 0 auto;
    text-align: center;

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

caption {
    margin-bottom: 40px;
    
    color: white;

    font-size: 40px;
    font-family:  'Montserrat', sans-serif;
    font-weight: bold;
    text-shadow: 3px 2px 1px #000;
}

th, td {
    padding: 20px;
    
    font-weight: bold;
    font-family:  'Montserrat', sans-serif;
}

thead tr {
    background-color: #0200006e;
    color: white;
}

tbody tr:nth-of-type(even) {
    background-color: #0200006e;
    color: white;
}

tbody tr:nth-of-type(odd) {
    background-color: #f2ffffb9;
    color: #000000;
}

tbody td:first-of-type {
    text-align: left;
    display: flex;
    align-items: center;
}

tbody td img {
    width: 30px;
    margin-right: 10px;
}