.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    width: 340px;
    font-family: inherit;
    z-index: 10000;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .08);
}

.cookie-content h4 {
    margin: 0 0 10px;
    color: var(--yellow);
}

.cookie-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--muted);
}

.cookie-content a {
    color: var(--blue);
    font-weight: bold;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btn-accept,
.btn-reject {
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept {
    background: linear-gradient(180deg, var(--blue), var(--blue-2));
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-accept:hover {
    background: #fff;
    /* vermelho no hover */
    color: blue;
    transform: scale(1.1);
}

.btn-reject {
    border: 1px solid var(--muted);
    background: transparent;
    color: var(--muted);
}

.btn-reject:hover {
    background: #ff4d4d;
    /* vermelho no hover */
    color: #fff;
    transform: scale(1.1);
}

.notificacao {
    max-width: 100%;
    width: 500px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    pointer-events: none;
    /* desativa clique quando invisível */
}

@media (max-width:720px) {
    .notificacao {
        max-width: 100%;
        width: auto;
    }
}

.notificacoes-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* espaço entre as notificações */
    z-index: 9999;
}

.notificacao img {
    width: 100px;
    margin-right: 10px;
}

.notificacao .conteudo {
    flex: 1;
    color: #063df4;
    /* azul forte */
}

.notificacao .conteudo strong {
    background: linear-gradient(45deg, #ff0000, #ff7300);
    background-clip: text;
    /* versão padrão */
    -webkit-background-clip: text;
    /* compatibilidade WebKit */
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 16px;
}

.notificacao.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    /* ativa clique quando visível */
}

.notificacao .fechar {
    cursor: pointer;
    font-weight: bold;
    margin-left: 8px;
    color: #555;
    font-size: 20px;
    line-height: 20px;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 50%;
    background: #f0f0f0;
    /* fundo cinza claro */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.notificacao .fechar:hover {
    background: #ff4d4d;
    /* vermelho no hover */
    color: #fff;
    transform: scale(1.1);
}