/* Pequeños añadidos sobre el tema original (no alteran el diseño base). */

/* FAQ accordion: cada pregunta en su tarjeta con fondo */
.faq-accordion .card { border: 1px solid #e4ebf3; border-radius: 12px; box-shadow: 0 4px 14px -10px rgba(0,0,0,.15);
  background: #f6f9fc; margin-bottom: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-accordion .card:hover { border-color: #bcd5f5; }
.faq-accordion .card-header { background: transparent; border: 0; padding: 0; }
.faq-accordion .btn-link { display: flex; width: 100%; align-items: center; justify-content: space-between;
  color: #1e2733; font-weight: 600; text-decoration: none; padding: 18px 22px; }
.faq-accordion .btn-link::after { content: "+"; font-size: 1.4rem; color: #0078ff; line-height: 1; }
.faq-accordion .btn-link:not(.collapsed) { color: #0078ff; background: #eaf3ff; }
.faq-accordion .btn-link:not(.collapsed)::after { content: "\2212"; }
.faq-accordion .btn-link:hover { color: #0078ff; }
.faq-accordion .card-body { color: #4e4e4e; padding: 4px 22px 20px; background: #fff; }

/* Sub-page article content */
.article-content img { max-width: 100%; height: auto; border-radius: 6px; }
.article-meta { color: #8a8a8a; font-size: .9rem; }
/* Capturas dentro de un artículo: marco suave + pie de foto */
.article-content figure.block-image { margin: 28px 0; }
.article-content figure.block-image img { display: block; width: 100%; border: 1px solid #e7edf3;
  border-radius: 10px; box-shadow: 0 14px 30px -22px rgba(0,0,0,.5); }
.article-content figure.block-image figcaption { margin-top: 10px; color: #8a8a8a; font-size: .87rem;
  text-align: center; font-style: italic; }
.widget-sidebar { background: #fff; border-radius: 6px; box-shadow: 0 13px 8px -10px rgba(0,0,0,.1); padding: 24px; }

/* Client dashboard */
.dashboard-card { background:#fff; border-radius:6px; box-shadow:0 13px 8px -10px rgba(0,0,0,.1); padding:28px; margin-bottom:24px; }
.dashboard-card h2 { font-size:1.3rem; }
.table-clean { width:100%; border-collapse:collapse; }
.table-clean th, .table-clean td { padding:10px 8px; border-bottom:1px solid #eee; text-align:left; }
.status-badge { display:inline-block; padding:2px 12px; border-radius:20px; font-size:.8rem; background:#cde1f8; color:#14457a; }

/* Auth pages card */
.auth-section { padding-bottom: 5rem; }          /* aire entre el cuadro y el pie */
.auth-card { background:#fff; border-radius:10px; box-shadow:0 18px 40px -22px rgba(0,0,0,.22);
  padding:44px 48px; max-width:680px; margin:0 auto; }
.auth-card .form-control { padding: 12px 14px; font-size: 1rem; height: auto; }   /* campos más holgados */
/* El <select> con padding holgado clipa el texto si conserva la altura fija de
   Bootstrap; altura automática + line-height para que se lea entero. */
.auth-card select.form-control { height: auto; min-height: 48px; line-height: 1.4; }
.auth-card .button { width: 100%; }              /* botón a todo el ancho del cuadro */

/* Contenedor más ancho para la página de aplicación */
.container.container-wide { max-width: 1480px; }

/* Planes y precios */
.pricing-section { margin-top: 56px; }
.pricing-card { background: #fff; border: 1px solid #e7edf3; border-radius: 16px; padding: 34px 26px;
  box-shadow: 0 18px 40px -24px rgba(0,0,0,.22); text-align: center; height: 100%;
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -22px rgba(0,0,0,.28); }
.pricing-card.is-featured { border-color: #0078ff; box-shadow: 0 26px 50px -20px rgba(0,120,255,.35); }
.pricing-name { font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; color: #1e2733; margin-bottom: 14px; }
.pricing-price { font-size: 2.4rem; font-weight: 700; color: #1e2733; margin-bottom: 6px; }
.pricing-price .pricing-cur { font-size: 1.1rem; vertical-align: super; }
.pricing-price .pricing-period { font-size: 1rem; font-weight: 400; color: #8a8a8a; }
.pricing-features { list-style: none; padding: 0; margin: 18px 0 24px; color: #4e4e4e; }
.pricing-features li { padding: 9px 0; border-bottom: 1px solid #f0f3f7; }
.pricing-features li.excluded { color: #b9c0c9; text-decoration: line-through; }
.pricing-card .button { margin-top: auto; }

/* Objetos 3D en la sección de Servicios (proporcional al icono original ~96px) */
.service-3d { width: 96px; height: 96px; margin: 0 auto 8px; position: relative; }
.service-3d canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.service-3d.is-3d .ico-fallback { display: none; }

/* Prueba 3D superpuesta en la tarjeta de Hermes (sección Aplicaciones) */
.work-img.has-app3d { position: relative; overflow: hidden; min-height: 320px; }
/* El icono estático arranca grande y centrado, y se desvanece suavemente
   cuando la animación 3D ya tiene su primer frame listo (crossfade). */
.work-img.has-app3d img { transition: opacity .7s ease; }
.work-img.has-app3d.is-3d-ready img { opacity: 0; } /* sin imagen de fondo: solo animación */
.work-img.has-app3d.is-3d-ready { background: linear-gradient(180deg, #ffffff 0%, #eaf0f7 100%); } /* fondo claro para los iconos toon */
.app-3d { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
/* La animación y el logo entran con un fundido suave (is-revealed). */
.app-3d canvas { display: block; width: 100% !important; height: 100% !important; opacity: 0; transition: opacity .7s ease; }
.app-3d.is-revealed canvas { opacity: 1; }
/* Logo de la app: arriba a la izquierda de la tarjeta, sobre la animación.
   Se renderiza en la plantilla (siempre en el DOM) y entra con un fundido suave
   a la vez que la animación (cuando la tarjeta recibe `is-3d-ready`). */
.app-3d-logo { position: absolute; top: 16px; left: 16px; width: 64px; height: auto; z-index: 3;
  pointer-events: none; opacity: 0; transition: opacity .7s ease .1s; }
.work-img.has-app3d.is-3d-ready .app-3d-logo { opacity: 1; }

/* Footer con imagen de fondo (recupera el paralax del original) */
footer.footer-bg { position: relative; background-size: cover; background-position: center; background-attachment: fixed; padding-top: 3rem; }
footer.footer-bg .container { position: relative; z-index: 2; }

/* Navbar más proporcionada y responsive */
.navbar-b .navbar-nav .nav-link { padding: .5rem .55rem; font-size: .95rem; white-space: nowrap; }
.navbar-b .navbar-brand { font-weight: 700; }

/* Escritorio (≥1200px): la marca y el menú forman un ÚNICO bloque centrado en la
   página (Nebulose · espaciador · menú), con un espaciador GRANDE y proporcional
   al ancho. Ni la zona del menú ni la lista se estiran, así las opciones quedan
   agrupadas. Por debajo de 1200px se usa el menú hamburguesa (navbar-expand-xl),
   que siempre cabe, evitando que se corten opciones o la marca. */
@media (min-width: 1200px) {
  #mainNav > .container { justify-content: center; }
  /* Espaciador = ancho SOBRANTE tras marca+menú: ~0 cerca de 1200px (para que
     todo quepa sin cortarse) y crece con la ventana hasta un máximo cómodo. Así
     nunca desborda y en pantallas anchas mantiene la separación amplia. */
  #mainNav .navbar-brand { margin-right: clamp(.5rem, calc(100vw - 1180px), 18rem); }
  #mainNav .navbar-collapse { flex: 0 0 auto !important; width: auto !important; }
  #mainNav .navbar-nav { flex: 0 0 auto; flex-wrap: nowrap; }
}

/* Franja 1200–1399px: opciones un poco más compactas para dejar sitio a la marca
   y al icono de cuenta sin tener que pasar aún a modo móvil. */
@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar-b .navbar-nav .nav-link { padding: .5rem .4rem; font-size: .9rem; }
}

/* Menú hamburguesa (móvil/tablet, <1200px): panel oscuro translúcido con desenfoque
   que se integra sobre cualquier fondo, incluida la portada transparente. */
@media (max-width: 1199px) {
  #mainNav .navbar-collapse {
    margin-top: 12px;
    background: rgba(20, 22, 28, .92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .6);
  }
  #mainNav .navbar-nav .nav-item { width: 100%; }
  /* Enlaces a todo el ancho, legibles y con buen área de pulsación. */
  #mainNav .navbar-nav .nav-link,
  #mainNav.navbar-trans .navbar-nav .nav-link,
  #mainNav.navbar-reduce .navbar-nav .nav-link {
    color: #fff; padding: .7rem .9rem; border-radius: 8px; font-size: 1rem;
  }
  #mainNav .navbar-nav .nav-item + .nav-item { border-top: 1px solid rgba(255, 255, 255, .07); }
  #mainNav .navbar-nav .nav-link:hover { background: rgba(255, 255, 255, .10); color: #fff; }
  /* Botones (demo / probar) a fila completa. */
  #mainNav .navbar-nav .nav-item .nav-btn,
  #mainNav .navbar-nav .nav-item .nav-btn-outline {
    display: block; width: 100%; text-align: center; margin: 8px 0 0;
  }
  /* Icono de cuenta bien visible: botón sólido de la marca, tamaño cómodo. */
  #mainNav .navbar-nav .nav-item .nav-icon-btn {
    width: 46px; height: 46px; font-size: 1.4rem; margin: 12px 0 4px;
    background: #0078ff; color: #fff;
  }
  #mainNav .navbar-nav .nav-item .nav-icon-btn:hover { background: #005fcc; color: #fff; }
}

/* Botones finales de la página de aplicación (en una misma línea, centrados) */
.app-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid #e7edf3; }
.button.button-line { background: transparent; color: #0078ff; box-shadow: inset 0 0 0 2px #0078ff; }
.button.button-line:hover { background: #0078ff; color: #fff; }
/* Planes apilados verticalmente en la columna derecha */
.pricing-stack .pricing-card { margin-bottom: 18px; }
.pricing-stack .pricing-card:last-child { margin-bottom: 0; }

/* Bloque de Preguntas frecuentes (insertable en cualquier página) */
.faq-blocks { max-width: 820px; margin: 0 auto; }
.faq-block { border: 1px solid #e4ebf3; border-radius: 12px; background: #f6f9fc; margin-bottom: 12px;
  box-shadow: 0 4px 14px -10px rgba(0,0,0,.15); overflow: hidden; }
.faq-block > summary { cursor: pointer; list-style: none; padding: 16px 22px; font-weight: 600; color: #1e2733;
  display: flex; justify-content: space-between; align-items: center; }
.faq-block > summary::-webkit-details-marker { display: none; }
.faq-block > summary::after { content: "+"; color: #0078ff; font-size: 1.3rem; line-height: 1; }
.faq-block[open] > summary { color: #0078ff; background: #eaf3ff; }
.faq-block[open] > summary::after { content: "\2212"; }
.faq-block-body { padding: 6px 22px 18px; color: #4e4e4e; }

/* Bloque de columnas (front) */
.block-columns { margin: 0 0 1rem; }
.block-column { min-width: 0; }

/* ---------- Botones de acción de la barra superior ---------- */
.navbar-actions { display: flex; align-items: center; gap: 10px; margin-left: 18px; }
.navbar-actions .nav-item { padding: 0 !important; }
.nav-btn, .nav-btn-outline {
  display: inline-block; padding: .5rem 1.1rem; border-radius: 24px; font-weight: 600;
  font-size: .9rem; line-height: 1.2; white-space: nowrap; text-decoration: none;
  border: 2px solid transparent; transition: all .25s ease; }
.nav-btn { background: #0078ff; color: #fff; border-color: #0078ff; }
.nav-btn:hover { background: #005fcc; border-color: #005fcc; color: #fff; }
.nav-btn-outline { background: transparent; }
.navbar-trans .nav-btn-outline { color: #fff; border-color: rgba(255,255,255,.85); }
.navbar-trans .nav-btn-outline:hover { background: #fff; color: #0078ff; border-color: #fff; }
.navbar-reduce .nav-btn-outline { color: #0078ff; border-color: #0078ff; }
.navbar-reduce .nav-btn-outline:hover { background: #0078ff; color: #fff; }
.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; font-size: 1.25rem; text-decoration: none; transition: all .25s ease; }
.navbar-trans .nav-icon-btn { color: #fff; background: rgba(255,255,255,.16); }
.navbar-trans .nav-icon-btn:hover { color: #0078ff; background: #fff; }
.navbar-reduce .nav-icon-btn { color: #0078ff; background: #eaf3ff; }
.navbar-reduce .nav-icon-btn:hover { color: #fff; background: #0078ff; }
/* En escritorio (≥1200px) los botones/iconos viven en la misma lista que los
   enlaces, con un poco de separación a su izquierda. En móvil se gestionan en el
   bloque del panel hamburguesa (más arriba). */
@media (min-width: 1200px) {
  .navbar-nav .nav-item .nav-btn,
  .navbar-nav .nav-item .nav-btn-outline,
  .navbar-nav .nav-item .nav-icon-btn { margin-left: 6px; }
}

/* ---------- FAQ con fondo parallax (sección de la portada) ---------- */
.faq-parallax { position: relative; }
.faq-parallax-inner { position: relative; z-index: 2; }
.faq-parallax-inner .title-a { color: #fff; }
.faq-parallax-inner .faq-block-section { padding-top: 0; padding-bottom: 0; }

/* ---------- Registro a dos columnas (elige aplicación + formulario) ---------- */
.signup-hero { min-height: 320px; }
.signup-section { background: #f5f7fa; padding-bottom: 6rem; }   /* aire con el pie */
.signup-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: start; }
.signup-col-title { font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; color: #6a7686; margin-bottom: 14px; }
.signup-apps { display: flex; flex-direction: column; gap: 12px; }
.app-choice {
  display: flex; align-items: center; gap: 14px; margin: 0; cursor: pointer;
  background: #fff; border: 2px solid #e7edf3; border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 10px 24px -20px rgba(0,0,0,.25); transition: border-color .2s, box-shadow .2s, transform .2s; }
.app-choice:hover { border-color: #bcd5f5; transform: translateY(-1px); }
.app-choice input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.app-choice:has(input:checked) { border-color: #0078ff; box-shadow: 0 14px 30px -18px rgba(0,120,255,.5); }
.app-choice-ico {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: inline-flex;
  align-items: center; justify-content: center; font-size: 1.5rem; color: #0078ff; background: #eaf3ff; }
.app-choice:has(input:checked) .app-choice-ico { background: #0078ff; color: #fff; }
.app-choice-text { display: flex; flex-direction: column; min-width: 0; }
.app-choice-name { font-weight: 700; color: #1e2733; }
.app-choice:has(input:checked) .app-choice-name { color: #0078ff; }
.app-choice-tagline { color: #6a7686; font-size: .9rem; }
.app-choice-arrow { margin-left: auto; color: #b9c4d2; font-size: 1.6rem; line-height: 1; }
.signup-form-card {
  background: #fff; border-radius: 18px; padding: 34px 32px;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,.28); position: sticky; top: 100px; }
.signup-form-card .form-control { padding: 12px 14px; font-size: 1rem; height: auto; }
.signup-form-card .button { width: 100%; }
.signup-note { text-align: center; }
@media (max-width: 800px) {
  .signup-split { grid-template-columns: 1fr; }
  .signup-form-card { position: static; }
}

/* --- Banner de consentimiento de cookies (RGPD) --- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1080;
  background: #1e2733; color: #eaf0f7;
  box-shadow: 0 -8px 30px -12px rgba(0,0,0,.5);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: 1140px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-banner__text { margin: 0; flex: 1 1 320px; font-size: .95rem; line-height: 1.5; }
.cookie-banner__text a { color: #6fb3ff; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.btn-cookie {
  border: 0; border-radius: 8px; padding: 10px 22px; font-weight: 600;
  font-size: .95rem; cursor: pointer; line-height: 1;
}
.btn-cookie--primary { background: #0078ff; color: #fff; }
.btn-cookie--primary:hover { background: #0064d6; }
.btn-cookie--ghost { background: transparent; color: #eaf0f7; border: 1px solid #48566a; }
.btn-cookie--ghost:hover { background: rgba(255,255,255,.08); }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* --- Confirmación post-contratación --- */
.confirm-check {
  width: 72px; height: 72px; margin: 0 auto; border-radius: 50%;
  background: #22a45d; color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 2rem;
}
.confirm-steps { margin: 12px 0 20px; padding-left: 20px; }
.confirm-steps li { margin-bottom: 10px; line-height: 1.55; }

/* --- Comparativa de aplicaciones --- */
.compare-wrap { overflow-x: auto; margin-top: 10px; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff;
  border: 1px solid #e7edf3; border-radius: 16px; overflow: hidden; box-shadow: 0 13px 8px -10px rgba(0,0,0,.1); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left;
  border-bottom: 1px solid #f0f3f7; vertical-align: middle; }
.compare-table thead th { background: #0078ff; color: #fff; font-weight: 600;
  white-space: nowrap; border-bottom: 0; }
.compare-table tbody tr:hover { background: #f6f9fc; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody td:first-child { font-weight: 600; }
.compare-table .text-center { text-align: center; }
@media (max-width: 768px) {
  .compare-table thead { display: none; }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td { display: block; width: 100%; }
  .compare-table tr { margin-bottom: 16px; border: 1px solid #eef1f5; border-radius: 12px; overflow: hidden; }
  .compare-table td { display: flex; justify-content: space-between; align-items: center;
    gap: 12px; text-align: right; border-bottom: 1px solid #f0f3f7; }
  .compare-table td::before { content: attr(data-label); font-weight: 600; color: #6a7686; text-align: left; }
  .compare-table td.text-center { justify-content: center; }
  .compare-table td.text-center::before { display: none; }
}

/* --- Widget de animación 3D en la página de detalle de la app (sidebar) --- */
.app-3d-widget { position: relative; height: 300px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eaf0f7 100%); }
/* 3D embebido en el contenido (arriba del artículo), centrado y contenido. */
.app-3d-inline { max-width: 520px; height: 340px; margin: 4px auto 28px;
  border: 1px solid #e7edf3; box-shadow: 0 13px 8px -10px rgba(0,0,0,.1); }
.app-3d-widget .app-3d { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.app-3d-widget.is-3d-ready .app-3d-logo { opacity: 1; }

/* --- Bloques citables (SEO/GEO): respuestas directas y tablas ---
   Paleta del tema: azul #0078ff, texto #1e2733/#4e4e4e, tarjetas blancas
   con borde #e7edf3 y sombra suave (como pricing-card / faq-accordion). */
/* «¿Qué es?» / definición: caja de respuesta directa, muy citable por IA. */
.qa-answer-box { padding: 26px 0; }
.qa-answer-box .container { max-width: 900px; border-left: 4px solid #0078ff;
  background: #f6f9fc; border: 1px solid #e4ebf3; border-radius: 12px;
  box-shadow: 0 4px 14px -10px rgba(0,0,0,.15); padding: 24px 28px; }
.qa-answer-title { font-size: 1.5rem; font-weight: 600; color: #1e2733; margin: 0 0 .5em; }
.qa-answer-body { color: #4e4e4e; font-size: 1.05rem; line-height: 1.6; }
.qa-answer-body p:last-child { margin-bottom: 0; }

/* Puntos clave («en breve»): resumen tipo key-takeaways (bloque disponible en el
   editor aunque no se use en las apps). */
.keyfacts-box { padding: 20px 0; }
.keyfacts-box .container { max-width: 900px; background: #fff; border: 1px solid #e7edf3;
  border-radius: 16px; padding: 26px 28px; box-shadow: 0 13px 8px -10px rgba(0,0,0,.1); }
.keyfacts-title { font-size: 1.1rem; font-weight: 600; color: #1e2733; margin: 0 0 .7em;
  text-transform: uppercase; letter-spacing: .04em; }
.keyfacts-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55em; }
.keyfacts-list li { position: relative; padding-left: 1.9em; color: #4e4e4e; line-height: 1.5; }
.keyfacts-list li::before { content: "✓"; position: absolute; left: 0; top: 0;
  color: #0078ff; font-weight: 700; }

/* Tabla comparativa / ficha técnica: tarjeta blanca con cabecera azul del tema. */
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff;
  border: 1px solid #e7edf3; border-radius: 16px; overflow: hidden;
  box-shadow: 0 13px 8px -10px rgba(0,0,0,.1); }
.comparison-table th, .comparison-table td { padding: 14px 22px; text-align: left;
  vertical-align: top; border-bottom: 1px solid #f0f3f7; }
.comparison-table thead th { background: #0078ff; color: #fff; font-weight: 600; border-bottom: 0; }
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table tbody tr:hover { background: #f6f9fc; }
.comparison-table tbody td:first-child { font-weight: 600; color: #1e2733; }

/* --- Iconos SVG (sustituyen a la fuente Ionicons) --- */
.svg-ico { display: inline-block; width: 1em; height: 1em; fill: currentColor;
  vertical-align: -0.125em; flex: 0 0 auto; }
/* Las insignias circulares centraban el glyph con line-height; con SVG usamos flex. */
.ico-circle, .comit { display: inline-flex; align-items: center; justify-content: center; }

/* Botón «subir arriba»: centrar el icono SVG en el círculo sin tocar `display`
   (jQuery controla el fade con display:none/block). line-height = altura del botón. */
.back-to-top { line-height: 44px; }
.back-to-top .svg-ico { width: 18px; height: 18px; vertical-align: middle; }

/* --- Banda de declaración / cita (una frase, sobria y elegante) --- */
.statement-band { text-align: center; padding-bottom: 3.5rem; }
.statement-band.bg-image .statement-kicker { color: #9fc6ff; }
.statement-band.bg-image .statement-text { color: #fff; }
.statement-inner { max-width: 900px; margin: 0 auto; position: relative; padding: 0 20px; }
.statement-inner::before { content: "\201C"; position: absolute; top: -.35em; left: 50%; transform: translateX(-50%);
  font-family: Georgia, "Times New Roman", serif; font-size: 5rem; line-height: 1; color: #0078ff; opacity: .14; }
.statement-kicker { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  font-weight: 600; color: #0078ff; margin-bottom: 16px; position: relative; }
.statement-text { font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.45; font-weight: 300;
  color: #1e2733; margin: 0; position: relative; }

/* --- Enlazado interno: «Otras aplicaciones» en la ficha de cada app --- */
.related-app-card { display: flex; flex-direction: column; height: 100%; background: #fff;
  border: 1px solid #e7edf3; border-radius: 14px; padding: 24px 22px; text-decoration: none;
  color: inherit; transition: transform .2s, box-shadow .2s, border-color .2s; }
.related-app-card:hover { transform: translateY(-4px); border-color: #0078ff;
  box-shadow: 0 24px 50px -26px rgba(0,120,255,.4); }
.related-app-cat { display: inline-block; align-self: flex-start; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; color: #0078ff; background: #eaf3ff;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; }
.related-app-card h3 { font-size: 1.15rem; color: #1e2733; margin: 0 0 8px; }
.related-app-card p { color: #4e4e4e; font-size: .92rem; margin: 0 0 16px; flex: 1; }
.related-app-link { color: #0078ff; font-weight: 600; font-size: .9rem; }

/* Trampa antispam: invisible para las personas, no para los bots que rellenan
   todo campo que encuentran. NO se usa display:none: algunos bots lo detectan
   y se saltan esos campos, que es justo lo que queremos evitar. */
.campo-trampa { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
