*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root{
    --corTema: #2559A6;
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url(images/bg.jpg) no-repeat;
    background-size: cover;
    background-position: left bottom;
}

.container{
    height: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 3%;

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

/* ESTILO DO CABEÇALHO */
.logo{
    width: 100%;
    text-align: center;
    margin: 15px 0;
}

.logo img{
    width: 70%;
}

.logo p{
    font-weight: 500;
    margin: 10px 0;
    font-size: 14px;
}

/* ESTILO DOS BOTÕES */
.links{
    margin-bottom: 0px;
}

.links button{
    width: 100%;
    padding: 10px 10%;
    text-align: left;
    font-size: 22px;
    margin: 10px 0;
    border: 2px solid #8CC64B;
    background-color: var(--corTema);
    color: #fff;
    box-shadow: 5px 5px 0 0 #000;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s;
    font-weight: 600;
}

.links button:hover{
    box-shadow: 5px 5px 0 0 #8CC64B;
    transform: scale(1.05);
}

.links button i{
    font-size: 22px;
    float: right;
}

/* .link-rodape{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.link-rodape a{
    text-decoration: none;
}

.link-rodape button{
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 50%;
    border: 2px solid #8CC64B;
    background-color: #fff;
    cursor: pointer;
    transition: .2s;

}

.link-rodape button:hover{
    transform: scale(1.05);
} */

/* ESTILO DO RODAPÉ */
footer{
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 10px;
}

footer .logo-click{
    margin-top: 20px;
}

footer .logo-click img{
    max-width: 40px;
}