/* Estilos exclusivos para o componente de pop-up da Home */

.popup-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-wrapper {
  position: absolute;
  left: 0;
  top: 10%;
  text-align: center;
  width: 100%;
}

.popup-overlay-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.popup-image-container {
  width: 90%;
  max-width: 600px;
  height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-size: 100% auto;
  margin: 0 auto;
  transition: none;
}

.popup-content {
  padding: 3rem;
  border-radius: 5px;
  width: 90%;
  max-width: 600px;
  background: #ffffff;
  margin: 0 auto;
  transition: none;
}

.popup-close-button {
  padding: 13px 20px 17px;
  float: right;
  display: inline-block;
  margin: -15px -15px 0 0;
  font-size: 20px;
  line-height: 20px;
  background: #ffffff;
  border-radius: 50px;
  cursor: pointer;
}

.popup-title {
  margin: 0 5px 5px 30px;
  padding: 5px;
  text-align: center;
}

.popup-message {
  margin: 5px;
  padding: 5px;
}

@media (max-width: 768px) {
  .popup-image-container {
    height: 350px;
    margin: 12% auto;
  }
}


