@font-face {
    font-family: 'Gilroy_Bold';
    src: url("GILROY-BOLD.TTF");
}
@font-face {
    font-family: 'Gilroy_Black';
    src: url("GILROY-BLACK.TTF");
}
@font-face {
    font-family: 'Gilroy_Medium';
    src: url("GILROY-MEDIUM.TTF");
}
@font-face {
    font-family: 'Gilroy_Heavy';
    src: url("GILROY-HEAVY.TTF");
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: 0;
    color: #ffffff;
    font-family: "Gilroy_Bold";
}
html, body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
body{
    background-image: url("bg_desktop.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}
.content{
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.logo{
    width: 200px;
}
.content>span{
    color: #58cadb;
    font-size: 0.9rem;
    letter-spacing: 4px;
}
h1{
    font-family: "Gilroy_Medium";
    font-size: 3.5rem;
    letter-spacing: 4px;
    text-align: center;
}
h1 span{
    font-family: "Gilroy_Heavy";
}
p{
    font-family: "Gilroy_Medium";
    font-size: 1.2rem;
    letter-spacing: 3px;
}
p strong{
    font-family: "Gilroy_Black";
}
.interagir span{
    color: #58cadb;
    margin-right: 7px;
    font-size: 0.7rem;
}
.interagir img{
    height: 15px;
}
.redes_sociais img{
    width: 90px;
    height: 90px;
    border-radius: 15px;
    margin: 0 10px;
    cursor: pointer;
}
.footer{
    display: flex;
    font-size: 0.8rem;
    margin-top: 30px;
}
.footer .left{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.footer .left .item{
    margin-right: 15px;
    cursor: pointer;
    display: flex;
}
.footer .left img {
    height: 15px;
    margin-right: 5px;
}
.footer .right{
    display: flex;
}
.footer .right .button{
    border: 1.5px solid #ffffff;
    height: 30px;
    padding: 6px 10px 4px 10px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    margin-left: 5px;
    cursor: pointer;
}
.footer .right img {
    height: 15px;
    margin-right: 8px;
    margin-top: -4px;
}
/* Área dos Contratos */
.contratos{
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contratos .close{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contratos .close:hover{
    color: red;
    font-size: 3rem;
}
.contratos.hidden{
    display: none;
}
.contratos a{
    color: #58cadb;
    font-size: 1.2rem;
    margin: 10px 0;
    text-decoration: none;
    height: 30px;
}
.contratos a:hover{
    text-decoration: underline;
    font-size: 1.4rem;
}