/* ─── Banner de Consentimento de Cookies (LGPD) ─────────────────────── */
.am-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    padding: 1.25rem 1.4rem;
    z-index: 99999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: .85rem;
    line-height: 1.45;
    display: none;
    animation: am-cookie-rise .35s ease-out;
}
@media (min-width: 768px) {
    .am-cookie-banner {
        left: auto;
        right: 24px;
        bottom: 24px;
    }
}
.am-cookie-banner.show { display: block; }

@keyframes am-cookie-rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.am-cookie-banner__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: .5rem;
    font-size: .92rem;
}
.am-cookie-banner__title i { font-size: 1.05rem; }

.am-cookie-banner__text {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: .82rem;
}
.am-cookie-banner__text a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.am-cookie-banner__actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.am-cookie-banner__btn {
    flex: 1;
    min-width: 110px;
    border: none;
    border-radius: 8px;
    padding: .55rem .8rem;
    font-weight: 600;
    font-size: .82rem;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.am-cookie-banner__btn--accept {
    background: #000;
    color: #fff;
}
.am-cookie-banner__btn--accept:hover { background: #1f2937; }

.am-cookie-banner__btn--reject {
    background: #fff;
    color: #1f2937;
    border: 1px solid #d1d5db;
}
.am-cookie-banner__btn--reject:hover {
    border-color: #000;
    color: #000;
}
