/** Shopify CDN: Minification failed

Line 46:15 Expected identifier but found whitespace
Line 46:17 Unexpected "{"
Line 46:26 Expected ":"

**/
 .full-background-section {
    position: relative;
    height: 80vh; /* Ajusta la altura según sea necesario */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el fondo */
  }

  .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5); /* Color de superposición */
  }

  .text-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    text-align: {{ section.settings.text_alignment }};
  }

  h2 {
    margin-bottom: 20px;
  }

  .description {
    font-size: 18px;
    line-height: 1.6;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .text-content {
      max-width: 90% !important; /* Asegura que el texto no sea demasiado ancho en móviles */
    }

    h2 {
      font-size: 28px !important; /* Tamaño de título ajustado para móviles */
    }

    .description {
      font-size: 16px;
    }

    .full-background-section {
      height: 60vh; /* Ajusta la altura para móviles */
    }
  }