/* =========================================================
   RT RECOVERY - POPUP LGPD / COOKIES
========================================================= */

.rt-cookie-popup {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: min(420px, calc(100% - 40px));
    padding: 22px;
    background: linear-gradient(135deg, #050505, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    z-index: 999999;
    color: #ffffff;
}

.rt-cookie-popup h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #ff4a00;
}

.rt-cookie-popup p {
    margin: 0 0 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.rt-cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rt-cookie-actions button,
.rt-cookie-actions a {
    height: 44px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rt-cookie-accept {
    background: #ff4a00;
    color: #ffffff;
}

.rt-cookie-policy {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

@media (max-width: 520px) {
    .rt-cookie-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
    }
}
