
/* ============================== */
/* LAYOUT: contenedores del tema  */
/* ============================== */
.page-id-826 #content {
  background-color: #0b1527;
}

.page-id-826 .entry-content {
  max-width: 660px;
  margin: 55px auto;
}

/* Ritmo de lectura para párrafos y listas dentro del contenido */
.page-id-826 .entry-content p,
.page-id-826 .entry-content li {
  line-height: 1.75;
}

/* ============================== */
/* VARIABLES: paleta y gradientes */
/* ============================== */
.page-id-826 {
  --apl-white: #fff;
  --apl-ink: #ffffff;
  --apl-muted: #cbd9ec;
  --apl-soft: #a9c5e8;
  --apl-accent: #0094ff;
  --apl-accent-open: #0061a7;
  --apl-h2-border: #21539e;
  --apl-panel: linear-gradient(to bottom, #080427, #070d2d, #051434, #031a3a, #001f41);
  --apl-panel-alt: linear-gradient(145deg, #071f3d 0%, #06162f 46%, #040928 100%);
  --apl-button: linear-gradient(135deg, #00477a 0%, #005893 46%, #003066 100%);
  --apl-button-hover: linear-gradient(135deg, #005893 0%, #0072bc 48%, #003c7d 100%);

  /* Gradiente “botón azul” reutilizado (TOC + FAQ summary) */
  --apl-grad-btn: var(--apl-button);

  /* Hover azul */
  --apl-btn-hover: var(--apl-button-hover);

  /* FAQ */
  --apl-faq-bg: #010e20;
  --apl-faq-divider: #1e3a8a;
}

/* ============================== */
/* LAYOUT RESPONSIVE (página)     */
/* ============================== */
@media screen and (max-width: 540px) {
  .page-id-826 #content {
    padding: 0;
  }

  .page-id-826 .entry-content {
    margin: 25px 25px 50px;
  }
}

@media screen and (max-width: 450px) {
  .page-id-826 #content {
    padding: 5px 0 50px;
  }

  .page-id-826 .entry-content {
    margin: -10px 22px 0;
  }
}

/* ============================== */
/* SCROLL: IDs-TOCs               */
/* ============================== */
.page-id-826 .entry-content [id] {
  scroll-margin-top: 50px;
}

/* ============================== */
/* MÓDULO: HERO (imagen + H1)     */
/* ============================== */

/* Imagen (HTML: <figure class="hero-media"><img ...>) */
.page-id-826 figure.hero-media {
  margin: 0 0 18px; /* mantiene el resultado actual (override sobre márgenes globales del tema) */
}

.page-id-826 figure.hero-media img {
  display: block;
  width: 660px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* H1 “placa” bajo la imagen */
.page-id-826 .hero-title {
  text-align: center;
  color: var(--apl-white);
  font-weight: 500;
  font-size: 31px;
  background: linear-gradient(to bottom, #000219 0, #000219 50%, transparent 100%);
  padding: 15px 20px;
  margin: -18px auto 50px;
  max-width: 660px;
}

/* Responsive: ajuste fino */
@media (max-width: 720px) {
  .page-id-826 .hero-title {
    max-width: 100%;
    margin: -10px auto 40px;
  }
}

/* OJO: este bloque debe ir DESPUÉS del de 720px para mantener la cascada actual */
@media screen and (max-width: 540px) {
  .page-id-826 .hero-title {
    margin: -18px auto 40px;
  }
}

/* Full-bleed móvil (mantiene exactamente el comportamiento actual) */
@media (max-width: 450px) {
  .page-id-826 figure.hero-media {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    margin: 10px -50vw 18px;
  }

  .page-id-826 figure.hero-media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
  }

  .page-id-826 .hero-title {
    margin-top: -17px;
    margin-bottom: 40px;
    padding: 15px 21px 10px;
    font-size: 28.5px;
    line-height: 1.3;
  }

  /* Mantiene la especificidad extra contra posibles reglas del tema para h1 */
  .page-id-826 h1.hero-title {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
  }
}

/* ============================== */
/* MÓDULO: ACCESIBILIDAD (sr-only)*/
/* ============================== */
.page-id-826 .sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================== */
/* MÓDULO: MINI-TOC / ATAJOS      */
/* (aparece 2 veces en el HTML)   */
/* ============================== */
.page-id-826 .apl-mini-toc {
  background-image: var(--apl-panel);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(33, 83, 158, .38);
  overflow: hidden;
  padding: 0;
  margin: 15px 0 0;
  letter-spacing: 0.01em;
}

.page-id-826 .apl-mini-toc-title {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(33, 83, 158, .58);
  color: var(--apl-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-id-826 .apl-mini-toc ul {
  display: grid;
  margin: 0 !important;
  padding: 0 !important;
}

.page-id-826 .apl-mini-toc li {
  list-style: none;
  margin: 0;
  border-bottom: 1px solid rgba(33, 83, 158, .28);
}

.page-id-826 .apl-mini-toc li:last-child {
  border-bottom: 0;
}

.page-id-826 .apl-mini-toc a {
  display: block;
  padding: 13px 22px;
  color: var(--apl-ink) !important;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 0;
}

.page-id-826 .apl-mini-toc a:hover {
  background: rgba(0, 148, 255, .08);
  text-decoration: none !important;
}

/* ============================== */
/* MÓDULO: H2-H3 (títulos sección)*/
/* ============================== */
.page-id-826 .apl-titlesh2 {
  margin: 75px auto 30px;
  font-size: 26px;
  font-weight: 500;
  color: var(--apl-white);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--apl-h2-border);
}

.page-id-826 .apl-titlesh3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

/* ============================== */
/* MÓDULO: PASOS <ol> <ul>        */
/* ============================== */
.page-id-826 .apl-steps {
  margin: 0 0 0 30px !important;
  padding: 0;
}

.page-id-826 .apl-steps li {
  margin: 0 0 25px;
}

/* ============================== */
/* MÓDULO: LISTA CORTA <ol> <ul>  */
/* ============================== */
.page-id-826 .short-list {
  margin: 0 0 0 30px !important;
  padding: 0;
}

.page-id-826 .short-list li {
  margin: 0 0 15px;
}

/* ============================== */
/* MÓDULO: TARJETAS DE INFORMACIÓN*/
/* ============================== */

/* Cajas reutilizables para bloques destacados de información o contacto */
.page-id-826 .apl-contact-card,
.page-id-826 .apl-info-card {
  border-radius: 8px;
  padding: 30px 28px;
  background-image: var(--apl-panel);
  box-shadow: inset 0 0 0 1px rgba(33, 83, 158, .42);
  margin: 8px 0 18px;
}

.page-id-826 .apl-contact-card h3,
.page-id-826 .apl-info-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--apl-ink, #fff);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 500;
}

.page-id-826 .apl-contact-card p,
.page-id-826 .apl-info-card p {
  margin-bottom: 12px;
  color: var(--apl-ink);
  font-size: 16px;
  line-height: 1.72;
}

/* Ajuste de tarjetas en móvil */
@media screen and (max-width: 540px) {
  .page-id-826 .apl-contact-card,
  .page-id-826 .apl-info-card {
    padding: 18px;
  }
}

/* ============================== */
/* ELEMENTOS: BOTONES CORTOS      */
/* ============================== */

/* Botones usados dentro de tarjetas de información y contacto */
.page-id-826 .apl-button,
.page-id-826 .apl-contact-button {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: none !important;
  border-radius: 8px;
  width: 226px;
  text-align: center;
  color: #fff !important;
  text-decoration: none !important;
  background: var(--apl-button);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .19);
}

.page-id-826 .apl-button::after,
.page-id-826 .apl-contact-button::after {
  content: "›";
  margin-left: 10px;
  color: #15a8ff;
  font-size: 22px;
  line-height: 1;
}

.page-id-826 .apl-button:hover,
.page-id-826 .apl-contact-button:hover {
  background: var(--apl-button-hover);
  text-decoration: none !important;
}

/* Botones a ancho completo en móvil */
@media screen and (max-width: 540px) {
  .page-id-826 .apl-button,
  .page-id-826 .apl-contact-button {
    display: block;
    text-align: center;
    margin-bottom: -10px;
    width: 100%;
    max-width: stretch;
  }
}

/* ============================== */
/* MÓDULO: NOTA / AVISO YMYL      */
/* ============================== */

/* Caja para avisos importantes de contenido sensible o aclaraciones profesionales */
.page-id-826 .apl-ymyl-note {
  border-left: 3px solid var(--apl-h2-border);
  background: rgba(1, 14, 32, .6);
  padding: 18px 22px;
  margin: 18px 0;
  border-radius: 8px;
}

.page-id-826 .apl-ymyl-note p {
  margin: 0;
  color: var(--apl-ink);
  font-size: 15px;
  line-height: 1.75;
}

/* ============================== */
/* ELEMENTOS: "BOTONES LARGOS CON */
/* FELCHAS (A LOS EXTREMOS)       */
/* IZQUIERDA Y DERECHA            */
/* ============================== */

/* Base  (Flecha a la izquierda)  */
.page-id-826 a.btn-largo-flecha {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 48px;
  padding: 12px 44px 12px 21px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  color: var(--apl-white) !important;
  background: var(--apl-button);
  border-radius: 8px;
  text-decoration: none !important;
  text-shadow: none;
}

.page-id-826 a.btn-largo-flecha:hover {
  background: var(--apl-button-hover);
  text-decoration: none !important;
}

.page-id-826 a.btn-largo-flecha::before {
  content: "›";
  position: absolute;
  left: auto;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  color: #15a8ff;
  font-size: 30px;
  line-height: 1;
  transition: color 0.2s ease;
}

/* Para mover la flecha a la derecha */
.page-id-826 a.btn-largo-flecha--der::before {
  left: auto;
  right: 16px;
}

/* EJEMPLOS DE APLICACIÓN:

.page-id-826 <a href="#" class="btn-largo-flecha">Botón con flecha izquierda</a>
.page-id-826 <a href="#" class="btn-largo-flecha btn-largo-flecha--der">Botón con flecha derecha</a>

*/

/* ============================== */
/* MÓDULO: LISTAS “BOTONES” (TOC) */
/* ul.lista-botonesLARGOS         */
/* **** FLECHA A LA DERECHA ****  */
/* ============================== */

/* Este sirve también para botones simples sin lista */
.page-id-826 .lista-botonesLARGOS {
  padding: 0;
  margin: 0 !important;
}

.page-id-826 .lista-botonesLARGOS li {
  list-style: none;
  margin-bottom: 12px;
}

.page-id-826 .lista-botonesLARGOS a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  text-shadow: none;
  min-height: 48px;
  padding: 12px 44px 12px 21px;
  color: var(--apl-white) !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  border-radius: 8px;
  background: var(--apl-button);
  position: relative;
}

.page-id-826 .lista-botonesLARGOS a:hover {
  background: var(--apl-button-hover);
  text-decoration: none !important;
}

.page-id-826 .lista-botonesLARGOS a::before {
  content: "›";
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  color: #15a8ff;
  font-size: 30px;
  transition: color 0.2s ease;
  pointer-events: none;
  line-height: 1;
}

/* ============================== */
/* MÓDULO: SU_EXPAND (BOTÓN)      */
/* [su_expand class="Ayuda_Test"] */
/* ============================== */

/* Botón principal */
.page-id-826 .Ayuda_Test .su-expand-link a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;

  border: none !important;
  border-radius: 8px;

  font-weight: 500;
  font-size: 21px;
  text-align: center;

  color: var(--apl-white) !important;
  text-decoration: none;
  text-shadow: none;

  /* Reutiliza el gradiente “botón azul” ya definido en tu bitácora */
  background: var(--apl-grad-btn);
}

