body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.illustrative {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    background-image: url("/assets/images/diretoria-imagem.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;

    overflow: hidden;

    .illustrative-title {
        position: relative;
        z-index: 2;
        color: var(--primary-text-color);
        font-size: 80px;
        font-weight: 600;

        width: 100%;
        max-width: 1200px;

        margin: 0 auto;
        padding-left: 10vw;

        text-align: left;
    }

    .illustrative-description {
        position: relative;
        z-index: 2;
        color: var(--primary-text-color);
        font-size: 60px;
        font-weight: 600;

        width: 100%;
        max-width: 1200px;

        margin: 0 auto;
        padding-left: 10vw;

        text-align: left;
    }
}

.illustrative-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .container-header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding-top: 16px;
        padding-bottom: 16px;

        width: 100%;

        span {
            font-size: 48px;
            font-weight: 600;
            color: var(--primary-text-color);
            text-align: center;
        }
    }

    .container-body {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-sizing: border-box;

        width: 100%;

        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 32px;

        .container-title {
            padding-top: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            span {
                font-size: 36px;
                font-weight: 600;
                color: var(--overlay-text-color);
            }
        }

        .container-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
    
            padding-top: 16px;
            padding-bottom: 16px;

            gap: 32px;
    
            .card {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
    
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;

                width: 400px;
                height: 400px;
                overflow: hidden; 
    
                .card-header {
                    width: 100%;
                    height: 250px; 
                    overflow: hidden;
    
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover; 
                        display: block;
                    }
                }
    
                .card-body {
                    padding: 16px;
                    color: var(--overlay-text-color);
                    border-left: 1px solid rgb(194, 200, 207);
                    border-bottom: 1px solid rgb(194, 200, 207);
                    border-right: 1px solid rgb(194, 200, 207);

                    .card-title {
                        font-size: 26px;
                        font-weight: 500;
                        text-decoration: underline;
                        cursor: pointer;
                    }
                }
            }
        }
    }

}

.description-company {
    padding-top: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .description-company {
        padding-top: 20px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 768px) {
    .news-body {
        max-width: 100%;
        
        .news-container {
            flex-direction: column !important;
        }
    }

}

@media (max-width: 480px) {
    .container .container-header {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .container .container-header span:first-child {
        font-size: 20px;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
        display: block;
        width: 100%;
    }

    .container .container-header span:last-child {
        font-size: 13px;
        display: block;
        margin-top: 6px;
    }
}