#atuacao {
    background-image: linear-gradient(rgba(248, 249, 250, 0.97), rgba(248, 249, 250, 0.97)), url('../../../assets/images/piao.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.practice-areas-tabs {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background-color: var(--light-grey-bg);
}

.tab-link {
    flex: 1;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--medium-grey);
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-link:hover {
    background-color: #e9ecef;
    color: var(--primary-blue);
}

.tab-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background-color: var(--white);
}

.tabs-content {
    padding: 40px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

.tab-pane h4 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    color: var(--dark-grey);
    margin-top: 0;
    margin-bottom: 20px;
}

.tab-pane p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.tab-pane ul {
    list-style: none;
    padding: 0;
    font-size: 1.05rem;
}

.tab-pane ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.tab-pane ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-blue);
}

.tab-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}