
    .team-section {
        background-color: #EBEFF5;
        color: #024248;
        padding: 120px 0;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .wrapper-saibamais {
        display: flex;
        align-items: center;
        margin-top: 20px;
        color: #007D7A;
        gap: 10px;
    }

    .team-container {
        max-width: 74.1rem;
        margin: auto;
    }

    .team-view-all-btn {
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #007D7A;
        border: 1px solid #007D7A;
        padding: 8px 24px;
        border-radius: 40px;
        background-color: white;
        font-weight: 600;
        margin: 40px auto 0;
    }
    
    .team-view-all-btn:hover {
        color: #006969;
        border: 1px solid #006969;
    }

    .team-view-all-btn:active {
        color: #025257;
        border: 1px solid #025257;
    }

    .team-title {
        font-size: 40px;
        color: #024248;
        margin: 0;
        font-weight: 600;
    }

    .team-subtitle {
        font-size: 20px;
        color: #333840;
        font-weight: 400;
        margin: 10px 0 0 0;
    }

    .team-carousel-wrapper {
        position: relative;
        max-width: 1142px;
        margin: 0 auto;
        overflow: hidden;
        padding: 0 2rem; /* Espaço para os botões de navegação */
    }

    .team-carousel-container {
        overflow: hidden;
        width: 100%;
    }

    .team-carousel-track {
        display: flex;
        transition: transform 0.3s ease-in-out;
        gap: 25px;
        cursor: grab;
    }

    .team-carousel-track:active {
        cursor: grabbing;
    }

    .team-card-wrapper {
        flex: 0 0 auto;
        width: 300px;
    }

    /* Estilos do Card de Time */
    .team-card {
        position: relative;
        width: 300px;
        height: 440px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        color: white;
    }

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

    .team-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(2, 66, 72, 1) 1%, rgba(255, 255, 255, 0) 60%);
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        padding: 20px;
    }

    .team-card-content {
        width: 100%;
        text-align: center;
        padding-bottom: 4rem;
    }

    .team-member-name {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .team-member-role {
        font-size: 18px;
        font-weight: 300;
    }

    .team-member-role p {
        color: white;
    }

    .team-member-role a {
        color: white;
        
    }

    .team-member-role a:hover {
        color: white;
        text-decoration: underline;
    }


    .team-member-role a::after {
        font-family: "Font Awesome 5 Free";
        content: "\f35d"; /* ícone de link externo */
        font-weight: 900;
        font-size: 0.8em;
        margin-left: 4px;
    }

    .descricao-formacao a:hover {
        color: white;
        text-decoration: underline;
    }


    .descricao-formacao a::after {
        font-family: "Font Awesome 5 Free";
        content: "\f35d"; /* ícone de link externo */
        font-weight: 900;
        font-size: 0.8em;
        margin-left: 4px;
    }

    .content-richtext{
        color: #434A54;
    }

    .content-richtext p,
    .content-richtext h1,
    .content-richtext h2 {
        color: #434A54;
        font-weight: 500;
    }

    .content-richtext p {
        color: #434A54;
    }
    
    .content-richtext h1 {
        color: #434A54;
        font-weight: 500;
    }
    
    .content-richtext h2 {
        color: #434A54;
        font-weight: 500;
    }


    .content-richtext h3 {
        color: #434A54;
        font-weight: 500;
    }
    
    .content-richtext h4 {
        color: #434A54;
        font-weight: 500;
    }

    .team-nav-button {
        position: absolute;
        border: none;
        background-color: transparent;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 10;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .team-nav-prev {
        left: 0;
        opacity: 0;
        pointer-events: none;
    }

    .team-nav-next {
        right: 0;
        opacity: 1;
        display: flex !important;
        pointer-events: auto !important;
    }

    .team-header {
        margin: 0 auto 50px;
        max-width: 1142px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 2rem;
    }

    .team-view-all {
        text-align: center;
        margin-top: 1.5rem;
    }

    /* Estilos responsivos */
    @media (max-width: 1200px) {
        .team-carousel-wrapper {
            max-width: 950px;
        }
    }

    @media (max-width: 768px) {
        .team-container {
            max-width: 100vw;
            margin: 0;
        }
        
        .team-nav-button {
            display: none !important;
        }

        .team-section {
            padding: 60px 0;
        }
        
        .team-title {
            font-size: 32px;
        }

        .team-header {
            margin-bottom: 30px;
            gap: 5px;
            padding: 0 15px;
        }
        
        .team-card-wrapper {
            width: 260px;
        }
        
        .team-carousel-wrapper {
            padding: 0 0 0 15px;
        }
    }

    @media (max-width: 480px) {
        .team-card-wrapper {
            width: 90vw;
            max-width: 300px;
        }
        
        .team-section {
            padding: 40px 0;
        }
    }
