/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 28:4 Unexpected "{"
Line 28:5 Expected identifier but found "%"
Line 30:4 Unexpected "{"
Line 30:5 Expected identifier but found "%"
Line 32:4 Unexpected "{"
Line 32:5 Expected identifier but found "%"
Line 96:4 Unexpected "{"
Line 96:5 Expected identifier but found "%"
Line 97:23 Expected identifier but found whitespace
... and 12 more hidden warnings

**/


/* CSS from section stylesheet tags */
<style>
  .image-wrapper {}
  .banner-content {
    position: relative;
    padding: 20px 40px;
    height: 550px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    {% if section.settings.active_margins %}
      margin: 50px auto;
    {% else %}
      margin: 0px auto;
    {% endif %}
    align-items: center;
    display: flex;
    overflow: hidden;
    justify-content: center;
  }
  .mid-banner-content {
    display: flex;
    align-items: center;      
  }
  .category {
    color: #8E8EA0;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
  }
  .decorative-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      #4A4A5C 50%,
      transparent 100%
    );
  }
  .decorative-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #4A4A5C;
    border-radius: 50%;
  }
  .mid-banner-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
  }
  .mid-banner-content h2 {
    color:#fff;
    font-weight: bold;
    max-width: 600px;
  }
  .banner-content::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    {% if section.settings.overlay_enable %}
      background-color: {{ section.settings.overlay_color | color_modify: 'alpha', section.settings.overlay_opacity }};
    {% endif %}
  }
</style>
<style>
  .slider-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }
  .video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio en desktop */
  }
  /* Estilos para el video de fondo */
  .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
  }
  .overlay {
    background-color: {{ settings.overlay_color }};
    opacity: {{ settings.overlay_opacity }};
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
  }
  .slider-video h2 {
    color: #fff;
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Roboto', sans-serif;
  }
  .slider-video h2 span {
    font-size: 22px;
    display: block;
    margin-top: 10px;
    line-height: 1.2;
  }
  
  /* Media queries para responsive */
  @media only screen and (max-width: 768px) {
    .slider-video h2 {
      font-size: 32px;
      width: 95%;
    }
    .slider-video h2 span {
      font-size: 18px;
      margin-top: 5px;
    }
    .video-container {
      padding-top: 100%; /* Formato cuadrado en tablets */
    }
  }
  
  @media only screen and (max-width: 480px) {
    .slider-video h2 {
      font-size: 24px;
      width: 90%;
      line-height: 1.2;
    }
    .slider-video h2 span {
      font-size: 16px;
      margin-top: 8px;
    }
    .video-container {
      padding-top: 177.77%; /* Formato vertical en móvil (16:9 invertido) */
      height: 600px; /* Altura fija para móvil */
      max-height: 80vh; /* Limitar altura en pantallas pequeñas */
    }
  }
</style>