
.cookie_modal {
    box-sizing: border-box;
    position: fixed;
    text-align: center;
    left: 0;
    bottom: 0;
    padding: 40px;
    z-index: 999999 !important;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.cookie_modal_content {
    padding: 35px;
    background: linear-gradient(135deg, #FFF 0%, #F8F9FA 100%);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    font-family: "Open Sans", sans-serif;
    font-size: 0.9375em;
    line-height: 1.6;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInUp 0.5s ease-out;
}

.cookie_modal_content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(0, 0, 0, 0.12);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie_modal_content p {
    margin-bottom: 24px;
    color: #333;
    font-size: 0.95em;
}

.cookie_modal_content p:last-of-type {
    margin-bottom: 20px;
}

.cookie_modal_content a {
    text-decoration: none;
    font-weight: 600;
    color: #FFF !important;
    transition: color 0.2s ease;
}

.cookie_modal_content a:hover {
    color: var(--hover-color-blue);
    text-decoration: underline;
}

.cookie_modal_content_close {
    display: inline-block;
    cursor: pointer;
    padding: 12px 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-blue, #007BFF) 0%, var(--hover-color-blue, #0056B3) 100%);
    color: #FFF !important;
    border: none;
    font-weight: 600;
    font-size: 0.95em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    letter-spacing: 0.3px;
}

.cookie_modal_content_close:hover {
    background: linear-gradient(135deg, var(--hover-color-blue, #0056B3) 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
    text-decoration: none !important;
}

.cookie_modal_content_close:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie_modal {
        padding: 20px;
    }

    .cookie_modal_content {
        max-width: 100%;
        padding: 25px;
        font-size: 0.875em;
    }

    .cookie_modal_content_close {
        padding: 10px 24px;
        font-size: 0.9em;
    }
}

/* Adiciona um backdrop opcional para destacar ainda mais */
.cookie_modal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
    pointer-events: none;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}