/**
 * 2025 Mario Machado. Todos os direitos reservados
 */
.cookie-policy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.cookie-policy-banner.hide {
    transform: translateY(100%);
}

.cookie-policy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-policy-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-policy-buttons {
        margin-top: 15px;
    }
}

.cookie-policy-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    padding-right: 20px;
    flex: 1;
}

.cookie-policy-content a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-policy-content a:hover {
    text-decoration: none;
}

.cookie-policy-buttons {
    display: flex;
    gap: 10px;
}

.cookie-policy-buttons button {
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-accept {
    background-color: #2563eb;
    color: white;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white !important;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
} 