/* Estilo del botón */
.btn-img-text {
  /*background: linear-gradient(135deg, #0a8044, #024624);*/
  color: #086a00;
  border: 1px solid #047d0026;
  /*border: none;*/
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  text-align: center;
}
.btn-img-text img {
  width: 50px;
  height: 50px;
  border-radius: 10%;
  object-fit: cover;
}
.btn-img-text:hover,
.btn-img-text:focus {
  /*background: linear-gradient(135deg, #0cbf65, #057a3a);*/
  background: linear-gradient(135deg, #5757575e, #00ff74);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: scale(1.05);
  /*color: #fff;*/
  color: #570000;
  -webkit-animation: color-item 1s !important;
  animation: color-item 1s !important;
  box-shadow: 0 0 0 0.2em rgba(0, 94, 19, 0.2) !important;
  border: none !important;
  filter: grayscale(90%) !important;
}
/* Para pantallas pequeñas: centrado */
@media (max-width: 576px) {
  .btn-img-text {
    width: 100%;
    justify-content: start;
  }
}


.btnsub:hover, .btnsub:focus {
  -webkit-animation: color-item 1s !important;
  animation: color-item 1s !important;
  box-shadow: 0 0 0 0.2em rgba(0, 94, 19, 0.2) !important;
  border: none !important;
  filter: grayscale(90%) !important;
}
.btnsub:hover {
  background: #FEFEFE !important;
  transform: translateY(-10px) !important;
  transition: all 0.3s ease-in-out 0s !important;
  box-shadow: 0px 0 60px 0 rgba(79, 16, 16, 0.09) !important;
}