/* Hover */
.page-id-826 .Ayuda_Test .su-expand-link a:hover {
  /* Reutiliza el hover azul ya definido en tu bitácora */
  background: var(--apl-btn-hover);
}

/* Evita opacidades heredadas del plugin */
.page-id-826 .Ayuda_Test .su-expand-link:hover {
  opacity: 1;
}

/* ============================== */
/* ELEMENTO:                      */
/* HR SEPARADORA DE SECCIONES     */
/* COLOR AZUL                     */
/* ============================== */
.page-id-826 .Hr-Blue-Separator {
  height: 2px;
  background-color: var(--apl-h2-border);
}

/* ============================== */
/* MÓDULO: FAQ (div.psi-faq)      */
/* details/summary + contenido    */
/* ============================== */
.page-id-826 .psi-faq {
  margin-top: 35px;
}

/* Card por ítem */
.page-id-826 .psi-faq details {
  margin: 20px 0;
  border-radius: 10px;
  background: var(--apl-faq-bg);
  overflow: hidden;
  border: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-id-826 .psi-faq details[open] {
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.12);
}

/* Summary (encabezado clickable) */
.page-id-826 .psi-faq summary {
  display: block;
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 14px 18px 14px 44px;
  border: 1px solid #003a67;
  border-radius: 8px;
  font-weight: 500;
  color: var(--apl-white);
  background: linear-gradient(180deg, #00477a 0%, #003b68 100%);
  user-select: none;
  font-family: "Segoe UI", Tahoma, sans-serif !important;
  line-height: 1.45;
}

.page-id-826 .psi-faq summary strong {
  font-weight: 500;
}

/* Tamaño de fuente en desktop */
@media (min-width: 721px) {
  .page-id-826 .psi-faq summary {
    font-size: 19px;
  }
}

/* Quita el marcador nativo */
.page-id-826 .psi-faq summary::-webkit-details-marker,
.page-id-826 .psi-faq summary::marker {
  display: none;
}

/* Flecha */
.page-id-826 .psi-faq summary::before {
  content: "➤";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  color: #18a8ff;
  transition: transform 0.25s, color 0.2s;
}

/* Flecha al abrir */
.page-id-826 .psi-faq details[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
  color: var(--apl-accent-open);
}

/* Hover */
.page-id-826 .psi-faq summary:hover {
  background: linear-gradient(180deg, #005893 0%, #00477a 100%);
}

/* Foco visible */
.page-id-826 .psi-faq summary:focus-visible {
  outline: var(--apl-accent) solid 2px;
  outline-offset: 2px;
}

/* Tamaño de fuente en móvil */
@media (max-width: 720px) {
  .page-id-826 .psi-faq summary {
    font-size: 18px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .page-id-826 .psi-faq summary,
  .page-id-826 .psi-faq summary::before {
    transition: none !important;
    transform: none !important;
  }
}

/* Contenido expandido */
.page-id-826 .psi-faq details > :not(summary) {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--apl-faq-divider);
  background: var(--apl-faq-bg);
  color: var(--apl-white);
  line-height: 1.6;
}

.page-id-826 .psi-faq p {
  margin: 0;
  color: var(--apl-white);
}

.page-id-826 .psi-faq ul,
.page-id-826 .psi-faq ol {
  margin: 10px 0 0 !important;
  padding-left: 35px !important;
}

.page-id-826 .psi-faq li {
  margin: 0 0 10px;
}

.page-id-826 .psi-faq a {
  color: var(--apl-white);
  border-bottom: 1px dotted;
  text-decoration: none;
}

.page-id-826 .psi-faq a:hover {
  color: var(--apl-accent);
  border-bottom-color: var(--apl-accent);
  text-decoration: none;
}

/* ============================== */
/* MÓDULO: DISCLAIMER             */
/* Caja de Notas, Advertencias... */
/* ============================== */
.page-id-826 .pdf-disclaimer {
  font-size: 15px;
  color: var(--apl-ink);
  font-style: normal;
  background: rgba(1, 14, 32, .6);
  border-left: 3px solid var(--apl-h2-border);
  padding: 18px 22px;
  border-radius: 8px;
  line-height: 1.75;
  box-sizing: border-box;
}

.page-id-826 .pdf-disclaimer a {
  color: var(--apl-accent);
  font-size: 15px;
  font-weight: 500;
}

/* ================================================= */
/* PAYPAL — RÉPLICA DE TERAPIA DE PAREJA — D4 START */
/* ================================================= */

/* Módulo especial: tarjetas de pago PayPal */
.page-id-826 .apl-pay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 10px 0 25px;
}

.page-id-826 .apl-pay-card {
  border-radius: 8px;
  padding: 30px 28px 17px;
  text-align: center;
  background-image: var(--apl-panel);
  box-shadow: inset 0 0 0 1px rgba(33, 83, 158, .42);
}

.page-id-826 .apl-pay-card h3 {
  margin: 0 0 12px;
  color: var(--apl-ink);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 500;
}

.page-id-826 .apl-pay-card p {
  color: var(--apl-ink);
  font-size: 16px;
  line-height: 1.72;
}

.page-id-826 .apl-pay-price {
  display: block;
  margin: 0 0 14px;
  color: var(--apl-ink);
  font-size: 25px !important;
  font-weight: 700;
}

.page-id-826 .apl-paypal-form {
  margin: 20px auto -20px;
  text-align: center;
}

.page-id-826 .apl-paypal-img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
  margin: 0 auto;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}

