section.area-acompanhe {
    background-color: eeeeee;
}
section.area-acompanhe .tag-arrow {
    background-color: transparent;
}
main.box-main {
    background-color: #fff;
    width: 100%;
    padding: 0 1rem 3rem;
}
.box-introduction p {
    margin-bottom: 2rem;
    font-weight: 500;
}
.advocacia .box-introduction {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5rem;
}
.advocacia .left {
    position: relative;
}
.advocacia .left,
.advocacia .right {
    width: 50%;
}
.advocacia .area-image {
    width: fit-content;
    height: 500px;
    position: relative;
    display: inline-flex;
}
.advocacia .area-image:before{
    pointer-events: none;
    content: "";
    position: absolute;
    border: 2px solid #fff;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.94, 0.96);
}
.advocacia .right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.advocacia .area-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}
.advocacia .box-introduction .left::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -50px;
    background-image: url('../img/advocacia/aspas.webp');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    opacity: 0.8;
}
.advocacia .box-introduction .left::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -50px;
    background-image: url('../img/advocacia/aspas.webp');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    transform: rotate(180deg);
}
@media (max-width: 1500px) {
    .advocacia .box-introduction .left::before {
        top: -35px;
        left: -0.5rem;
        width: 100px;
        height: 100px;
    }
    .advocacia .box-introduction .left::after {
        right: -0.5rem;
        width: 100px;
        height: 100px;
    }
    .advocacia .box-introduction .left::before,
    .advocacia .box-introduction .left::after {
        opacity: 0.8;
    }
}
@media (max-width: 1000px) {
    .advocacia .left, 
    .advocacia .right {
        width: 100%;
    }
    .advocacia .box-introduction {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    .advocacia .area-image {
        height: auto;
    }
}
@media (max-width: 950px) {
    .box-introduction p {
        font-size: 16px;
    }
}