{% require_css %}
.Card-Introductions .hero-container {
  max-width: 600px;
  width: 100%;
  height: auto;
  background: #f9f9f9;
  border-radius: 8px;
}
{% scope_css %}
.Card-Introductions .card {
  border-radius: ;
  background-color: #fff;
  padding: 40px 32px 32px 32px;
  box-shadow: none;
  height: 100%;
  box-sizing: border-box;
}
{% end_scope_css %}
.Card-Introductions .card.has-shadow {
  box-shadow:
    rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.Card-Introductions .intro-text {
  font-size: 16px;
  margin-bottom: 0px;
}
.Card-Introductions .hero-title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: bold;
}
.Card-Introductions .hero-subtitle {
  font-size: 16px;
  margin-bottom: 0px;
}
.wp-display-text-CI {
    font-size: 13px;
    color: #c7c7c7;
    margin: 0;
    min-width: 120px;
}
@media (max-width: 600px) {
  .Card-Introductions .hero-title {
    font-size: 21px;
  }
  .Card-Introductions .card {
    padding: 36px 24px;
  }
  .wp-display-text-CI {
    display: none;
  }
}
{% end_require_css %}

/* ── Fila de botones en línea ── */
.cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}
.wp-display {
    align-items: center;
    background: #25d366;
    border-radius: 999px;
    display: flex;
    height: 44px;
    overflow: visible;
    text-decoration: none;
    transition: background .25s ease;
    padding: 8px 16px;
    width: auto;
    animation: wp-display-pulse 2s infinite;
}
.wp-display img {
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    margin: 0;
}
.wp-display span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
    opacity: 1;
    white-space: nowrap;
}
.wp-display:hover {
    background: #132045;
    animation: wp-display-pulse-hover 2s infinite;
}
.wp-display-text {
    font-size: 13px;
    color: #c7c7c7;
    margin: 0;
    min-width: 120px;
}
/* ── Wrapper: botón + texto a la derecha ── */
.wp-display-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0 !important;
}
@keyframes wp-display-pulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(0, 150, 60, 0.6); }
    50%       { box-shadow: 0 4px 32px rgba(0, 150, 60, 0.95); }
}
@keyframes wp-display-pulse-hover {
    0%, 100% { box-shadow: 0 6px 24px rgba(19, 32, 69, 0.35); }
    50%       { box-shadow: 0 6px 32px rgba(19, 32, 69, 0.65); }
}
/* ── Responsive: botones apilados en mobile ── */
@media (max-width: 600px) {
    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .wp-display-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .wp-display-wrapper p {
        margin-top: 8px !important;
    }
}