.servicios-seo {
    display: flex;
    flex-wrap: wrap; /* permite que bajen a la siguiente línea */
    gap: 10px; /* espacio entre items */
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

/*.servicios-seo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
}*/

.servicios-seo li {
    background: #f2f2f2;
    border-radius: 20px;
    padding: 8px 14px;
    transition: all 0.2s ease;
}

.servicios-seo li a {
    text-decoration: none;
    color: #038C8C;
    font-size: 14px;
}

.servicios-seo li:hover {
    background: #038C8C;
}

.servicios-seo li:hover a {
    color: #fff;
}

.textoa{
  width: 90%;
  margin-top: 5px;
  text-align: right;
}
.textoa span{
  color:#f28705;
  font-size: 28px;
  padding: 10px 0px 0px 10px;
}

.textob{
  width: 95%;
  margin-top: 5px;
}
.textob span{
 color:#F28705;
 font-size: 28px;
 padding: 10px 0px 0px 25px; 
}

.lomasv{
  margin-left: 10px;
  color: #F28705;
  font-weight: 800;
}


/*Galeria de tarjetas*/
.t-contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.fila {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.elproveedor {
  /* Estilos para el elemento de nombre */
  text-align: right;
    margin-bottom: 0px;
    font-size: 1em;
    font-weight: bold;
    color: #0D5363;
    margin-top: -18px;
    margin-right: 10px;
}

.small {
  width: 287px;
  margin: 10px;
}

.image__img {
  max-width: 100%;
}

.image__img__v{
   display: block;
   width: 95%;
   max-width: 200px;
   height: 364px;
}

.image__img__dp{
   display: block;
   width: 95%;
   max-width: 300px;
   height: auto;
}

.image__title{
  font-size: 1.5em;
  font-weight: bold;
}
/*Galeria de tarjetas horizontales */

/* Para pantallas con un ancho menor a 768px */
@media (max-width: 767px) {

 .franja-row .col-f:nth-child(1) {
    text-align: left;
  }

  .textoa {
    width: 100%;
  }

  .textoa span{
    font-size: 14px;
  }

  .textob span {
    font-size: 12px;
    padding: 10px 0px 0px 9px;
  }

}

/* Para pantallas con un ancho mayor a 768px */
@media (min-width: 767px) {
    .franja-row .col-f:nth-child(1) {
        text-align: right;
      }

      .textob {
        width: 100%;
      }

      .textoa span{
        font-size: 18px;
      }

      .textob span {
        font-size: 18px;
        margin-left: 100px;
      }
}

