*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
::selection{
    background-color: #343c2c;
    color: #fff;
}

header{
    height: 13vh;
    width: 100%;
    padding: 20px 20px;
}
header .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
header .logo img{
    height: 60px;
}
.logo .image{
    height: 50px;
}
header .btn-login button{
    color: #fff;
    font-size: 20px;
    padding: 10px 30px;
    background-color: #343c2c;
    border: solid #343c2c 1px;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-login button:hover{
    background-color: #fff;
    color: #343c2c;
    border: solid #343c2c 1px;
}

body .page .interface{
    height: 87vh;
    background-image: url(/images/page-fundo.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page .txt-page{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    line-height: 25px;
}
.page .txt-page img{
    display: none;
}
.txt-page h1{
    font-size: 50px;
    margin-bottom: 20px;
    text-shadow:
    0 0 10px #fff,
    0 0 40px rgb(17, 35, 65),
    0 0 80px rgb(17, 35, 65),
    0 0 90px rgb(17, 35, 65);
}
.txt-page button{
    background-color: #343c2c;
    color: #fff;
    border: solid #fff 1px;
    padding: 20px;
    margin-top: 20px;
    transition: 0.3s;
}
.txt-page button:hover{
    background-color: #fff;
    color: #343c2c;
    border: solid #343c2c 1px;
}

.ferramentas{
    background-color: #f0e8de;
    height: 70vh;
    padding: 40px;
    display: flex;
    align-items: center;
    color: #343c2c;
    gap: 50px;
}
.txt-titulo{
    margin: 20px 0;
    font-size: 40px;
    transform: translateY(-50px);
}
.txt-ferramentas{
    display: flex;
    justify-content: space-between;
    gap: 35px;
    transition: 0.2s;
}
.txt-ferramentas p{
    font-size: 18px;    
    transition: 300ms;
}
.txt-ferramentas p span{
    font-size: 25px;
    font-weight: bolder;
}
.txt-ferramentas p:hover{
    transform: translateY(-10px);
}

.contato .interface{
    height: 90vh;
    background-image: url(/images/ordem.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contato .forma{
    height: 80vh;
    padding: 20px;
    border-radius: 20px;
    background-color: #e7d9cb;
    box-shadow: rgba(194, 139, 139, 0.56) 0px 22px 70px 4px;
}
.txt-contato{
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
    text-align: center;
    gap: 20px;
    align-items: center;
}
.txt-contato h1{
    font-size: 30px;
    font-weight: 900;
}
.txt-contato p{
    max-width: 65ch;
}
.convite-server{
    width: 600px;
    display: flex;
    flex-direction: column;
    background-color: #3b3b3b;
    border-radius: 20px;
}
.convite-server .top{
    background-color: #272727;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    width: 100%;
    align-items: center;
}
.top .title{
    display: flex;
    gap: 20px;
    align-items: center;
}
.convite-server .top .title img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.top .title h1{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.convite-server .top img{
    width: 50px;
    height: 50px;
}
.tags{
    display: flex;
    color: #fff;
    gap: 20px;
    margin: 20px;
}
.tags p{
    gap: 20px;
    background-color: #313131;
    padding: 5px 10px;
    border-radius: 20px;
}
.convite-server .desc p{
    color: #fff;
    font-size: 15px;
    margin: 0 20px;
}
.convite-server button{
    margin: 20px;
    padding: 5px 30px;
    border-radius: 20px;
    background-color: #272727;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}
.convite-server button:hover{
    cursor: pointer;
    background-color: #fff;
    color: #272727;
}

footer .interface{
    height: 27vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(#C2C8CC,  #E7D9CB);
}
footer .txt{
    display: flex;
    justify-content: space-between;
    padding: 40px;
}
footer .interface h1{
    color: #343c2c;
    font-size: 25px;
}
footer .txt-apoio button{
    margin: 10px;
    background-color: #000;
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    transition: 0.3s;
}
footer .txt-apoio button:hover{
    background-color: #fff;
    color: #000;
}

footer .norma{
    padding: 0 40px;
    font-size: 13px;
}
.btn {
    display: flex;
    justify-content: center;
    margin: 5px auto;
}