body{
    background-image: url("../img/a-empresa/body-banner.webp");
    background-position: center;
    background-position-y: -200px;
    background-size: cover;
    background-repeat: no-repeat;
}
section.sobre{
    padding: 40px 0;
}
section.sobre .wrapper{
    width: 920px;
    padding-left: 20px;
}
section.sobre .wrapper h2{
    font-size: 20.83px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 25px; 
}
section.sobre .wrapper .text{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
section.sobre .wrapper .text p{
    font-weight: 500;
    font-size: 16.67px;
}
.foto-clinica{
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.205);
    background-image: url("../img/a-empresa/clinica.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 225px;
}
section.gestoras {
    padding-top: 66px;
    min-height: 790px;
}
section.gestoras h2{
    font-size: 20.83px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 25px; 
}
section.gestoras .item{
    display: flex;
    gap: 18px;
}
section.gestoras .item:nth-child(2){
    float: right;
    flex-direction: row-reverse;
}
section.gestoras .item .image{
    position: relative;
    width: 235px;
    height: 352px;
    display: inline-flex;
    background-color: red;
    box-shadow: 0 0 20px #00000060;
}
section.gestoras .item .text{
    width: 380px;
    margin-top: 33px;
}
section.gestoras .item .text .head{
    margin-bottom: 37px;
}
section.gestoras .item .text .head h3{
    font-size: 16.67px;
    font-weight: 500;
    font-style: italic;
}
section.gestoras .item .text .head h3:nth-child(2){
    font-style: normal;
}
section.gestoras .item .text ul{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 18px;
}
section.gestoras .item .text ul li{
    font-size: 16.67px;
    font-weight: 500;
}
section.gestoras .item .text ul li::marker{
    font-size: 0.9em;
}
section.gestoras .item:last-child {
    transform: translateY(-60px);
}
section.gestoras .item:last-child .image:before{
    content: "";
    position: absolute;
    width: 840px;
    height: 4px;
    background-color: #145b42;
    top: -20px;
    right: 102px;
}
section.gestoras .item:last-child .text{
    text-align: right;
}
section.gestoras .item:last-child .text ul {
    align-items: end;
    list-style: none;
}
section.gestoras .item:last-child .text ul li{
    position: relative;
    /* padding-left: 12px; */
}
section.gestoras .item:last-child .text ul li::before{
    width: 5px;
    height: 5px;
    background-color: var(--marrom);
    border-radius: 50%;
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

@media(max-width: 768px) {
    section.sobre .wrapper{
        width: 100%;
    }
    section.gestoras {
        padding-bottom: 50px;
    }
    section.gestoras .wrapper{
        display: flex;
        flex-direction: column;
        row-gap: 50px;
    }
    section.gestoras .item{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    section.gestoras .item .text{
        width: 100%;
    }
    section.gestoras .item .text .head{
        text-align: left;
    }
    section.gestoras .item:last-child{
        transform: none;
        display: flex;
        flex-direction: column;
    }
    section.gestoras .item:last-child .text ul{
        align-items: start;
        list-style: disc;
        text-align: left;
    }
    section.gestoras .item:last-child .text ul li:before{
        display: none;
    }
}