/* Estilos base que ya tienes */
.manual-buttons {
  text-align: center;
  padding: 0.7rem;
  font-size: 23px;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;    
  margin-bottom: 3rem;
}

.brand-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem 2rem;
  min-width: 520px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.2s ease;
}

.brand-button:hover {
  background-color: #e0e0e0;
}

.brand-button img {
  width: 40px;
  height: auto;
}

.brand-button span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

/* Responsive para pantallas móviles */
@media (max-width: 600px) {
  .brand-button {
    min-width: auto;  /* quitar mínimo ancho fijo */
    width: 90%;       /* ancho casi completo del contenedor */
    padding: 1rem 1rem;
    gap: 0.5rem;
  }

  .brand-button img {
    width: 30px;      /* imagen un poco más pequeña */
  }

  .brand-button span {
    font-size: 1rem;  /* texto más pequeño */
  }

  .button-container {
    margin-top: 1rem;
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .manual-buttons {
    font-size: 18px;
    padding: 0.5rem;
  }
}
