/* ====================================================
   css/popup-controller.css
   Popup responsivo — imagem completa sem container branco
   com transições de aparecer/fechar
   e fechamento via ícone Dashicons
   ==================================================== */

/* 1) Overlay escuro cobrindo toda a tela */
.site-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.site-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* 2) Container do popup — transparente, sem bordas nem sombra */
.site-popup-content {
  position: relative;
  display: inline-block;       /* ajusta-se ao tamanho da imagem */
  background: transparent;     /* remove fundo branco */
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;

  /* estado inicial para transição de zoom + fade */
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-popup-overlay.show .site-popup-content {
  transform: scale(1);
  opacity: 1;
}

/* 3) A imagem sempre cabe inteira na viewport */
.site-popup-content img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;             /* até 90% da largura da janela */
  max-height: 90vh;            /* até 90% da altura da janela */
  object-fit: contain;         /* mantém proporção sem cortar */
  border-radius: 8px !important;
}

/* 4) Ícone de fechar puro */
.popup-close {
  position: absolute;
  top: 16px;
  right: 56px;
  font-size: 56px;             /* tamanho do Dashicon */
  color: #fff;
  cursor: pointer;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  line-height: 1;
  transition: color 0.2s ease;
}
.popup-close:hover {
  color: #ccc;                 /* efeito hover mais suave */
}

/* 5) Ajustes para telas pequenas */
@media (max-width: 600px) {
    
  .site-popup-content {
    /* empurra 16px de cada lado para não grudar na borda */
    margin: 0 24px;
  }

  .site-popup-content img {
    max-width: 90vw;           /* até 95% da largura em mobile */
    max-height: 90vh;          /* até 95% da altura em mobile */
  }
  
  .popup-close {
    top: 8px;
    right: 8px;
    font-size: 20px;
  }
}
