/* popup.css */

/* Overlay (invisível mas captura clicks) */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: transparent;      /* transparente, sem escurecer */
  pointer-events: auto;         /* permite clicar para fechar */
  display: none;
  z-index: 999;
  transition: opacity 0.3s ease;
}

/* Container geral do pop-up */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  background: #fff;
  display: none;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Exibição */
.popup-overlay.active,
.popup.active {
  display: block;
  opacity: 1;
}

/* Elementos internos */
.popup .popup-media {
  width: 100%;
  margin-bottom: 1rem;
}
.popup .popup-title {
  margin-bottom: .5rem;
  font-weight: 600;
}
.popup .popup-message {
  margin-bottom: 1rem;
  line-height: 1.4;
}
.popup .popup-button {
  display: inline-block;
  padding: .5rem 1rem;
  background: #6c63ff;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}
.popup .popup-button:hover {
  filter: brightness(0.9);
}

/* Botão de fechar sempre visível */
.popup .popup-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #000;
  z-index: 1002;
  line-height: 1;
}
.popup .popup-close:hover {
  color: #555;
}

/* ===== Layout específico ===== */

/* Layout 1: coluna (texto em cima, mídia embaixo) */
.popup.layout1 {
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Layout 2: linha (texto à esquerda, mídia à direita) */
.popup.layout2 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.popup.layout2 .popup-media {
  margin-left: 1rem;
  margin-bottom: 0;
  order: 2;
}
.popup.layout2 .popup-text {
  flex: 1;
}

/* Layout 3: texto centralizado, mídia pequena abaixo */
.popup.layout3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.popup.layout3 .popup-title {
  font-size: 2rem;
}
.popup.layout3 .popup-message {
  font-size: 1.2rem;
}

/* Layout 4: grid 2 colunas (mídia e texto lado a lado) */
.popup.layout4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.popup.layout4 .popup-media {
  grid-column: 1;
  margin-bottom: 0;
}
.popup.layout4 .popup-text,
.popup.layout4 .popup-button {
  grid-column: 2;
  text-align: left;
}

/* Responsivo */
@media (max-width: 576px) {
  .popup {
    width: 50%;
    padding: 1rem;
  }
  .popup.layout2,
  .popup.layout4 {
    flex-direction: column;
    display: flex;
  }
  .popup.layout2 .popup-media,
  .popup.layout4 .popup-media {
    margin: 1rem 0 0 0;
    order: unset;
  }
  .popup.layout4 {
    grid-template-columns: 1fr;
  }
}
