#conteudo {
    margin-top: 120px;
}

h1 {
    font-weight: 500;
    font-size: 24px;
    margin: 30px auto;
    margin-top: 140px;
    margin-left: 20px;
}

@media(min-width: 801px) {
    .notificacao {
        max-width: 800px;
    }

    h1 {
        max-width: 800px;
        margin: 40px auto;
        margin-top: 150px;
    }
}

#notificacoes {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.notificacao {
    margin: auto;
    border-radius: 16px;
    width: 90%;
    box-shadow:
        0 0 15px 1px rgba(0, 0, 0, 0.234);
    transition: box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
    position: relative;
    padding: 0.6rem 0 0 0;
}

.notificacao h3 {
    font-size: 17px;
    margin-bottom: 0px;
    font-weight: 500;
    word-break: break-all;
}

.notificacao p {
    margin-top: 10px;
    font-weight: 400;
    color: #555;
    max-width: 90%;
}

.notificacao.perigo {
    border: 1px solid transparent;
}

.notificacao.perigo:hover {
    color: #DC3545;
    transition: 0.3s;
}

.notificacao.perigo:hover p {
    color: #DC3545;
    transition: 0.3s;
}

.notificacao:hover {
    border-color: #dc3546c4 !important;
    box-shadow:
        0 0 15px 1px #dc354667;
    transition: box-shadow 0.3s ease;
}

.campo_notificacao {
    margin: 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dc354633;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.notificacao img {
    margin: 0px 20px;
    width: 30px;
}

.informacoes {
    width: 100%;
    height: 100%;
}

.tempo {
    position: absolute;
    background-color: #ffffffcc;
    padding: 5px;
    border-radius: 8px;
    right: 2px;
    top: 2px;
    font-weight: 500;
    font-size: 13px;
}