/* ======================================================
   BOTONES
====================================================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:2px 5px;
  font-size:10px;

  border-radius:12px;
  border:none;

  cursor:pointer;
  font-weight:bold;
  text-decoration:none;
}

.btn-primary{
  background:#7A0B12;
  color:#fff;
}

.btn-outline{
  border:2px solid #7A0B12;
  color:#7A0B12;

  border-radius:50px;
  padding:12px 26px;

  font-weight:600;
  transition:.3s ease;
}

.btn-outline:hover{
  background:#7A0B12;
  color:#fff;
}