/*
 * EVO DRONES - Cookie Banner Styles
 * Estilos para o banner de consentimento de cookies
 */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(48, 180, 232, 0.5);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    color: #E2E8F0;
}

.cookie-banner-text strong {
    color: #30B4E8;
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

