.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeIn 0.25s ease;
}

.popup-box {
  width: 90%;
  max-width: 420px;
  background: linear-gradient(180deg, #0f5fff, #0b46b7);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  animation: popupShow 0.25s ease;
}

.popup-logo {
  width: 30%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  background: white;
  padding: 10px;
}

.popup-box h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
}

.popup-box p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.popup-buttons {
  display: flex;
  gap: 12px;
}

.popup-buttons button,
.popup-buttons a {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.btn-fechar {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.btn-fechar:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn-whatsapp {
  background: #0bb711;
  color: white;
}

.btn-whatsapp:hover {
  transform: scale(1.03);
}

@media (max-width: 480px) {
  .popup-overlay {
    padding: 16px;
  }

  .popup-box {
    width: 100%;
    max-width: 100%;
    border-radius: 26px;
    padding: 28px 20px;
  }

  .popup-logo {
    width: 35%;
    margin-bottom: 16px;
  }

  .popup-box h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .popup-box p {
    font-size: 17px;
    line-height: 1.5;
  }

  .popup-box strong {
    font-size: 23px;
  }

  .popup-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .popup-buttons button,
  .popup-buttons a {
    width: 100%;
    padding: 17px;
    font-size: 17px;
    border-radius: 14px;
  }
}

@keyframes popupShow {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
