/* memorial_shell.css (v3)
   Fondo + carcasa externa
*/

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;

  /* Reduce diferencias por auto-ajustes de texto del navegador */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /* Evita desbordes horizontales accidentales */
  overflow-x: hidden;
}

/* Fondo desktop por defecto */
body{
  background: #000 url('/smarti-paz-v3/paz-memorial/img/memorial_bg.jpg')
              no-repeat center center fixed;
  background-size: cover;
}

/* Caja externa (full width por defecto) */
.contenedor_externo {
  width: 100%;
  height: auto;
  min-height: 0;
}

/* Desktop: caja centrada 800px */
@media (min-width: 1100px) {
  .contenedor_externo {
    width: 800px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
  }
}

/* Mobile/Tablet: fondo negro (sin bosque) */
@media (max-width: 1099px) {
  body {
    background: #000;
  }
  .contenedor_externo {
    background: #000;
    margin: 0;
    border-radius: 0;
  }
}

/* Dispositivos táctiles: fuerza “modo mobile” aunque activen sitio de escritorio */
@media (hover: none) and (pointer: coarse) {
  body { background: #000; }
  .contenedor_externo{
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: #000;
  }
}


