/* ================================
   BOTONES PRINCIPALES
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 48px;
  border-radius: 10px;

  font-size: 22px;
  font-weight: 400;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

/* Llamar */
.btn-call {
  background-color: #f2b233;
  color: #ffffff;
}

.btn-call:hover {
  background-color: #d99d2a;
}

/* WhatsApp */
.btn-whatsapp {
  background-color: #f2b233;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #d99d2a;
}