body {
    margin: 0;
    padding: 0;
    font-family: 'Sora', Arial, sans-serif;
    background-color: #f4f4f4;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

header {
    background: url('../images/bg_top.jpg') no-repeat #010024;
    background-size: cover;
    height: 492px;
    font-size: 11px;
    color: #fff;
    margin-bottom: 136px;
}

h1 {
    font-size: 35px;
    font-weight: 700;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

p {
    font-size: 12px;
}

h3 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

header .menu a {
    color: #fff;
    text-decoration: none;
}

header .menu a:hover {
    color: #ccc;
    text-decoration: none;
}

.container-header {
    max-width: 760px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    border-radius: 14px !important;
    font-size: 11px;
}

.orange {
    background-color: #ec6724 !important;
    color: #fff !important;
    padding: 10px 16px;
    text-align: center;
}

#header-content {
    margin-top: 182px;
    max-width: 474px;
}

main {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.text-primary {
    color: #014fa1 !important;
}

.bg-primary {
    background-color: #014fa1 !important;
}

#quem-somos {
    margin-bottom: 100px;
}

#servicos {
    text-align: center;
    margin-bottom: 100px;
}

#parceiros {
    text-align: center;
    background-color: #e2e7ed;
    height: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
    padding: 60px 16px 210px 16px;
}

#banner {
    width: 100%;
    max-width: 760px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -120px;
    z-index: 2;
    margin-bottom: 50px;
}

section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

footer {
    padding-top: 90px;
}

footer span{
    font-size: 11px;
    color: #fff;
}

.container-footer {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {
    #parceiros {
        padding: 60px 16px;
    }

    header {
        height: auto;
        margin-bottom: 50px;
        background-size: cover;
    }

    .container-header {
        padding: 0 16px;
    }

    #header-content {
        margin-top: 100px;
        padding: 0;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    p, h3, .btn {
        font-size: 14px;
    }

    #parceiros {
        padding: 40px 16px;
    }

    #banner {
        position: static;
        transform: none;
        margin: 20px auto;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .menu .btn {
        width: 100%;
        text-align: center;
        margin-top: 12px;
    }

    section img {
        width: 100%;
        height: auto;
        margin-bottom: 16px;
    }
}
