/* Popup de aviso EFX */
.efx-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.efx-popup-overlay.is-visible {
  display: flex;
}

.efx-popup-box {
  position: relative;
  width: min(92vw, 980px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px 56px 52px;
  background: #f4f4f4;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.efx-popup-close {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid #bbb;
  border-radius: 50%;
  background: transparent;
  color: #777;
  font-size: 21px;
  line-height: 22px;
  font-weight: 300;
  cursor: pointer;
}

.efx-popup-close:hover,
.efx-popup-close:focus {
  color: #1f2933;
  border-color: #1f2933;
  outline: none;
}

.efx-popup-title {
  margin: 0;
  color: #1f2933;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.efx-popup-subtitle {
  margin: 12px 0 28px;
  color: #c94d28;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 800;
}

.efx-popup-text {
  margin: 0 auto;
  max-width: 880px;
  color: #333;
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 767px) {
  .efx-popup-overlay {
    padding: 14px;
  }

  .efx-popup-box {
    width: 100%;
    padding: 34px 22px 48px;
  }

  .efx-popup-text {
    font-size: 16px;
    line-height: 1.45;
  }
}
