﻿.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: Arial, sans-serif;
}

    .cookie-banner.show {
        transform: translateY(0);
    }

    .cookie-banner.hide {
        transform: translateY(100%);
    }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

    .cookie-text h4 {
        margin: 0 0 10px 0;
        color: #e74c3c;
        font-size: 18px;
    }

    .cookie-text p {
        margin: 0;
        line-height: 1.5;
        font-size: 14px;
    }

    .cookie-text a {
        color: #3498db;
        text-decoration: underline;
    }

        .cookie-text a:hover {
            color: #2980b9;
        }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .cookie-buttons button {
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 14px;
        transition: all 0.3s ease;
        min-width: 120px;
    }

.btn-accept {
    background: #27ae60;
    color: white;
}

    .btn-accept:hover {
        background: #229954;
        transform: translateY(-2px);
    }

.btn-reject {
    background: #e74c3c;
    color: white;
}

    .btn-reject:hover {
        background: #c0392b;
        transform: translateY(-2px);
    }

.btn-settings {
    background: #95a5a6;
    color: white;
}

    .btn-settings:hover {
        background: #7f8c8d;
        transform: translateY(-2px);
    }

.cookie-settings {
    margin-top: 20px;
    padding: 20px;
    background: #34495e;
    border-radius: 8px;
    border-top: 3px solid #e74c3c;
}

    .cookie-settings h5 {
        margin: 0 0 15px 0;
        color: #ecf0f1;
        font-size: 16px;
    }

.cookie-category {
    margin-bottom: 15px;
    padding: 10px;
    background: #2c3e50;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

    .cookie-category label {
        display: block;
        cursor: pointer;
        font-size: 14px;
    }

    .cookie-category input[type="checkbox"] {
        margin-right: 10px;
        transform: scale(1.2);
    }

    .cookie-category strong {
        color: #ecf0f1;
        display: block;
        margin-bottom: 5px;
    }

    .cookie-category small {
        color: #bdc3c7;
        font-style: italic;
    }

.settings-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-save {
    background: #27ae60;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

    .btn-save:hover {
        background: #229954;
    }

.btn-cancel {
    background: #95a5a6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

    .btn-cancel:hover {
        background: #7f8c8d;
    }

/* Responsividade */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

        .cookie-buttons button {
            flex: 1;
            min-width: auto;
        }

    .settings-buttons {
        justify-content: center;
    }
}
