/* cookie-consent.css - estilos para banner y modal de aviso de privacidad */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20,20,20,0.95);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 99999;
  font-family: Arial, Helvetica, sans-serif;
}
#cookie-consent-banner .cc-text { flex: 1; margin-right: 12px; font-size: 14px; }
#cookie-consent-banner .cc-actions { display: flex; gap: 8px; align-items: center; }
#cookie-consent-banner a.cc-link { color: #fff; text-decoration: underline; }
#cookie-consent-banner button.cc-btn {
  background: #ff8c00;
  border: none;
  color: #111;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

/* Modal */
#privacy-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}
#privacy-modal {
  background: #fff;
  color: #111;
  width: min(900px, 95%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 6px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
#privacy-modal header { display:flex; justify-content:space-between; align-items:center; gap:12px; }
#privacy-modal h2 { margin: 0; font-size: 20px; }
#privacy-modal .close-btn { background: transparent; border: none; font-size: 20px; cursor: pointer; }

@media (max-width:480px){
  #cookie-consent-banner { flex-direction: column; align-items: stretch; text-align: left; }
  #cookie-consent-banner .cc-actions { justify-content: flex-end; }
}
