section.contador{
    background-image: url("../img/a-empresa/banner-perfil.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1920px;
    padding-bottom: 40px;
}
section.contador .wrapper {
    text-align: center;
    color: var(--azul);
}
section.contador .wrapper hr{
    border: 0.5px solid var(--azul);
}
section.contador .wrapper img{
    filter: invert(35%) sepia(32%) saturate(1136%) hue-rotate(177deg) brightness(89%) contrast(86%);
    width: 80px;
}
section.contador .wrapper .introduction p{
    line-height: 1.4;
    font-size: 16.67px;
    font-weight: 500;
    color: var(--cinza);
    margin-bottom: 30px;
}
section.contador .wrapper .introduction h3{
    font-size: 25px;
    padding-top: 30px;
    font-weight: 500;
}
section.contador strong{
    font-weight: 800;
}
section.contador .wrapper .group-cards{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 80px;
}
section.contador .wrapper .group-cards .card {
    flex-basis: 29%;
}
section.contador .wrapper .group-cards .card .top{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
section.contador .wrapper .group-cards .card .top h4{
    font-size: 20px;
}
section.contador .wrapper .group-cards .card .body p{
    font-size: 16.67px;
}
section.contador .wrapper .credits{
    padding: 30px 0;
    max-width: 800px;
    text-align: left;
    display: flex;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
}
section.contador .wrapper .credits h4{
    font-size: 20px;
}
section.contador .wrapper .cadastre-se{
    padding: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
section.contador .wrapper .cadastre-se .text{
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
}
section.contador .wrapper .cadastre-se .text h4{
    width: fit-content;
    font-size: 20px;
    text-wrap: nowrap;
}
section.contador .wrapper .cadastre-se h3#btn-cadastro{
    width: fit-content;
    position: relative;
    color: var(--azul);
    font-size: 30px;
    font-weight: 800;
    padding: 3px 10px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
section.contador .wrapper h3#btn-cadastro:hover{
    color: #fff;
    background-color: var(--azul);
}
section.contador .wrapper h3#btn-cadastro:before{
    content: '';
    position: absolute;
    width: 35px;
    height: 20px;
    border-bottom: var(--azul) 3px solid;
    border-right: var(--azul) 3px solid;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    transition: all .4s ease;
}
section.contador .wrapper h3#btn-cadastro:after{
    content: '';
    position: absolute;
    width: 35px;
    height: 20px;
    border-top: var(--azul) 3px solid;
    border-left: var(--azul) 3px solid;
    top: 0px;
    left: 0px;
    opacity: 1;
    transition: all .4s ease;
}
section.contador .wrapper .atencao {
    max-width: 450px;
    text-align: left;
    margin: 0 auto;
    padding-bottom: 30px;
}
section.contador .wrapper .atencao h4{
    font-size: 16.67px;
    font-weight: 500;
}
.faixa-parceiros {
    background-color: #fff;
    padding: 35px 0;
    border-top: 10px solid var(--azul);
    border-bottom: 10px solid var(--azul);
    position: relative;
}
.faixa-parceiros .content{
    max-width: 1920px;
}
.faixa-parceiros:before, .faixa-parceiros:after {
    position: absolute;
    top: 0;
    content: '';
    width: 20%;
    height: 100%;
    z-index: 2;
}
  
.faixa-parceiros:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}
  
.faixa-parceiros:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}
.swiper-brands {
    width: 100%;
    height: 100%;
}
.swiper-brands .swiper-wrapper{
    display: flex;
    align-items: center;
}
.swiper-brands .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-brands .swiper-slide img{
    width: 200px;
    height: auto;
    object-fit: cover
}

@media(max-width: 1100px){
    section.contador .wrapper .group-cards{
        flex-direction: column;
        row-gap: 30px;
    }
    section.contador .wrapper .cadastre-se{
        flex-direction: column;
        align-items: center;
    }
    section.contador .wrapper .credits{
        flex-direction: column;
        text-align: center;
    }
    section.contador .wrapper .cadastre-se .text h4{
        text-wrap: wrap;
    }
}