* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maintenance-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease;
}

.maintenance-container img {
  width: 180px;
  margin-bottom: 30px;
}

.lafico-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00bcd4;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-note {
  font-size: 0.9rem;
  color: #999;
  margin-top: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .maintenance-container {
    padding: 35px 25px;
  }

  .title {
    font-size: 1.5rem;
  }
}
