/** Shopify CDN: Minification failed

Line 42:0 Unexpected "<"
Line 67:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.image-with-text {
    text-align: center; /* Alinea el texto y el botón en el centro */
  }

  .image-with-text .text-content {
    max-width: var(--image-with-text-content-max-width);
    margin: 0 auto;
    padding: 40px 20px; /* Añade un padding generoso para que el texto no toque los bordes */
    background-color: rgba(255, 255, 255, 0.9); /* Fondo semitransparente para mejorar la legibilidad */
  }

  .image-with-text h2 {
    font-size: var(--titulo-size);
    text-transform: uppercase; /* Título en mayúsculas */
    margin-bottom: 20px; /* Espacio debajo del título */
  }

  .image-with-text .text-content p {
    font-size: var(--texto-size);
  }

  .image-with-text .button {
    display: inline-block; /* Hace que el botón sea un bloque en línea */
    margin-top: 20px; /* Espacio encima del botón */
    padding: 10px 25px;
    background-color: #333; /* Fondo oscuro para el botón */
    color: white; /* Texto blanco para el botón */
    text-transform: uppercase; /* Texto del botón en mayúsculas */
    text-decoration: none;
    border: none;
    border-radius: 2px;
  }
<style>
  .top-carousel-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .top-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    width: 100%;
    overflow-x: auto;
  }

  .top-carousel__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 220px;
  }

  .top-carousel::-webkit-scrollbar {
    display: none;
  }
</style>