.page-id-826 .apl-paypal-img:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

@media screen and (max-width: 620px) {
  .page-id-826 .apl-pay-grid {
    grid-template-columns: 1fr;
  }
}

/* Módulo especial: tarjetas de pago con varias opciones */
.page-id-826 .apl-pay-card-multi > p {
  margin-bottom: 18px;
}

.page-id-826 .apl-pay-option {
  padding: 18px 0 0;
  border-top: 1px solid rgba(33, 83, 158, .42);
}

.page-id-826 .apl-pay-option .apl-pay-price {
  margin-bottom: 10px;
  font-size: 22px !important;
}

.page-id-826 .apl-pay-option .apl-paypal-form {
  margin: 12px auto 0;
}

.page-id-826 .apl-pay-option-last {
  padding-bottom: 0;
}

.page-id-826 .apl-pay-option-last .apl-paypal-form {
  margin-bottom: -10px;
}


/* =============================================== */
/* PAYPAL — RÉPLICA DE TERAPIA DE PAREJA — D4 END */
/* =============================================== */

/* ================================================= */
/* MÓDULO PROFESIONAL — RÉPLICA HOME — D5 START */
/* ================================================= */

.page-id-826 .home-apl-profile {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 32px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background-image: var(--apl-panel-alt);
  box-shadow: inset 0 0 0 1px rgba(33, 83, 158, .44);
  color: var(--apl-ink);
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.page-id-826 .home-apl-profile *,
.page-id-826 .home-apl-profile *::before,
.page-id-826 .home-apl-profile *::after {
  box-sizing: border-box;
}

.page-id-826 .home-apl-profile figure {
  margin: 0;
}

.page-id-826 .home-apl-profile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.page-id-826 .home-apl-profile > div {
  padding: 28px 26px 26px 0;
}

.page-id-826 .home-apl-profile h3 {
  margin: 0 0 12px;
  color: var(--apl-ink);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 500;
}

.page-id-826 .home-apl-profile p {
  color: var(--apl-ink);
  font-size: 17px;
  line-height: 1.82;
}

.page-id-826 #content .entry-content .home-apl-profile p {
  margin: 17px 0 !important;
}

