@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html{
    background-color: #002649;
}

body {
    font-size: 16px;
    color: #fff;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

body h1,
body h2,
body h3,
body h4 {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.flex {
    clear: both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.center {
    justify-content: center;
}

.between {
    justify-content: space-between;
}

footer {
    background-color: #002649;
}

#footer-social {
    background: #063057;
}

#footer-social .container {
    position: relative;
}

#footer-social ul {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 20px 0;
}



#logo-kabum-rodape {
    position: absolute;
    top: 45px;
    right: 0;
}

#footer-social li span {
    padding: 8px;
    background-color: #fff;
    border-radius: 50%;
    color: #063057;
    transition: all 0.3s;
}

#footer-social li span:hover {
    background-color: #44bdfb;
    color: #063057;

}

footer p {
    color: #ccc;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
}

section{
    padding: 50px 0;
    text-align: center;
}

header{
    background: #002649;
    padding: 20px 0;
    text-align: center;
}

header .flex{
    justify-content: center;
}

main{
    background: #063057;
    text-align: center;
    padding: 100px 0;

}

main h1{
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
}


main p{
    max-width: 800px;
    margin: 0 auto;
}

main a{
    color: #f74f12;
}

main a:hover{
    color: #fff;
}





@media screen and (max-width: 1480px) {
    .container {
        margin: 0 30px;
    }
}





