/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 60:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
/* HERO */
.story-hero {
  text-align: center;
  padding: 80px 20px;
}
.story-hero h1 {
  margin: 0 auto;
  word-break: break-word; /* evita estouro no mobile */
}

/* TWO COLUMN (TEXTO + IMAGEM) */
.story-two-col {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  flex-wrap: nowrap; /* desktop default */
}
/* children */
.story-two-col > div {
  flex: 1 1 50%;
  max-width: 50%;
}
.story-two-col img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto 0 auto; /* centraliza quando empilhado */
  width: auto;
}

/* MOBILE  (<768px)  –  texto primeiro, imagem depois */
@media screen and (max-width: 767px) {
  .story-two-col {
    flex-direction: column; /* força empilhar */
  }
  .story-two-col > div {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* CENTERED TEXT */
.story-center-text {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}
</style>