/*
Theme Name: Astra Child
Template: astra
*/

/* Blur para usuarios NO logueados */
.user-logged-out .protegido {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

/* Estado normal para usuarios logueados */
.user-logged-in .protegido {
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

/* Botón CTA */
/* Botón CTA del shortcode */
.opportunia-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 24px;
  background: linear-gradient(180deg, #42B7C5 0%, #206084 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 999px;
  border: none;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  transform: scale(1);
  box-shadow: 0 8px 18px rgba(32, 96, 132, 0.22);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hover tipo grow */
.opportunia-btn:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: scale(1.04);
  box-shadow: 0 12px 24px rgba(32, 96, 132, 0.30);
}

/* Focus y active */
.opportunia-btn:focus,
.opportunia-btn:active {
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none;
}

/* Por si el widget shortcode mete un párrafo */
.elementor-widget-shortcode p {
  margin-bottom: 0;
}