.estudo-team-section {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 0;
}

.estudo-team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.team-header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.team-tagline {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    line-height: 1;
}

.team-main-title {
    margin: 0;
    font-family: 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1;
}

.team-carousel-nav {
    display: flex;
    gap: 15px;
}

.team-carousel-nav button {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 45px;
    height: 35px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.team-carousel-nav button img {
    width: 16px;
    height: 12px;
    display: block;
    object-fit: contain;
}

.estudo-team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    box-sizing: border-box;
}

.team-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.estudo-team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.team-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-card-name {
    margin: 0;
    font-family: 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: normal;
}

.team-card-role {
    font-size: 13px;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .estudo-team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .team-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .team-main-title {
        font-size: 2.2rem;
    }
}