/* ══ BANNER LGPD ══ */
.CookieMessage {
    display: none;          /* só JS controla a visibilidade */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;         /* acima de tudo: nav (1003), WA (9999) */
    background: linear-gradient(135deg, #0d1b3e 0%, #184aad 100%);
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* JS adiciona display:flex via .active */
.CookieMessage.active {
    display: flex;
}

.CookieMessage-text {
    flex: 1;
    min-width: 220px;
}

.lgpdPoliticaPrivacidade {
    color: #90ee90;
    font-weight: 600;
    text-decoration: underline;
}

.lgpdPoliticaPrivacidade:hover {
    color: #c8ffc8;
}

.CookieMessage-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.CookieMessage-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;   /* garante que o clique funciona */
}

.CookieMessage-button:hover {
    background: #1da851;
    transform: translateY(-1px);
    color: #fff !important;
}

.CookieMessage-button:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .CookieMessage {
        padding: 14px 16px;
        font-size: 13px;
    }
    .CookieMessage-button {
        padding: 9px 16px;
        font-size: 13px;
    }
}
