@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(180deg, black 0%, #4D2C17 40%, #D87C2B 100%);
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #262626;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
}

.div-header-icones {
    display: flex;
    align-items: center;
}

header,
footer {
    background-color: #262626;
    color: #fff;
    padding: 0.6rem 1rem;
}

.container_notificacoes {
    flex: 1;
    padding: 1rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.titulo_notificacoes {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.notificacao {
    background-color: #fff;
    border-radius: 10px;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icone_notificacao {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #ff9800;
}

.conteudo_notificacao h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}

.conteudo_notificacao p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 4px;
}

.data_notificacao {
    font-size: 0.8rem;
    color: #888;
}