.box-titulo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(120deg, #f8fbfc 0%, #eef7f8 100%);
    border: 1px solid #d9eaec;
    box-shadow: 0 8px 20px -16px rgba(22, 52, 56, 0.65);
}

.section h2 {
    margin: 0;
}

.box-titulo-icone {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #f3f3f3 0%, #e9f3f3 100%);
    box-shadow: 0 10px 20px -12px rgba(59, 145, 151, 0.9);
}

.box-titulo img {
    max-width: 60px;
    mix-blend-mode: multiply;
}

.box-titulo-texto {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.box-titulo .titulo-tag {
    width: fit-content;
    padding: 2px 10px;
    border-radius: 999px;
    background-color: #dff1f3;
    color: #2e7f84;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.box-titulo h2 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #284447;
}

.marquee-container {
    height: 30px;
    background-color: #ffa500;
    border-radius: 10px;
    padding: 5px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

span.marquee {
    flex: 0 0 auto;
    display: inline-block;
    font-size: medium;
    color: #ffffff;
    animation: mural-marquee 20s linear infinite;
}

@keyframes mural-marquee {
    0% {
        transform: translateX(300%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee {
        animation: none;
        transform: none;
    }
}

.box-mural {
    --mural-surface: linear-gradient(145deg, #f7fbfc 0%, #edf6f7 100%);
    --mural-border: #d6e9eb;
    --mural-shadow: 0 20px 38px -28px rgba(27, 66, 71, 0.75);
    --mural-main: #3b9197;
    --mural-muted: #607b80;
    --mural-soft: #f2f8f9;
    --mural-list-bg: #ffffff;
    --mural-list-hover: #e6f3f5;
    --mural-highlight: #f39a0f;

    display: flex;
    gap: 14px;
    width: 100%;
    max-width: 1030px;
    height: max-content;
    padding: 5px;
    justify-content: center;
    align-items: flex-start;
    border: 1px solid var(--mural-border);
    border-top: 5px solid var(--mural-main);
    border-radius: 16px;
    background: var(--mural-surface);
    box-shadow: var(--mural-shadow);
}

#mural {
    flex: 1 1 80%;
    max-width: 80%;
    padding: 12px;
    height: 340px;
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 12px;
    background-color: var(--mural-list-bg);
    border: 1px solid #dcebed;
}

#mural ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#mural ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#mural .item-mural {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    background-color: var(--mural-soft);
    border: 1px solid #e0eef0;
    transition: box-shadow .25s ease, transform .25s ease;
}

#mural .item-mural:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px -22px rgba(25, 74, 80, 0.9);
}

#mural .img-item,
#mural .info-mural {
    flex: 1 1 50%;
    min-width: 0;
    height: 300px;
}

#mural .img-item a {
    display: block;
    width: 100%;
    height: 100%;
}

#mural span {
    flex-wrap: nowrap;
}

#mural img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

#mural .info-mural {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    justify-content: space-between;
    height: 300px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #e2eef0;
}

.info-mural .desc,
.desc-data {
    font-weight: 700;
    color: #5d7276;
}

.mural-descricao {
    overflow-y: auto;
    line-height: 1.45;
}

.mural-descricao .desc-texto {
    color: var(--mural-muted);
    font-size: clamp(0.86rem, 0.84rem + 0.2vw, 0.95rem);
}

.mural-data .data {
    color: var(--mural-highlight);
    font-weight: 700;
}

#lista-mural {
    width: 20%;
    min-width: 180px;
    height: 340px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    border-radius: 5px;
    border: 1px solid #dbecef;
    background: var(--mural-list-bg);
    /* box-shadow: 0 16px 28px -28px rgba(19, 55, 60, 1); */
}

#lista-mural .selec-post {
    color: #ffffff;
    background: linear-gradient(120deg, #6f878b 0%, #516f73 100%);
    border-radius: 7px;
    text-align: center;
    font-weight: 700;
    padding: 7px;
    letter-spacing: 0.01em;
}

#lista-mural a {
    padding: 10px;
    text-decoration: none;
    text-transform: capitalize;
    background-color: var(--mural-soft);
    border-radius: 8px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
    color: #5f7478;
    min-height: 40px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: all .2s ease;
}

#lista-mural a:hover {
    background-color: var(--mural-list-hover);
    color: #355f63;
    border-color: #c7e4e8;
}

#lista-mural a img {
    max-width: 40px;
    max-height: 35px;
    object-fit: cover;
}

#lista-mural a.active {
    border: 1px solid #2e7f84;
    background-color: #3b9197;
    color: #f7fdff;
}

#lista-mural::-webkit-scrollbar {
    width: 5px;
}

#lista-mural::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#lista-mural::-webkit-scrollbar-thumb {
    background: #888;
}

#lista-mural::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width:600px) {
    section h2 {
        text-align: center;
    }

    section {
        justify-content: center;
        align-items: center;
    }

    .box-titulo {
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px;
        margin-top: 0;
    }

    .box-titulo-icone {
        width: 52px;
        height: 52px;
    }

    .box-titulo img {
        max-width: 32px;
    }

    .box-titulo .titulo-tag {
        font-size: 0.65rem;
    }

    .box-titulo h2 {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }

    .box-mural {
        padding: 10px;
        border-radius: 12px;
        box-shadow: 0 16px 28px -24px rgba(27, 66, 71, 0.65);
    }

    #mural {
        max-width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    #mural img {
        width: 100%;
        height: 100%;
    }

    #mural ul li {
        width: 100%;
    }

    #mural .item-mural {
        flex-direction: column;
        padding: 8px;
    }

    #mural .img-item,
    #mural .info-mural {
        width: 100%;
        height: max-content;
    }

    #mural .img-item a {
        height: auto;
    }

    #mural .img-item img {
        height: auto;
    }

    #lista-mural {
        display: none;
    }

    .info-mural {
        height: max-content;
    }

    #mural .info-mural {
        justify-content: flex-start;
        height: max-content;
    }

    #mural ul {
        gap: 30px;
    }
}
