.diretores {
    width: 100%;
    padding: 55px 0 70px;
    background-color: #fff;
}

.diretores .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.diretores .conteudo {
    width: 100%;
}

.diretores .texto {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 120px;
    text-align: center;
}

.diretores .texto h2 {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 17px;
    color: var(--color);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
}

.diretores .texto h2 b {
    color: var(--color-destaque);
}

.diretores .texto h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 42px;
    height: 3px;
    transform: translateX(-50%);
    background-color: var(--color-destaque-2);
}

.diretores .texto .descricao {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.diretores .texto .descricao p {
    margin: 0;
    color: var(--color);
    text-align: center;
}

.diretores .itens {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 120px;
    isolation: isolate;
}

.diretores .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 45px 20px 24px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, .035);
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
    text-align: center;
    z-index: 2;
    transition: transform .25s ease, box-shadow .25s ease;
}

.diretores .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
}

.diretores .item:nth-child(1) {
    background-color: var(--color-destaque-3);
}

.diretores .item .foto {
    position: absolute;
    top: -85px;
    left: 50%;
    width: 116px;
    height: 116px;
    transform: translateX(-50%);
    border: 3px solid var(--color-destaque);
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, .10);
    z-index: 3;
}

.diretores .item .foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.diretores .item .cargo {
    width: 100%;
    margin: 0 0 5px;
    color: var(--color-destaque);
    font-size: 18px;
    font-family: var(--font-family-bold);
    text-align: center;
}

.diretores .item .nome {
    width: 100%;
    margin: 0;
    color: var(--color);
    text-align: center;
}

.diretores .item:nth-child(1) .cargo {
    color: var(--color-white);
}

.diretores .item:nth-child(1) .nome {
    color: var(--color-white);
}

@media only screen and (min-width: 768px) {
    .diretores {
        padding: 70px 0 85px;
    }

    .diretores .container {
        padding: 0 30px;
    }

    .diretores .texto h2 {
        font-size: 40px;
    }

    .diretores .itens {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 120px 26px;
    }

    .diretores .item {
        max-width: 300px;
    }
}

@media only screen and (min-width: 1024px) {
    .diretores {
        padding: 80px 0 110px;
    }

    .diretores .container {
        padding: 0 40px;
    }

    .diretores .texto h2 {
        font-size: 44px;
    }

    .diretores .itens {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-auto-rows: auto;
        column-gap: 18px;
        row-gap: 120px;
        overflow: visible;
    }

    .diretores .item {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .diretores .item:nth-child(1) {
        grid-column: 4 / span 2;
        grid-row: 1;
    }

    .diretores .item:nth-child(2) {
        grid-column: 2 / span 2;
        grid-row: 2;
    }

    .diretores .item:nth-child(3) {
        grid-column: 6 / span 2;
        grid-row: 2;
    }

    .diretores .item:nth-child(4) {
        grid-column: 1 / span 2;
        grid-row: 3;
    }

    .diretores .item:nth-child(5) {
        grid-column: 3 / span 2;
        grid-row: 3;
    }

    .diretores .item:nth-child(6) {
        grid-column: 5 / span 2;
        grid-row: 3;
    }

    .diretores .item:nth-child(7) {
        grid-column: 7 / span 2;
        grid-row: 3;
    }

    .diretores .item:nth-child(8) {
        grid-column: 1 / span 2;
        grid-row: 4;
    }

    .diretores .item:nth-child(9) {
        grid-column: 3 / span 2;
        grid-row: 4;
    }

    .diretores .item:nth-child(10) {
        grid-column: 5 / span 2;
        grid-row: 4;
    }

    .diretores .item:nth-child(11) {
        grid-column: 7 / span 2;
        grid-row: 4;
    }

    .diretores .item:nth-child(12) {
        grid-column: 4 / span 2;
        grid-row: 5;
    }
}

@media only screen and (min-width: 1200px) {
    .diretores .texto {
        float: left;
        max-width: 250px;
        text-align: left;
        margin-bottom: -140px;
    }

    .diretores .texto .descricao p {
        text-align: left;
    }
}

@media only screen and (min-width: 1400px) {}