
/* POPUP MATRÍCULAS */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.popup-box{
  background:#fff;
  border-radius:24px;
  padding:28px;
  max-width:420px;
  width:90%;
  text-align:center;
  position:relative;
  animation:scaleIn .4s ease;
}
.popup-img{
  width:100%;
  border-radius:18px;
  margin-bottom:20px;
}
.popup-btn{
  display:inline-block;
  background:#25D366;
  color:#fff;
  padding:14px 28px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
}
.popup-close{
  position:absolute;
  top:14px;
  right:16px;
  border:none;
  background:none;
  font-size:26px;
  cursor:pointer;
}
@keyframes scaleIn{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}
