/* ===================================================================
   Ajustes WordPress sobre el CSS del handoff.
   Los <image-slot> del prototipo se sustituyen por imágenes reales
   (.slot-img) o por un placeholder discreto (.slot-empty) cuando el
   cliente aún no ha cargado la foto. Selectores espejo de los del
   prototipo (rediseno.css / rediseno-v3.css).
   =================================================================== */

img.slot-img { object-fit: cover; }

/* Placeholder cuando no hay imagen elegida en WP */
span.slot-empty {
  display: block;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(0, 163, 140, .16), transparent 55%),
    linear-gradient(145deg, var(--surface2, #eef4f2), var(--surface1, #f7faf9));
}

/* Hero de subpáginas */
.page-hero .ph-bg .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Avatares de testimonios (home) */
.cmap-cards.v3 .avatar .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; }

/* Equipo (Nosotros) */
.member .shot .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Acordeón de Servicios */
.sidx-panel .slot-img { display: block; width: 100%; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; }

/* Detalle de servicio */
.svc-hero-grid .slot-img { display: block; width: 100%; aspect-ratio: 4 / 3; border-radius: 24px; overflow: hidden; }

/* Noticias: destacado, tarjetas y portada del artículo */
.feat-hero .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.post .thumb { position: relative; overflow: hidden; }
.post .thumb .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.post .thumb:has(.slot-img:not(.slot-empty))::after { display: none; }
.article-cover .slot-img { display: block; width: 100%; aspect-ratio: 16 / 8; border-radius: 24px; overflow: hidden; }

/* Recursos: portada en la tarjeta de descarga */
.res-card .slot-img { display: block; width: 100%; aspect-ratio: 16 / 10; max-height: 280px; border-radius: 16px; overflow: hidden; }

/* Duotono teal del prototipo sobre fotos reales */
.page-hero .ph-bg .slot-img:not(.slot-empty),
.duo .slot-img:not(.slot-empty),
.feat-hero .slot-img:not(.slot-empty),
.sidx-panel .slot-img:not(.slot-empty) {
  filter: grayscale(1) sepia(.42) hue-rotate(128deg) saturate(1.9) brightness(.92);
}

/* Cuerpo de páginas legales (estilo inline de Politica-de-Datos.html,
   aplicado también a Términos para consistencia) */
.legal-body h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.legal-body p { color: var(--dim); line-height: 1.7; margin: 0 0 6px; }
.legal-note { margin-top: 36px; font-size: .85rem; font-style: italic; }

/* Barra de administración de WP (usuarios logueados) */
body.admin-bar header { top: 32px; }
@media (max-width: 782px) { body.admin-bar header { top: 46px; } }
