/* ================================ */
/* ⚠️ AVISO SOLO PARA RESOLUCIONES NO TRABAJADAS */
/* ================================ */

/* Mostrar aviso en resoluciones intermedias,
   excepto:
   - Responsive móvil trabajada: 375px
   - Tablet iPad Air trabajada (parcial): 820px
*/

@media screen and (min-width: 376px) and (max-width: 1023px) and (not (width: 375px)) and (not (width: 820px)) {
  body::before {
    content: "⚠️ PQIA aún no está optimizada para tu tipo de dispositivo. Te recomendamos usar móvil o PC para una mejor experiencia.";
    display: block;
    background-color: #92180b;
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px; /* Más pequeño */
    font-family: 'Raleway', sans-serif;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  body {
    padding-top: 38px !important;  /* menos empuje visual */
  }
}
