teste2

<!DOCTYPE html>
<html amp lang="en">
  <head>
    <meta charset="utf-8">
    <script async src="https://cdn.ampproject.org/v0.js"></script>
    <script async custom-element="amp-story" src="https://cdn.ampproject.org/v0/amp-story-1.0.js"></script>
    <script async custom-element="amp-audio" src="https://cdn.ampproject.org/v0/amp-audio-0.1.js"></script>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
    <style amp-boilerplate>
      body {
        -webkit-animation: -amp-start 8s steps(1,end) 0s 1 normal both;
        -moz-animation: -amp-start 8s steps(1,end) 0s 1 normal both;
        -ms-animation: -amp-start 8s steps(1,end) 0s 1 normal both;
        animation: -amp-start 8s steps(1,end) 0s 1 normal both
      }

      @-webkit-keyframes -amp-start {
        from {
          visibility: hidden
        }

        to {
          visibility: visible
        }
      }

      @-moz-keyframes -amp-start {
        from {
          visibility: hidden
        }

        to {
          visibility: visible
        }
      }

      @-ms-keyframes -amp-start {
        from {
          visibility: hidden
        }

        to {
          visibility: visible
        }
      }

      @keyframes -amp-start {
        from {
          visibility: hidden
        }

        to {
          visibility: visible
        }
      }
    </style>
    <style amp-custom>
      amp-story {
        font-family: 'Roboto', sans-serif;
        color: #fff;
      }

      .caption {
        font-size: 2em;
        line-height: 1.4em;
        font-weight: bold;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        text-align: center;
      }

      amp-story-grid-layer.center {
        align-items: center;
        justify-content: center;
      }
    </style>
    <title>Lose Weight Naturally</title>
  </head>

  <body>
    <amp-story standalone
      title="Lose Weight Naturally"
      publisher="LoseWeightYes"
      publisher-logo-src="https://loseweightyes.shop/logo.png"
      poster-portrait-src="https://loseweightyes.shop/poster.jpg">

      <!-- Página 1 -->
      <amp-story-page id="page1" auto-advance-after="10s">
        <amp-story-grid-layer template="fill">
          <amp-img src="https://loseweightyes.shop/images/3ABC.png"
                   layout="fill"
                   alt="Weight loss transformation image">
          </amp-img>
        </amp-story-grid-layer>

        <amp-story-grid-layer template="vertical" class="center">
          <div class="caption">
            Until I discovered a natural and sustainable way to lose weight...<br><br>
            TRANSFORM YOUR BODY<br><br>
            No crazy diets. No extreme workouts.<br>
            Just a healthy, lasting change.
          </div>
        </amp-story-grid-layer>

        <!-- Narração -->
        <amp-audio autoplay>
          <source src="https://yourdomain.com/audio/narration-page1.mp3" type="audio/mpeg">
        </amp-audio>

        <!-- Música de fundo -->
        <amp-audio autoplay loop>
          <source src="https://yourdomain.com/audio/background-music.mp3" type="audio/mpeg">
        </amp-audio>
      </amp-story-page>

    </amp-story>
  </body>
</html>