section.onde-estamos {
    background-image: url("../img/a-empresa/banner-perfil.webp");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 1920px;
    padding-bottom: 40px;
}
section.onde-estamos #subtitle{
    text-align: center;
    color: var(--cinza);
    font-size: 16.67px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 40px;
}
section.onde-estamos .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 56px;
}
section.onde-estamos .row h3{
    white-space: nowrap;
    font-size: 30px;
    font-weight: 800;
    color: var(--azul);
    margin-bottom: 34px;
}
section.onde-estamos .group-col{
    display: flex;
    justify-content: center;
    gap: 66px;
}
section.onde-estamos .group-col.s-3{
    gap: 40px;
}
section.onde-estamos .group-col.s-2 .col{
    width: 490px;
}
section.onde-estamos .col{
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.onde-estamos .card{
    position: relative;
    outline: 5px solid var(--azul);
    border: 7px solid #fff;
    padding: 27px;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: var(--azul);
    width: 365px;
    min-height: 470px;
}
section.onde-estamos .card .image{
    overflow: hidden;
    display: inline-flex;
    width: 100%;
    height: 193px;
    margin-bottom: 31px;
}
section.onde-estamos .card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.onde-estamos .card .text{
    font-family: 'Arial';
    color: #fff;
}
section.onde-estamos .card .text .top{
    margin-bottom: 25px;
}
section.onde-estamos .card .text h4{
    white-space: nowrap;
    font-size: 20px;
    font-weight: 400;
}
section.onde-estamos .card .text ul{
    display: flex;
    flex-direction: column;
    row-gap: 17px;
}
section.onde-estamos .card .text ul li a{
    font-size: 16.67px;
}
section.onde-estamos .col .card:nth-child(2) .text h4{
    white-space: wrap;
}
section.onde-estamos .card span{
    position: absolute;
    left: 27px;
    bottom: 15px;
    color: #fff;
    font-size: 13px;
    text-wrap: nowrap;
}
@media(max-width: 768px){
    section.onde-estamos .group-col{
        width: 100%;
        flex-direction: column;
    }
    section.onde-estamos .row h3{
        font-size: 20px;
        text-align: center;
        white-space: normal;
    }
    section.onde-estamos .card{
        width: 100%;
        height: auto;
    }
    section.onde-estamos .card .text {
        margin-bottom: 50px;
    }
    section.onde-estamos .card .text h4{
        white-space: normal;
    }
    section.onde-estamos .group-col.s-2 .col{
        width: 100%;
    }
}