  /*
 * Estado de carga para contenido público administrado desde Supabase.
 * Evita mostrar durante milisegundos textos antiguos incrustados en el HTML.
 */
html.public-config-loading [data-hero-title],
html.public-config-loading [data-hero-text],
html.public-config-loading [data-home-highlight-title],
html.public-config-loading [data-home-highlight-text],
html.public-config-loading [data-home-highlight-button],
html.public-config-loading [data-promo-main] {
  visibility: hidden;
  opacity: 0;
}

html.public-config-loading [data-hero-title] {
  min-height: 3.25em;
}

html.public-config-loading [data-hero-text] {
  min-height: 3.2em;
}

  html.public-config-loading [data-home-highlight-title] {
    min-height: 2.4em;
}


html.public-config-ready [data-hero-title],
html.public-config-ready [data-hero-text],
html.public-config-ready [data-home-highlight-title],
html.public-config-ready [data-home-highlight-text],
html.public-config-ready [data-home-highlight-button],
html.public-config-ready [data-promo-main] {
  visibility: visible;
  opacity: 1;
  transition: opacity 160ms ease;
}

@media (max-width: 767px) {
  html.public-config-loading [data-hero-title] {
    min-height: 5.6em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.public-config-ready [data-hero-title],
  html.public-config-ready [data-hero-text],
  html.public-config-ready [data-home-highlight-title],
  html.public-config-ready [data-home-highlight-text],
  html.public-config-ready [data-home-highlight-button],
  html.public-config-ready [data-promo-main],
  html.public-config-ready [data-config] {
    transition: none;
  }
}
