/* Fundo sombreado */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup */
.popup {
  background: #f68a2500; /* Transparência no fundo */
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.close-btn {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
  background-color: #f68a2549;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.close-btn:hover {
  background-color: #f68925;
}

/* Imagem no popup */
.popup img {
  max-width: 100%;
  border-radius: 4px;
}

/* Texto */
.popup-text {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
}

/* Fundo do site sombreado ao abrir o popup */
.blurred {
  filter: blur(3px);
}
