/* Modal de cookies Nexum Capital Partners */

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 420px;
  width: 90vw;
  padding: 2.2rem 2rem 1.5rem 2rem;
  text-align: center;
  font-family: 'DM Sans', Arial, sans-serif;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.cookie-modal p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 1.2rem;
}
.cookie-modal a {
  color: #B28E2A;
  text-decoration: underline;
}
.cookie-modal__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cookie-modal__btn {
  flex: 1 1 0;
  background: #B28E2A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal__btn--no {
  background: #e5e5e5;
  color: #1A1A1A;
}
.cookie-modal__btn:hover {
  background: #D4AF37;
  color: #fff;
}
.cookie-modal__prefs {
  width: 100%;
  background: #fff;
  border: 1px solid #B28E2A;
  color: #B28E2A;
  border-radius: 6px;
  padding: 0.7rem 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal__prefs:hover {
  background: #B28E2A;
  color: #fff;
}