.page-id-826 .home-apl-profile strong {
  font-weight: 500;
}

.page-id-826 .home-apl-profile .home-apl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 12px 21px;
  border: none !important;
  border-radius: 8px;
  background: var(--apl-button);
  color: #fff !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .19);
}

.page-id-826 .home-apl-profile .home-apl-btn::after {
  content: "›";
  margin-left: 10px;
  color: #15a8ff;
  font-size: 22px;
  line-height: 1;
}

.page-id-826 .home-apl-profile .home-apl-btn:hover {
  background: var(--apl-button-hover);
}

.page-id-826 #content .entry-content .home-apl-profile .home-apl-btn {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
}

@media (max-width: 760px) {
  .page-id-826 .home-apl-profile {
    grid-template-columns: 1fr;
  }

  .page-id-826 .home-apl-profile > div {
    padding: 24px;
  }

  .page-id-826 .home-apl-profile img {
    min-height: 280px;
  }

  .page-id-826 .home-apl-profile .home-apl-btn {
    width: 100%;
    justify-content: space-between;
    text-align: left;
    font-weight: 500;
  }
}

/* =============================================== */
/* MÓDULO PROFESIONAL — RÉPLICA HOME — D5 END */
/* =============================================== */
/* ================================================= */
/* CTA WHATSAPP Y AVISO INICIAL — MIGRACIÓN D6 START */
/* ================================================= */
.apl-chat-cta {
    display: block;
    width: min(100%, 660px);
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    text-decoration: none;
    cursor: pointer;
    transform-origin: center;
    -webkit-tap-highlight-color: transparent;

    transition:
        transform 180ms ease,
        filter 180ms ease,
        box-shadow 180ms ease;
}

