*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:#05070c;
  color:white;
  overflow:hidden;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.maintenance{
  height:100vh;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;

  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url("./image.jpeg")
    center center / cover no-repeat;
}

/* overlay suave */
.overlay{
  position:absolute;
  inset:0;
  backdrop-filter: blur(2px);
}

/* contenido */
.content{
  position:relative;
  text-align:center;
  max-width:800px;
  padding:20px;
}

/* TITULO EMPRESA */
h1{
  font-size:18px;
  letter-spacing:3px;
  color:#5dade2;
  margin-bottom:20px;
  font-weight:600;
}

/* línea corporativa */
.line{
  width:120px;
  height:3px;
  background:#5dade2;
  margin:0 auto 25px auto;
}

/* TITULO PRINCIPAL */
h2{
  font-size:56px;
  font-weight:700;
  margin-bottom:20px;
}

/* textos */
p{
  font-size:20px;
  line-height:1.6;
  opacity:.9;
}

.small{
  margin-top:10px;
  font-size:16px;
  opacity:.7;
}

/* estado */
.status{
  margin-top:30px;
  display:inline-block;
  padding:10px 20px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:30px;
  font-size:14px;
  background:rgba(255,255,255,.05);
  color:#7bed9f;
}

/* reloj */
.time{
  margin-top:20px;
  font-size:14px;
  opacity:.6;
}

/* ===== CONTACTO ===== */
.contact{
  margin-top:30px;
  padding:20px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  background:rgba(255,255,255,.05);
}

.contact-title{
  font-size:15px;
  margin-bottom:15px;
  opacity:.85;
  line-height:1.6;
}

.contact-item{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin:8px 0;
  font-size:16px;
}

.contact-item i{
  color:#5dade2;
  width:20px;
}

.contact-item a{
  color:white;
  text-decoration:none;
}

.contact-item a:hover{
  color:#5dade2;
}

/* RESPONSIVE */
@media(max-width:768px){

  h2{
    font-size:34px;
  }

  p{
    font-size:16px;
  }

  .contact{
    margin-top:20px;
    padding:15px;
  }

}