*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Outfit', sans-serif;   
}

html, body {
    height: 100%;
    background-color: #000000 !important;
    font-size: 14px;
    overscroll-behavior: none;
}


.container{
   height: 100%; 
   max-width: 550px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 20px;
   color: #fff;
}

a{
    text-decoration: none;
    color: hwb(0 0% 100%);
}


.degrade{
    background: linear-gradient(to right, #d2ac47, #edc967);
   
}
/* ESTILO DO HEADER*/

header{
  text-align: center; 
  margin-bottom: 40px; 
}

header img{
    max-width: 120px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

header h1{
    font-size: 2em;
    margin-bottom: 10px;
    color: #888888;
    font-weight: 300;
}

/*ESTILO DOS BOTÕES*/


section.botoes-links{
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    gap: 20px;
}

a.link button{
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    cursor: pointer;
    color: hsl(0, 0%, 0%);
    transition: 0.4s ease-in-out;
    
}

a.link i{
  font-size: 1.5em;

}

a.link button:hover, footer a.btn-footer:hover{
    transform: scale(1.05);
}

/*ESTILO DO FOOTER*/

footer{
    text-align: center;
    margin: 30px;
}


footer a.btn-footer{
    width: 60px;
    height: 60px;
    display: inline-block;
    font-size: 2.2em;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 10px;
    padding-top: 15px;
    transition: 0.4s ease-in-out;
}

.logo {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.logo footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo h3 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    margin-top: 90px;
    margin-left: 42px;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 200px;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-top: -8px;
}


/*body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

header, main {
    padding: 20px;
    text-align: center;
}

footer {
    position: relative;
    margin-top: auto;
    background-color: hsl(0, 0%, 0%);
    color: #fff;
    text-align: center;
    padding: 48px 0; /* Ajuste o padding conforme necessário 
}*/

/*.footer-content {
    padding-bottom: 40%; /* Espaço para a logo 
}

.footer-buttons {
    margin-bottom: 0px; /* Espaço entre botões e logo 
}

.round-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    color: hsl(0, 0%, 0%);
    margin: 0 5px;
    cursor: pointer;
}

.footer-logo-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-logo {
    max-width: 220px; /* Ajuste o tamanho conforme necessário 
    height: auto;
}*/

