/* styles.css - Página de mantenimiento ESAT */
/* Ajusta colores, logo y contacto según tus datos */

:root{
  --bg: #f6f8fb;
  --card: #ffffff;
  --accent: #007bff;    /* color primario */
  --muted: #6b7280;
  --text: #1f2937;
  --shadow: 0 10px 30px rgba(18,24,36,0.06);
  --radius: 12px;
  --maxw: 920px;
  --gap: 1rem;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg,var(--bg),#eef3fb 60%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Layout */
.wrap{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:48px 20px;
  gap:24px;
}

/* Brand header */
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:6px;
  opacity:0;
  transform:translateY(6px);
  animation:fadeIn .35s ease-out .05s forwards;
}
.logo{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:8px;
  background:#fff;
  padding:8px;
  box-shadow:var(--shadow);
}
.brand-text h1{
  margin:0;
  font-size:18px;
  letter-spacing:0.2px;
}
.brand-text .muted{
  font-size:13px;
  color:var(--muted);
  margin-top:4px;
}

/* Card */
.card{
  width:100%;
  max-width:var(--maxw);
  background:var(--card);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  text-align:center;
  border:1px solid rgba(15,23,42,0.03);
  opacity:0;
  transform:translateY(10px);
  animation:fadeIn .35s ease-out .12s forwards;
}

.card h2{
  margin:0 0 12px 0;
  font-size:26px;
}
.card .lead{
  color:var(--muted);
  margin:0 0 18px 0;
  font-size:15px;
  line-height:1.5;
}

/* Buttons */
.actions{display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:14px}
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  transition:transform .12s ease, box-shadow .12s ease;
  border:1px solid transparent;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
  box-shadow: 0 6px 18px rgba(0,123,255,0.14);
}
.btn.primary:hover{transform:translateY(-3px)}
.btn.outline{
  background:transparent;
  color:var(--accent);
  border-color: rgba(0,123,255,0.12);
}
.btn.outline:hover{transform:translateY(-3px)}

/* Note text */
.note{
  color:var(--muted);
  font-size:13px;
  margin:10px 0;
}

/* Details / small */
.details{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

/* Footer */
.footer{opacity:0; transform:translateY(6px); animation:fadeIn .35s ease-out .18s forwards}
.footer small{color:var(--muted)}

/* Small screens tweaks */
@media (max-width:640px){
  .card{padding:20px}
  .brand{gap:12px}
  .logo{width:56px;height:56px}
  .card h2{font-size:20px}
}

/* Animations */
@keyframes fadeIn {
  to { opacity:1; transform:none; }
}
