/* --- ESTILOS PARA EL AVISO TIPO COOKIE --- */
.alert-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a; /* Color oscuro profesional */
    color: #ffffff;
    z-index: 99999;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    display: none; /* Se activa con JS */
    align-items: center;
    justify-content: center;
}

.alert-bar.show {
    display: flex; /* Se muestra cuando el JS añade la clase 'show' */
}

.alert-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding: 15px 20px;
    width: 100%;
}

.alert-icon { font-size: 24px; margin-right: 15px; }

.alert-text { flex-grow: 1; font-size: 14px; line-height: 1.4; }
.alert-text p { margin: 2px 0; }

.alert-contact-compact a {
    color: #00a0df; /* Azul corporativo */
    text-decoration: none;
    font-weight: bold;
}

.separator { margin: 0 10px; opacity: 0.5; }

.alert-btn {
    background-color: #ffffff;
    color: #000;
    border: none;
    padding: 8px 20px;
    margin-left: 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .alert-content { flex-direction: column; text-align: center; }
    .alert-btn { margin-left: 0; margin-top: 10px; width: 100%; }
    .separator { display: none; }
    .alert-contact-compact span { display: block; margin-bottom: 5px; }
}