.feature-item {
  display: flex;
  flex-direction: row;      /* Imagen y texto en línea */
  align-items: center;      /* Alinea verticalmente al centro */
  gap: 10px;                /* Espacio entre imagen y texto */
  margin-bottom: 14px;
}

.feature-img {
  width: 85px;
  height: auto;
  margin-bottom: 4px;
  opacity: 0.9;
}


/* ----- Estilos SOLO PARA MÓVILES ----- */
@media (max-width: 600px) {

  .feature-item {
    align-items: center;        /* centrado en móvil */
    text-align: center;
    margin-bottom: 14px;        /* más aire */
  }

  .feature-img {
    width: 80px;                /* un poquito más grande para dedos y lectura */
    margin-bottom: 10px;
    opacity: 1;
  }

  .features-list {
    padding-left: 0 !important;  /* quita padding lateral */
  }
}
