.process-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.step {
  text-align: center;
  max-width: 120px;
}

.step i {
  font-size: 30px;
  color: #0b2a4a;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
}

/* BOTÓN FLOTANTE HOME */
.btn-home {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: #0b2a4a;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999;
}

/* Hover */
.btn-home:hover {
  background: #164d80;
  transform: scale(1.1);
}

/* Click */
.btn-home:active {
  transform: scale(0.95);
}

.cta {
  text-align: center;
  margin: 20px;
}

/* BOTÓN FLOTANTE PEDIDO */
.btn-pedido-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366; /* estilo WhatsApp */
  color: white;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: 0.3s;
}

/* Hover */
.btn-pedido-float:hover {
  transform: scale(1.1);
}

/* Click */
.btn-pedido-float:active {
  transform: scale(0.95);
}

.btn-pedido-float i {
  margin: 0;
}

/* Boton Principal */
.btn-cta {
  display: block;
  width: 90%;
  max-width: 350px;
  margin: 25px auto;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;

  padding: 18px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;

  border-radius: 14px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
}

.btn-cta.disabled {
  background: #ccc;
  pointer-events: none;
  opacity: 0.6;
}

.btn-cta i,
.btn-pedido-float i {
  margin-right: 8px;
}
