*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'myriad-pro', sans-serif;
}
body{
    max-width: 1920px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.display-none{
    display: none;
    visibility: hidden;
}
.content{
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.btn{
    display: block;
    max-width: max-content;
    width: 100%;
    padding: 12px 24px;
    text-align: center;
    border-radius: 100px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    transition: all 0.3s linear;
    margin: 0 auto;
}
.btn.btn-red{
    color: #FFFFFF;
    background: #FF0033;
}
.btn.btn-red:hover{
    opacity: 0.8;
}
#regulamento{
    background: #F4FDE9;
    padding-bottom: 70px;
}
#regulamento aside.header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 100px;
    margin-bottom: 80px;
}
#regulamento .content-page{
    max-width: 600px;
    width: 100%;
}
#regulamento .content-page h1{
    font-size: 58px;
    line-height: 1;
    color: #ED462F;
    text-align: center;
    margin-bottom: 28px;
}
#regulamento .content-page h3{
    font-size: 28px;
    line-height: 1;
    color: #053E30;
    margin-bottom: 28px;
    font-weight: bold;
}
#regulamento .content-page > p{
    margin-bottom: 24px;
}
#regulamento .content-page p{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #053E30;
}
#regulamento .content-page .rules .rule{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 24px;
}
#regulamento .content-page .rules .rule img{
    width: 34px;
}
#regulamento .content-page .rules .rule p{
    width: calc(100% - 34px - 10px);
}
#regulamento .content-page p span{
    color: #ED462F;
    font-weight: bold;
}
footer.footer{
    background: #9CEF1C;
    padding: 40px 0;
}
footer.footer .content-infos{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer.footer .content-infos .links-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 380px;
    width: 100%;
}
footer.footer .content-infos .links-content p{
    margin-right: 30px;
}
footer.footer .content-infos .links-content .links-content-a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 290px;
    width: 100%;
}
footer.footer .content-infos .link.media{
    width: 28px;
    height: auto;
    transition: all 0.3s linear;
}
footer.footer .content-infos .link.media:hover svg{
    opacity: 0.8;
}
footer.footer .content-infos p{
    font-size: 20px;
    color: #003828;
    font-weight: 900;
}

@media (max-width: 1024px){
    footer.footer .content-infos{
        justify-content: center;
    }
    footer.footer .content-infos .links-content{
        justify-content: center;
        flex-wrap: wrap;
    }
    footer.footer .content-infos p{
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
    footer.footer .content-infos .links-content .links-content-a{
        margin: 0 auto;
    }

}
@media (max-width: 768px){
    footer.footer .content-infos .links-content p{
        margin-right: 0;
    }
    *{
        word-break: break-word;
    }
    #regulamento aside.header{
        display: flex;
        justify-content: space-between;
        padding-top: 50px;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-bottom: 0;
    }
    h3,p{
        text-align: center;
    }
    .rule p{
        text-align: left;
    }

}
.mt-70{
    margin-top: 70px;
}