.popup1 {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.popup1.is-open {
  opacity: 1;
  visibility: visible;
}

.popup1__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: default;
}

.popup1__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup1.is-open .popup1__dialog {
  transform: scale(1) translateY(0);
}

/* Cabeçalho amarelo */
.popup1__top {
  background: radial-gradient(circle at center, #FFF9C4 0%, #FFF3CD 100%);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

/* Círculo amarelo com ícone */
.popup1__icon {
  width: 72px;
  height: 72px;
  background: #151e2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(255,214,0,0.45);
  animation: iconBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Badge "TENTE NOVAMENTE" */
.popup1__eyebrow {
  background: #ffffff;
  color: #C0392B;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Corpo branco */
.popup1__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #ffffff;
}

.popup1__title {
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #1A1A1B;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
}

.popup1__text {
  font-size: 0.9rem;
  color: #555555;
  text-align: center;
  line-height: 1.65;
}

.popup1__text strong {
  color: #1A1A1B;
  font-weight: 700;
}

.popup1__text strong.highlight {
  color: #151e2c;
}

.popup1__buttons {
  width: 100%;
  margin-top: 6px;
}

/* Botão azul escuro */
.popup1__btn {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.popup1__btn--primary {
  background: #101423;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(16,20,35,0.25);
}

.popup1__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16,20,35,0.35);
}

.popup1__btn--primary:active {
  transform: translateY(0);
}

/* Hint "Cupom liberado imediatamente" */
.popup1__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #777777;
  text-align: center;
}

.popup1__hint::before {
  font-size: 0.9rem;
}

@keyframes iconBounce {
  from { transform: scale(0.4) rotate(-15deg); opacity: 0; }
  to   { transform: scale(1)   rotate(0deg);  opacity: 1; }
}
