* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background-color: #0f0f0f; /* negro elegante, no puro */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e6e6e6; /* blanco suave */
}

.mantenimiento {
  display: flex;
  flex-direction: column;
  align-items: center;      /* centra horizontalmente */
  justify-content: center;  /* centra verticalmente */
  text-align: center;
  margin: 20px;
  
}

.logo {
  max-width: 120px;
  margin-bottom: 10px;
}

h2 {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 400;
  color: #cccccc;
}

.mensaje {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #bdbdbd;
}
.linea {
  width: 40px;
  height: 4px;
  background-color: #cccccc; /* gris suave */
  margin-bottom: 40px;
}

.info p {
  margin-bottom: 8px;
}

.info a {
  text-decoration: none;
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 300;
}

.info a:hover {
  opacity: 0.6;
}

.social {
  margin: 26px 0;
}

.social a {
  color: #e6e6e6;
}

.social a:hover {
  opacity: 0.6;
}

.estudios {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #cccccc;
  margin-top: 10px;
}