* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: 'Manrope', sans-serif;
}

.maintenance {
  height: 100vh;
  background: #586FEA;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* LOGO ARRIBA */
.top-logo {
  position: absolute;
  top: 30px;          /* distancia del borde superior */
  left: 50%;
  transform: translateX(-50%);
}

.top-logo img {
  max-width: 320px;
  height: auto;
}

/* CONTENIDO CENTRADO */
.center-content {
  max-width: 600px;
  color: #ffffff;
}

h1 {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.6;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.primary {
  background: #ffffff;
  color: #586FEA;
}

.outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}