/* =====================================================
   COOKIES.CSS - ABRITEC
   CSS do módulo de aviso de cookies
   Caminho: /assets/css/cookies.css
   ===================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #007BC2 100%);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    font-family: inherit;
}

.cookie-banner.cookie-hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-text a {
    color: #3498db;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: #27ae60;
    color: white;
}

.cookie-btn-accept:hover {
    background: #229954;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
    
    .cookie-text {
        font-size: 13px;
        min-width: auto;
    }
}