/* =========================================
           AVISO DE FRAUDES
           ========================================= */
.modal-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.modal {
  background-color: white;
  width: 100%;
  max-width: 950px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-size: 22px;
  line-height: 1;
  color: red;
  cursor: pointer;
}

.header {
  background-color: #0082c8;
  color: white;
  padding: 26px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 26px;
}

.text {
  color: #555;
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.highlight {
  font-weight: bold;
  color: #333;
}

.red-text {
  color: red;
  font-weight: bold;
}
