/* Container do modal */
.aprendiz-wp-remodal-popup {
  max-width: 512px !important;
  padding: 0 !important;
  background: transparent;
  box-shadow: none;
  position: relative; /* necessário para posicionar o botão de fechar */
}

/* Botão de fechar destacado */
.aprendiz-wp-remodal-popup .remodal-close {
  position: absolute;

  /* Mais próximo do conteúdo */
  top: -12px !important;
  right: -12px !important;

  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 2px solid #e74c3c;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.25s ease;
}

/* Ícone "X" */
.aprendiz-wp-remodal-popup .remodal-close:before {
  content: "\00D7";
  display: block;
  width: 100%;
  height: 100%;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  font-weight: bold;
  color: #e74c3c;
}

/* Efeito ao passar o mouse */
.aprendiz-wp-remodal-popup .remodal-close:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* Foco via teclado (acessibilidade) */
.aprendiz-wp-remodal-popup .remodal-close:focus {
  outline: 3px solid rgba(231, 76, 60, 0.35);
  outline-offset: 2px;
}

/* Imagem responsiva */
.aprendiz-wp-remodal-popup-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
  .aprendiz-wp-remodal-popup {
    max-width: 95%;
  }

  .aprendiz-wp-remodal-popup-image {
    border-radius: 4px;
  }

  .aprendiz-wp-remodal-popup .remodal-close {
    /* Mais próximo também no mobile */
    top: -5px;
    right: -5px;

    width: 38px;
    height: 38px;
  }

  .aprendiz-wp-remodal-popup .remodal-close:before {
    font-size: 26px;
    line-height: 34px;
  }
}
.remodal-wrapper,
.remodal-overlay {
  z-index: 999999999;
}
