/** Shopify CDN: Minification failed

Line 14:21 Expected identifier but found whitespace
Line 14:23 Unexpected "{"
Line 14:32 Expected ":"

**/


/* CSS from section stylesheet tags */
.banner-columns-section {
    margin: 0;
    padding: 0;
    background-color: {{ section.settings.background_color }};
  }

  .banner-columns-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  @media (min-width: 768px) {
    .banner-columns-wrapper {
      flex-direction: row;
    }
  }

  .banner-col {
    flex: 1;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 0;
  }

  /* Mantiene el aspecto 16:9 */
  .banner-col::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 = 9/16 = 56.25% */
  }

  .banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: #fff;
  }

  .banner-overlay h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
  }

  .banner-overlay p {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .banner-overlay .button {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
  }

  @media (max-width: 767px) {
    .banner-overlay h2 {
      font-size: 18px;
    }

    .banner-overlay p {
      font-size: 14px;
    }
  }