/* =========================================================
   COMUNICADOS / DISCURSOS / GALERIA
   ========================================================= */

.home-information {
    width: 100%;

    background: #ffffff;

    padding: 0 0 18px;
}


.home-information-container {
    width: min(
        1380px,
        calc(100% - 80px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;
}


/* =========================================================
   COLUNAS
   ========================================================= */

.home-information-column {
    min-width: 0;

    padding: 0 20px;

    border-right:
        1px solid #dedede;
}


.home-information-column:first-child {
    padding-left: 0;
}


.home-information-column:last-child {
    padding-right: 0;

    border-right: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.home-information-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 10px;

    padding-bottom: 9px;

    border-bottom:
        1px solid #e5e5e5;
}


.home-information-header h2 {
    margin: 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1;

    font-weight: 800;

    color: #222222;
}


.home-information-line {
    display: block;

    width: 43px;

    height: 2px;

    margin-top: 8px;

    background: #d20b16;
}


.home-information-more {
    margin-top: 1px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 800;

    color: #b0000c;

    text-decoration: none;

    text-transform: uppercase;
}


.home-information-more:hover {
    opacity: .65;
}


/* =========================================================
   LISTA
   ========================================================= */

.home-information-list {
    display: flex;

    flex-direction: column;
}


/* =========================================================
   COMUNICADOS
   ========================================================= */

.home-communication-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 72px;

    padding: 10px 0;

    border-bottom:
        1px solid #eeeeee;
}


.home-communication-item:last-child {
    border-bottom: none;
}


.home-document-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid #e1a0a0;

    border-radius: 50%;

    color: #c9000d;

    text-decoration: none;
}


.home-document-icon svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   DISCURSOS
   ========================================================= */

.home-speech-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 72px;

    padding: 10px 0;

    border-bottom:
        1px solid #eeeeee;
}


.home-speech-item:last-child {
    border-bottom: none;
}


.home-speech-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid #e1a0a0;

    border-radius: 50%;

    color: #c9000d;

    text-decoration: none;
}


.home-speech-icon span {
    font-size: 12px;

    margin-left: 2px;
}


/* =========================================================
   CONTEÚDO DOS ITENS
   ========================================================= */

.home-information-content {
    min-width: 0;
}


.home-information-type {
    display: block;

    margin-bottom: 4px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 8px;

    line-height: 1;

    font-weight: 500;

    color: #888888;
}


.home-information-content h3 {
    margin: 0 0 5px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 10px;

    line-height: 1.35;

    font-weight: 700;

    color: #222222;
}


.home-information-content h3 a {
    color: inherit;

    text-decoration: none;

    transition: color .2s ease;
}


.home-information-content h3 a:hover {
    color: #a00000;
}


.home-information-content time {
    display: block;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 8px;

    line-height: 1;

    color: #888888;

    text-transform: uppercase;
}


/* =========================================================
   GALERIA
   ========================================================= */

.home-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 6px;
}


.home-gallery-item {
    position: relative;

    display: block;

    width: 100%;

    height: 102px;

    overflow: hidden;

    background: #eeeeee;
}


.home-gallery-item img,
.home-gallery-item video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.home-gallery-item:hover img,
.home-gallery-item:hover video {
    transform: scale(1.05);
}


.home-gallery-play {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.8);

    border-radius: 50%;

    background:
        rgba(120,0,0,.75);

    color: #ffffff;

    font-size: 10px;

    padding-left: 2px;
}


/* =========================================================
   SEM CONTEÚDO
   ========================================================= */

.home-information-empty {
    margin: 15px 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 9px;

    line-height: 1.5;

    color: #888888;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .home-information-container {
        width:
            calc(100% - 50px);
    }

    .home-information-column {
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-information-content h3 {
        font-size: 9px;
    }

    .home-gallery-item {
        height: 85px;
    }
}


@media (max-width: 750px) {

    .home-information-container {
        grid-template-columns:
            1fr 1fr;
    }

    .home-gallery-column {
        grid-column: 1 / -1;

        margin-top: 30px;

        padding:
            0;

        border-right: none;
    }

    .home-gallery-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }
}


@media (max-width: 520px) {

    .home-information {
        padding-bottom: 30px;
    }

    .home-information-container {
        width:
            calc(100% - 30px);

        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .home-information-column,
    .home-information-column:first-child,
    .home-information-column:last-child {
        width: 100%;

        padding:
            0 0 25px;

        border-right: none;

        border-bottom:
            1px solid #e5e5e5;
    }

    .home-information-column:last-child {
        border-bottom: none;
    }

    .home-gallery-column {
        margin-top: 0;
    }

    .home-gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .home-gallery-item {
        height: 130px;
    }
}