/* Banner de cookies - Aris Tecnologia */
.aris-cookie-banner,
.aris-cookie-banner * {
    box-sizing: border-box;
}

.aris-cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: min(390px, calc(100vw - 32px));
    background: #ffffff;
    color: #252525;
    border-radius: 22px;
    padding: 24px 24px 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    z-index: 999999;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    border: 1px solid rgba(0, 38, 86, 0.10);
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    visibility: hidden;
}

.aris-cookie-banner.aris-cookie-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.aris-cookie-banner.aris-cookie-hide {
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    visibility: hidden;
}

.aris-cookie-image-wrap {
    width: 94px;
    height: 94px;
    margin: -58px auto 12px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 38, 86, 0.16);
    border: 1px solid rgba(0, 38, 86, 0.08);
}

.aris-cookie-image-wrap img {
    width: 68px;
    height: 68px;
    display: block;
    object-fit: contain;
}

.aris-cookie-title {
    margin: 4px 0 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #002656;
}

.aris-cookie-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #333333;
    text-align: left;
}

.aris-cookie-text a {
    color: #006AE3;
    font-weight: 600;
    text-decoration: underline;
}

.aris-cookie-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.aris-cookie-accept {
    min-width: 150px;
    border: 0;
    border-radius: 999px;
    background: #002656;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 38, 86, 0.22);
    transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}

.aris-cookie-accept:hover,
.aris-cookie-accept:focus {
    background: #006AE3;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 106, 227, 0.25);
}

@media (max-width: 480px) {
    .aris-cookie-banner {
        right: 16px;
        left: 16px;
        bottom: 16px;
        width: auto;
        padding: 22px 18px 20px;
        border-radius: 18px;
    }

    .aris-cookie-image-wrap {
        width: 82px;
        height: 82px;
        margin-top: -50px;
    }

    .aris-cookie-image-wrap img {
        width: 58px;
        height: 58px;
    }

    .aris-cookie-title {
        font-size: 18px;
    }
}


/* Clique imediato no aceite */
.aris-cookie-accept:active {
    transform: scale(0.98);
}

.aris-cookie-banner.aris-cookie-removing {
    opacity: 0 !important;
    transform: translateY(18px) !important;
    pointer-events: none !important;
    visibility: hidden !important;
}
