.contenedor-general-tc {
  width: 100%;
  max-width: 1440px;
  padding: 0 150px;
  display: flex;
  justify-content: space-between;

}

.texto-de-tc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.gradient-button {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  
  
  padding: 10px 30px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0070B2 0%, #00A6BD 100%);
  
  color: #ffffff;
  text-decoration: none;
  font-family: Helvetica;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  
}

.tarjetas-tienda-wrapper {
    width: 100%;
    max-width: 1440px;
    padding: 0 150px;
}
.tarjetas-tienda-wrapper h2 {
  color: #0070B2;
  font-family: Helvetica;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 272.727% */
  margin: 0;
}
.tarjetas-tienda-container {
    overflow: hidden;
    
    
  }
  
  
  
  .tarjetas-tienda {
    display: flex;
    overflow-x: scroll; /* Permitir desplazamiento horizontal */
    scroll-snap-type: x mandatory; /* Desplazamiento suave */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding: 20px 10px;
    user-select: none;
  }
  
  .tarjetas-tienda::-webkit-scrollbar {
    display: none;  /* Ocultar barra de desplazamiento en Chrome, Safari y Opera */
  }
  
  .tarjeta-tienda-item {
    
    flex: 0 0 auto;
    width: 366.361px;
    height: 200.65px;
    padding: 15px 20px;
    border-radius: 19.965px;
    background: #fff;
    box-shadow: 4.991px 4.991px 19.965px 0px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
  }
  
  .tarjeta-tienda-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .tarjeta-tienda-content {
    display: flex;
    flex-direction: column;
    
  }
  
  .tarjeta-tienda-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
  }
  
  .tarjeta-tienda-content p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
  }
  
  .tarjeta-tienda-content img {
    width: 31.944px;
    height: 31.944px;
  }
  
  .tarjeta-tienda-footer {
    display: flex;
    align-items: center;
  }
  
  .tarjeta-tienda-button {
    display: flex;
    height: 32.943px;
    padding: 9.983px 14.974px;
    align-items: center;
    justify-content: center;
  
    font-size: 14px;
    color: #fff;
    border-radius: 9.983px;
    background: #0070b2;
    border: none;
  
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  
  
  .tarjeta-tienda-icon {
    margin-right: 8px;
    font-size: 16px;
    background-color: #e0f7fa;
    padding: 5px;
    border-radius: 50%;
    color: #007bff;
  }
  
  .icono-boton-container {
    display: flex;
    gap: 10px;
  }
  .contenedor-titulo-flecha {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
  }
  .contenedor-titulo-flecha img {
    width: 10px;
    height: 10px;
  }

  @media only screen and (max-width: 768px) {
    .tarjetas-tienda-wrapper {
      padding: 0 20px;
      
    }
    .tarjeta-tienda-item {
      
    }

    .tarjeta-tienda-content {
        width: 300px;
        margin-right: 0;
    }
    .contenedor-general-tc {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        padding: 0 20px;
        gap: 20px;
    }
}