.apl-chat-cta__image {
    width: 100%;
    height: auto;
    margin: 0;
    border: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Escritorio */
.apl-chat-cta__desktop {
    display: block !important;
    margin: 70px auto 0;
}

/* Móvil oculto por defecto */
.apl-chat-cta__mobile {
    display: none !important;
}

/* Hover únicamente en dispositivos con cursor */
@media (hover: hover) and (pointer: fine) {
    .apl-chat-cta:hover {
        transform: translateY(-2px);
        filter: brightness(1.04);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    }
}

/* Presión o toque */
.apl-chat-cta:active {
    transform: translateY(0) scale(0.985);
    filter: brightness(0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

/* Navegación con teclado */
.apl-chat-cta:focus-visible {
    outline: 3px solid #2d8fc4;
    outline-offset: 4px;
}

/* Vista móvil */
@media screen and (max-width: 540px) {
    .apl-chat-cta__desktop {
        display: none !important;
    }

    .apl-chat-cta__mobile {
        display: block !important;
        margin-top: 60px;
    }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .apl-chat-cta {
        transition: none;
    }
}

.apl-ymyl-first {
    background-image: var(--apl-panel);
	margin: 75px 0;
    padding: 18px 22px;
    border: 1px solid #305d8b;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.75;
	}
/* =============================================== */
/* CTA WHATSAPP Y AVISO INICIAL — MIGRACIÓN D6 END */
/* =============================================== */

/* ================================================= */
/* PAYPAL — COMPENSACIÓN DE ALTURA SIN PIXEL EXTERNO */
/* ================================================= */

.page-id-826 .apl-chat-therapy-page .apl-paypal-form::after {
    content: "";
    display: block;
    height: 28px;
}
