/* POPUP CONTACTO */
#contactOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:99999;
  padding:20px;
  backdrop-filter:blur(6px);
}

#contactBox{
  width:90%;
  max-width:540px;
  padding:28px;
  border-radius:14px;
  background:radial-gradient(circle at top,#3a0000 0,#090909 58%);
  border:2px solid #c00;
  color:#fff;
  text-align:center;
  box-shadow:0 0 30px #900;
  position:relative;
}

#contactClose{
  position:absolute;
  top:-15px;
  right:-15px;
  width:42px;
  height:42px;
  background:#fff;
  color:#000;
  border-radius:50%;
  cursor:pointer;
  font-size:24px;
  font-weight:bold;
  display:flex;
  align-items:center;
  justify-content:center;
}

#contactLogo{
  max-width:160px;
  margin-bottom:10px;
}

#contactForm input,
#contactForm textarea{
  width:100%;
  padding:12px;
  margin-top:12px;
  background:rgba(0,0,0,.85);
  color:#fff;
  border-radius:8px;
  border:1px solid #555;
}

#contactForm textarea{
  min-height:120px;
  resize:vertical;
}

.send-btn{
  width:100%;
  margin-top:16px;
  padding:13px;
  font-size:17px;
  font-weight:bold;
  color:#fff;
  background:#b00000;
  border:2px solid #fff;
  border-radius:8px;
  cursor:pointer;
  transition:.25s;
}

.send-btn:hover{
  background:#e00000;
  box-shadow:0 0 16px #f00;
}

#contactMsg{
  margin-top:14px;
  font-size:14px;
  color:#ddd;
  min-height:20px;
}
