/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 18 2025 | 23:59:13 */
/* Solo aplica si el body tiene la clase "home" */
body.home {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Contenedor principal SOLO en home */
body.home .wp-site-blocks {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow: hidden;
}

/* Contenido central que se adapta SOLO en home */
body.home .wp-site-blocks > *:nth-child(2) {
  flex-grow: 1;
  overflow: hidden;
  max-height: 100%;
}

/* Imágenes, videos o héroes solo dentro de home */
body.home img,
body.home video,
body.home .hero {
  max-height: 100%;
  width: 100%;
  object-fit: contain; /* o cover */
}

/* Navbar y footer visibles en iOS SOLO en home */
body.home header.wp-block-template-part,
body.home footer.wp-block-template-part {
  flex-shrink: 0;
  z-index: 10;
  background: #000;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}
