*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color:white;
  text-align:center;
}

.wrapper{
  background: rgba(255,255,255,0.05);
  padding:40px;
  border-radius:20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  max-width:600px;
  width:90%;
}

.logo-container{
  margin-bottom:20px;
}

.logo{
  width:180px;
  max-width:100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0px); }
}

.content h1{
  font-size:32px;
}

.content h1 span{
  color:#f97316;
}

.content h2{
  margin-top:10px;
  font-size:20px;
  color:#facc15;
}

.content p{
  margin-top:15px;
  font-size:15px;
  color:#cbd5e1;
}

.progress-box{
  margin-top:25px;
  height:10px;
  width:100%;
  background: rgba(255,255,255,0.1);
  border-radius:20px;
  overflow:hidden;
}

.progress-bar{
  height:100%;
  width:60%;
  background: linear-gradient(90deg, #f97316, #ef4444);
  animation: loading 3s infinite linear;
}

@keyframes loading{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(100%); }
}

.contacto{
  margin-top:20px;
  font-weight:bold;
  color:#f97316;
}

footer{
  position:absolute;
  bottom:15px;
  font-size:13px;
  color:rgba(255,255,255,0.4);
}
