/* ===================================================================
 * HIGH TECHNOLOGY - SISTEMA DE COOKIES ÚNICO
 * ===================================================================*/

/* ===== COOKIE BANNER ===== */
.ht-cookie-banner-unique {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a1c3a 100%);
    color: #ffffff;
    padding: 30px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(99, 255, 82, 0.2);
    z-index: 10001;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #63ff52, #55c6ff, #63ff52) 1;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.ht-cookie-banner-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 255, 82, 0.1), transparent);
    animation: htShimmer 3s infinite;
}

.ht-cookie-banner-unique.show {
    transform: translateY(0);
    animation: htBannerSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes htBannerSlideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes htShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.ht-cookie-banner-content-unique {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.ht-cookie-banner-text-unique {
    flex: 1;
    min-width: 300px;
}

.ht-cookie-banner-text-unique h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(99, 255, 82, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ht-cookie-banner-text-unique h3::before {
    content: '🍪';
    font-size: 28px;
    animation: htBounce 2s infinite;
}

@keyframes htBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.ht-cookie-banner-text-unique p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.ht-cookie-link-unique {
    color: #63ff52;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(99, 255, 82, 0.3);
}

.ht-cookie-link-unique::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #63ff52, #55c6ff);
    transition: width 0.3s ease;
}

.ht-cookie-link-unique:hover {
    color: #55c6ff;
    text-shadow: 0 0 8px rgba(85, 198, 255, 0.3);
    transform: translateY(-1px);
}

.ht-cookie-link-unique:hover::before {
    width: 100%;
}

.ht-cookie-banner-actions-unique {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

/* ===== COOKIE BUTTONS ===== */
.ht-cookie-btn-unique {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.ht-cookie-btn-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.3s ease;
}

.ht-cookie-btn-unique:hover::before {
    left: 100%;
}

.ht-cookie-btn-primary-unique {
    background: linear-gradient(135deg, #63ff52, #55c6ff);
    color: #0a1c3a;
    box-shadow: 0 8px 25px rgba(99, 255, 82, 0.2);
    border: 1px solid #63ff52;
}

.ht-cookie-btn-primary-unique:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(99, 255, 82, 0.3);
}

.ht-cookie-btn-secondary-unique {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    border: 2px solid rgba(99, 255, 82, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ht-cookie-btn-secondary-unique:hover {
    border-color: #63ff52;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.ht-cookie-btn-outline-unique {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.ht-cookie-btn-outline-unique:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ===== COOKIE MODAL ===== */
.ht-cookie-modal-unique {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ht-cookie-modal-unique.show {
    opacity: 1;
    visibility: visible;
}

.ht-cookie-modal-overlay-unique {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(15px);
}

.ht-cookie-modal-content-unique {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a1c3a 100%);
    border-radius: 20px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(99, 255, 82, 0.2);
    border: 1px solid rgba(99, 255, 82, 0.2);
    animation: htModalSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
}

@keyframes htModalSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.ht-cookie-modal-header-unique {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #63ff52, #55c6ff);
    position: relative;
    overflow: hidden;
}

.ht-cookie-modal-header-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: htShimmer 2s infinite;
}

.ht-cookie-modal-header-unique h2 {
    margin: 0;
    color: #0a1c3a;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.ht-cookie-modal-close-unique {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    font-size: 24px;
    color: #0a1c3a;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ht-cookie-modal-close-unique:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ht-cookie-modal-body-unique {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.ht-cookie-modal-body-unique::-webkit-scrollbar {
    width: 8px;
}

.ht-cookie-modal-body-unique::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.ht-cookie-modal-body-unique::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #63ff52, #55c6ff);
    border-radius: 4px;
}

.ht-cookie-modal-description-unique {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 16px;
}

/* ===== COOKIE CATEGORIES ===== */
.ht-cookie-category-unique {
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ht-cookie-category-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #63ff52, #55c6ff, #63ff52);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ht-cookie-category-unique:hover {
    border-color: rgba(99, 255, 82, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.ht-cookie-category-unique:hover::before {
    opacity: 1;
}

.ht-cookie-category-header-unique {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.ht-cookie-category-header-unique h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ht-cookie-category-unique p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== COOKIE SWITCH ===== */
.ht-cookie-switch-unique {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 35px;
}

.ht-cookie-switch-unique input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ht-cookie-slider-unique {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transition: all 0.3s ease;
    border-radius: 35px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ht-cookie-slider-unique:before {
    position: absolute;
    content: "";
    height: 25px;
    width: 25px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

input:checked+.ht-cookie-slider-unique {
    background: linear-gradient(135deg, #63ff52, #55c6ff);
    border-color: #63ff52;
    box-shadow: 0 0 20px rgba(99, 255, 82, 0.3);
}

input:checked+.ht-cookie-slider-unique:before {
    transform: translateX(35px);
    background: linear-gradient(135deg, #0a1c3a, #1a1a1a);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

input:disabled+.ht-cookie-slider-unique {
    background: linear-gradient(135deg, #63ff52, #55c6ff);
    border-color: #63ff52;
    opacity: 0.8;
    cursor: not-allowed;
}

input:disabled+.ht-cookie-slider-unique:before {
    background: linear-gradient(135deg, #0a1c3a, #1a1a1a);
}

/* ===== COOKIE MODAL FOOTER ===== */
.ht-cookie-modal-footer-unique {
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* ===== COOKIE SETTINGS BUTTON ===== */
.ht-cookie-settings-btn-unique {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(99, 255, 82, 0.2);
}

.ht-cookie-settings-btn-unique:hover {
    background: linear-gradient(135deg, rgba(99, 255, 82, 0.2), rgba(55, 198, 255, 0.2));
    border-color: #63ff52;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
    color: #63ff52;
}

/* ===== POLICY MODAL ===== */
.ht-cookie-policy-modal-unique {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ht-cookie-policy-modal-unique.show {
    opacity: 1;
    visibility: visible;
}

.ht-cookie-policy-content-unique {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a1c3a 100%);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(99, 255, 82, 0.2);
    animation: htModalSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ht-cookie-policy-header-unique {
    padding: 25px 30px;
    background: linear-gradient(135deg, #63ff52, #55c6ff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.ht-cookie-policy-header-unique h2 {
    margin: 0;
    color: #0a1c3a;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.ht-cookie-policy-body-unique {
    padding: 30px;
    color: #ffffff;
    line-height: 1.7;
    max-height: 60vh;
    overflow-y: auto;
}

.ht-cookie-policy-body-unique h3 {
    color: #63ff52;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    text-shadow: 0 0 10px rgba(99, 255, 82, 0.3);
}

.ht-cookie-policy-body-unique h4 {
    color: #55c6ff;
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0 10px 0;
    text-shadow: 0 0 8px rgba(85, 198, 255, 0.3);
}

.ht-cookie-policy-body-unique p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.ht-cookie-policy-body-unique ul {
    margin: 15px 0;
    padding-left: 30px;
}

.ht-cookie-policy-body-unique li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.ht-cookie-policy-body-unique strong {
    color: #ffffff;
    font-weight: 600;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .ht-cookie-banner-unique {
        padding: 20px 15px;
    }

    .ht-cookie-banner-content-unique {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .ht-cookie-banner-text-unique {
        min-width: auto;
    }

    .ht-cookie-banner-text-unique h3 {
        font-size: 20px;
    }

    .ht-cookie-banner-text-unique p {
        font-size: 14px;
    }

    .ht-cookie-banner-actions-unique {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .ht-cookie-btn-unique {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 12px;
    }

    .ht-cookie-modal-content-unique,
    .ht-cookie-policy-content-unique {
        max-width: calc(100vw - 20px);
        margin: 10px;
        max-height: calc(100vh - 20px);
    }

    .ht-cookie-modal-header-unique,
    .ht-cookie-modal-body-unique,
    .ht-cookie-modal-footer-unique,
    .ht-cookie-policy-header-unique,
    .ht-cookie-policy-body-unique {
        padding: 20px 15px;
    }

    .ht-cookie-modal-footer-unique {
        flex-direction: column;
        gap: 10px;
    }

    .ht-cookie-modal-footer-unique .ht-cookie-btn-unique {
        width: 100%;
    }

    .ht-cookie-settings-btn-unique {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .ht-cookie-category-unique {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .ht-cookie-category-header-unique {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ht-cookie-switch-unique {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .ht-cookie-banner-unique {
        padding: 15px 10px;
    }

    .ht-cookie-banner-text-unique h3 {
        font-size: 18px;
    }

    .ht-cookie-banner-text-unique p {
        font-size: 13px;
    }

    .ht-cookie-btn-unique {
        padding: 10px 15px;
        font-size: 11px;
    }

    .ht-cookie-modal-content-unique,
    .ht-cookie-policy-content-unique {
        max-width: calc(100vw - 10px);
        margin: 5px;
        max-height: calc(100vh - 10px);
    }

    .ht-cookie-settings-btn-unique {
        bottom: 10px;
        left: 10px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .ht-cookie-category-unique {
        padding: 15px 10px;
    }

    .ht-cookie-switch-unique {
        width: 60px;
        height: 30px;
    }

    .ht-cookie-slider-unique:before {
        height: 22px;
        width: 22px;
    }

    input:checked+.ht-cookie-slider-unique:before {
        transform: translateX(28px);
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {

    .ht-cookie-banner-unique,
    .ht-cookie-modal-unique,
    .ht-cookie-policy-modal-unique,
    .ht-cookie-settings-btn-unique {
        transition: none;
        animation: none;
    }

    .ht-cookie-btn-unique::before,
    .ht-cookie-banner-unique::before,
    .ht-cookie-modal-header-unique::before {
        animation: none;
    }

    /* Redefinir animações para movimento reduzido */
    @keyframes htBounce {

        from,
        to {
            transform: none;
            opacity: 1;
        }
    }

    @keyframes htShimmer {

        from,
        to {
            transform: none;
            opacity: 1;
        }
    }

    @keyframes htBannerSlideUp {

        from,
        to {
            transform: none;
            opacity: 1;
        }
    }

    @keyframes htModalSlideIn {

        from,
        to {
            transform: none;
            opacity: 1;
        }
    }
}

/* ===== NOTIFICAÇÕES ===== */
.ht-cookie-notification-unique {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    z-index: 10003;
    animation: htSlideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    border: 1px solid;
    font-weight: 600;
}

.ht-cookie-notification-success-unique {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.7));
    color: #ffffff;
    border-color: #4CAF50;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(76, 175, 80, 0.2);
}

.ht-cookie-notification-error-unique {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9), rgba(244, 67, 54, 0.7));
    color: #ffffff;
    border-color: #f44336;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(244, 67, 54, 0.2);
}

.ht-cookie-notification-info-unique {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.9), rgba(33, 150, 243, 0.7));
    color: #ffffff;
    border-color: #2196F3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(33, 150, 243, 0.2);
}

@keyframes htSlideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes htSlideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===== OTIMIZAÇÕES DE PERFORMANCE ===== */
.ht-cookie-banner-unique,
.ht-cookie-modal-content-unique,
.ht-cookie-policy-content-unique,
.ht-cookie-settings-btn-unique {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ===== CORREÇÃO DO BOTÃO DE CONFIGURAÇÕES ===== */
.ht-cookie-settings-btn-unique {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    width: 60px !important;
    height: 60px !important;
    border: none !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
    color: #ffffff !important;
    font-size: 20px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
    z-index: 10000 !important;
    backdrop-filter: blur(10px) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(99, 255, 82, 0.2) !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.ht-cookie-settings-btn-unique:hover {
    background: linear-gradient(135deg, rgba(99, 255, 82, 0.2), rgba(55, 198, 255, 0.2)) !important;
    border-color: #63ff52 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7) !important;
    color: #63ff52 !important;
}

/* Garantir que o botão apareça quando necessário */
.ht-cookie-settings-btn-unique[style*="display: flex"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}