.productos-mobile {
  padding: 2rem 1rem;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.productos-mobile h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.productos-mobile h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #000;
}

.card-producto {
  max-width: 400px;
  margin: 0 auto 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-producto:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card-body-producto {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: #333;
}

.card-body-producto img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.card-body-producto h3 {
  color: #1a73e8;
  margin-bottom: 0.75rem;
}

.card-body-producto p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

@media screen and (max-width: 480px) {
  .card-body-producto {
    padding: 1.5rem 1rem;
  }

  .card-body-producto img {
    width: 50px;
    height: 50px;
  }
}