* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "oswald", "sans-serif";
}

.interface {
    max-width: 1280px;  
    margin: 0 auto;

}

header {
    width: 100%;
    background-color: #424147;
}

html {
    scroll-behavior: smooth;
}

.top-header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header {
    background-color: #0f0f0f;
    padding: 20px 4px;
    background-image: url(Image/fundo-do-site.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.top-header .logotipo img {
    max-width: 120px;
}

.top-header .btn-social button {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    transition: .2s;

}

.top-header .btn-social button:hover {
    background-color: #000000;
    border-color: rgb(255, 255, 255);
    color: #ffffff;

}

.bottom-header nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
}

.bottom-header nav ul li a {
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: .2s;
}

.bottom-header nav ul li a:hover {
    background-color: #cecece94;
    color: #424147;
    box-shadow: inset 0 0 8px #00000071;
}

.drop-hover {
    position: relative;
}

.drop-hover .drop {
    position: absolute;
    background-color: #424147;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: .2s;
}

.drop-hover .drop a {
    padding: 15px;
}

.drop-hover:hover .drop {
    height: 210px;

}

.content {
    text-align: center;
    font-size: 30px;
    padding: 120px 0;
    background-color: #ceccccbd;
}

.btn-know {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    /* Cor do botão */
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-know:hover {
    background-color: #000000;
    border-color: rgb(255, 255, 255);
    color: #ffffff;
}

.about {
    padding: 120px 0;
    text-align: center;
    background-image: url(Image/fundo-servicos.png);
}

.about h2 {
    color: #fff;
    font-size: 30px;
    text-shadow: 2px 2px 4px black;
}

.about p {
    color: #fcfcfc;
    font-size: 25px;
    text-shadow: 2px 2px 4px black;
}

.partners {
    padding: 60px 0;
    text-align: center;
    background-color: #ceccccbd;
}

.partners h2 {
    font-size: 25px;
    color: #000000;
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 25px;
    justify-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;

}

.partner-item img {
    width: 100%;
    height: auto;
    max-width: 1256px;
    margin: 0 auto;
}

.services-section {
    text-align: center; 
    padding: 20px 0;
}

.services {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    text-align: center;
}

.services-section h2 {
    color: #000;
    font-size: 25px;
}


.services div {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s ease-in-out;
}

.services div:hover {
    transform: scale(1.1);
}

.services h3 a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.services div::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.services .financeiro::before {
    background-image: url('https://img.icons8.com/?size=100&id=G7xxWUssqjYw&format=png&color=FAB005');
}


.services .pessoas::before {
    background-image: url('https://img.icons8.com/?size=100&id=43460&format=png&color=FAB005');
}

.services .empresas::before {
    background-image: url('https://img.icons8.com/?size=100&id=25317&format=png&color=FAB005');
}

.rodape {
    max-width: 1280px;
    margin: 0 auto;
}

footer {
    background-color: #000000;
    color: #fff;
    padding: 40px 0;

}

footer .line-footer2 {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
}

footer .line-footer2 .box-line-footer {
    max-width: calc(100% / 5);

}

footer .box-line-footer img {
    max-width: 140px;
    margin-bottom: 10px;
}

.line-footer2 .box-line-footer h3 {
    color: #fff;
    margin-bottom: 10px;
}

.line-footer2 .box-line-footer a {
    color: #fff;
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    font-size: 1rem;
}

.line-footer2 .box-line-footer .btn-redes a {
    display: inline;
}

.line-footer2 .box-line-footer .btn-redes button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    margin-right: 10px;
    transition: .2s;
}

.line-footer2 .box-line-footer .btn-redes button:hover {
    background-color: #fff;
    border-color: rgb(255, 255, 255);
    color: #000000;
}

footer .line-footer3 {
    padding-top: 40px;
    text-align: center;
}

@media screen and (max-width: 1060px) {
    .interface {
        display: none;
    }
    footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        text-align: left; 
        padding-left: 20px; 
    }

    .line-footer2 {
        display: flex;
        flex-wrap: wrap; 
        justify-content: space-between;
        width: 100%;
        padding: 10px;
        gap: 20px;
    }

    .box-line-footer {
        flex: 1 1 200px; 
        text-align: left;
        min-width: 150px; 
    }

    .box-line-footer h3 {
        margin-bottom: 10px;
    }

    .links-footer a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }

    .btn-redes {
        display: flex;
        gap: 10px;
    }
}

@media screen and (max-width: 800px) {
    footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        text-align: left; 
        padding-left: 20px;
    }

    .line-footer2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        width: 100%;
        gap: 20px; 
    }

    .box-line-footer {
        width: 100%;
        max-width: 90%;
    }

    .box-line-footer h3 {
        margin-bottom: 10px;
    }

    .links-footer a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }

    .btn-redes {
        display: flex;
        justify-content: flex-start; 
        gap: 10px;
    }
}


@media screen and (max-width: 428px) {
    footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        text-align: left;
        padding-left: 20px; 
    }

    .line-footer2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        width: 100%;
        gap: 20px;
    }

    .box-line-footer {
        width: 100%;
        max-width: 90%;
    }

    .box-line-footer h3 {
        margin-bottom: 10px;
    }

    .links-footer a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }

    .btn-redes {
        display: flex;
        justify-content: flex-start; 
        gap: 10px;
    }
}