.presidente {
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    margin-bottom: 30px;

    .presidente-title {
        padding: 36px 32px;
        border-bottom: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;

        h3 {
            font-weight: 500;
            font-size: 18px;
            line-height: 100%;
            color: #5A5A5A;
            margin: 0;
        }

        .seta {
            svg {
                transition: 300ms all ease-in-out;
            }
        }
    }

    .presidente-body {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        opacity: 0;
        height: 0;
        transition: 300ms all ease-in-out;

        .presidente-conteudo {
            column-count: 2;
            column-gap: 60px;
            column-fill: auto;
            height: 680px;
            overflow: hidden;
            padding: 32px;
            opacity: 0;
            height: 0;
            transition: 300ms all ease-in-out;

            @media (max-width: 768px) {
                column-count: 1;
            }

            .item {
                break-inside: avoid;
                margin-bottom: 20px;
            }

            h4 {
                margin: 0 0 4px;
                font-size: 16px;
                font-weight: 500;
                color: #5A5A5A;
            }

            strong {
                display: block;
                margin-bottom: 4px;
                font-size: 14px;
                color: #555;
            }

            p {
                margin: 0;
                font-size: 16px;
                line-height: 1.5;
                color: #5A5A5A;
                font-weight: 400;
            }
        }
    }

    &.open {
        .presidente-title {
            border-bottom: 1px solid #E3E3E3;

            .seta {
                svg {
                    transform: rotate(180deg);
                }
            }
        }

        .presidente-body {
            height: 100%;
            opacity: 1;

            .presidente-conteudo {
                height: 680px;
                opacity: 1;
            }
        }
    }
}

.presidente-foto {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
    break-inside: avoid;

    img {
        width: 100%;
        border-radius: 8px;
        display: block;
    }

    .badge {
        position: absolute;
        bottom: 12px;
        left: 12px;
        background: #e53935;
        color: #fff;
        padding: 6px 14px;
        border-radius: 6px;
        font-size: 14px;
    }
}