/* Cookie consent fallback (LGPD) — isolado para troca futura por CMP */
.hm-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    /* Acima de barras sticky do booking (1070), datepicker (11000) e widgets */
    z-index: 12050;
    padding: 16px;
    pointer-events: none;
}

.hm-cookie-banner__panel {
    pointer-events: auto;
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    color: #222;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
}

.hm-cookie-banner__text {
    flex: 1 1 280px;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #484848;
}

.hm-cookie-banner__text a {
    color: #222;
    text-decoration: underline;
}

.hm-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto;
}

.hm-cookie-banner__btn {
    appearance: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding: 10px 16px;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.hm-cookie-banner__btn--accept {
    background: #FF385C;
    border: 2px solid #FF385C;
    color: #fff;
}

.hm-cookie-banner__btn--accept:hover,
.hm-cookie-banner__btn--accept:focus {
    background: #e03150;
    border-color: #e03150;
    color: #fff;
    outline: none;
}

.hm-cookie-banner__btn--reject {
    background: #fff;
    border: 2px solid #222;
    color: #222;
}

.hm-cookie-banner__btn--reject:hover,
.hm-cookie-banner__btn--reject:focus {
    background: #f7f7f7;
    outline: none;
}

.hm-cookie-banner[hidden] {
    display: none !important;
}

body.hm-cookie-banner-open {
    padding-bottom: 120px;
}

@media (max-width: 640px) {
    .hm-cookie-banner {
        padding: 12px;
    }

    .hm-cookie-banner__panel {
        padding: 16px;
        border-radius: 10px;
    }

    .hm-cookie-banner__actions {
        width: 100%;
    }

    .hm-cookie-banner__btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
    }

    body.hm-cookie-banner-open {
        padding-bottom: 180px;
    }
}
