.multimedia-botones {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.boton-grupo {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.boton-multimedia {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f1f1f1;
  color: #333;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.boton-multimedia:hover {
  background-color: #e0e0e0;
}

.icono {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icono svg {
  vertical-align: middle;
}

.texto {
  display: inline-block;
}

/* Responsive */
@media (max-width: 600px) {
  .boton-grupo {
    flex-direction: column;
    align-items: center;
  }

  .boton-multimedia {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}