/* WooHub — banner cookies (LGPD) — compartilhado site + auth */
.wh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    font-size: 0.925rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.wh-btn--primary {
    color: #fff !important;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.3);
}

.wh-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    padding: 1rem;
    pointer-events: none;
}

.wh-cookie-consent__inner {
    pointer-events: auto;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.96);
    color: #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.35);
}

.wh-cookie-consent__text strong {
    display: block;
    color: #fff;
    margin-bottom: 0.25rem;
}

.wh-cookie-consent__text p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.wh-cookie-consent__text a {
    color: #5eead4;
    font-weight: 600;
}

.wh-cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.wh-cookie-consent__btn {
    white-space: nowrap;
}

.wh-cookie-consent .wh-btn--ghost {
    color: #cbd5e1;
    background: transparent;
    border-color: #475569;
}

@media (max-width: 640px) {
    .wh-cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .wh-cookie-consent__actions {
        flex-direction: column;
    }

    .wh-cookie-consent__btn {
        width: 100%;
    }
}
