/* =========================================
   ESCALA NORMAL GLOBAL - DOLCE VITA CAFETERÍA
   -----------------------------------------
   Este archivo restablece cualquier zoom o escala
   aplicada accidentalmente en las páginas del sitio.
   Compatible con todos los navegadores modernos.
   ========================================= */

/* Asegura que HTML y BODY estén al 100% */
html, body {
  zoom: 90% !important;              /* escala normal para Chrome, Edge, Safari */
  transform: none !important;         /* elimina cualquier transformación */
  -moz-transform: none !important;    /* para Firefox */
  -ms-transform: none !important;     /* para versiones antiguas de Edge/IE */
  transform-origin: center center !important;
  -moz-transform-origin: center center !important;
  -ms-transform-origin: center center !important;
  width: 100% !important;
  height: auto !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Si algún contenedor principal aplica zoom o transform, lo reseteamos también */
#main, main, .container, .hero {
  zoom: 90% !important;
  transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Elimina efectos de escalado o zoom al cargar */
* {
  image-rendering: auto !important;
  transform: none !important;
  transition: none !important;
}
