/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Expected identifier but found "%"
Line 18:20 Unexpected "{"
Line 18:29 Expected ":"
Line 18:36 Unexpected "{"
Line 24:20 Unexpected "{"
Line 24:29 Expected ":"
Line 25:20 Unexpected "{"
Line 25:29 Expected ":"
Line 26:20 Unexpected "{"
... and 11 more hidden warnings

**/
{%- style -%}
  /* remove qualquer respiro do container da section */
  #shopify-section-{{ section.id }} {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* remove respiros do wrapper do tema (caso existam) */
  #shopify-section-{{ section.id }} .section,
  #shopify-section-{{ section.id }} .page-width,
  #shopify-section-{{ section.id }} .gradient {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* container do vídeo sem "gaps" */
  #shopify-section-{{ section.id }} .moba-video-wrap {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
    height: 70vh;        /* ajuste: 60vh / 80vh / 100vh */
    min-height: 420px;   /* opcional */
  }

  /* vídeo cobrindo o container */
  #shopify-section-{{ section.id }} video.moba-video {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
  }
{%- endstyle -%}

<div class="moba-video-wrap">
  {{
    section.settings.video
    | video_tag:
      autoplay: true,
      loop: section.settings.enable_video_looping,
      muted: true,
      controls: false,
      playsinline: true,
      class: 'moba-video'
  }}
</div>

