/* proyectoDevOps.css */
:root{
--bg:#0f1724; --card:#0b1220; --muted:#9aa4b2; --accent:#4f9cff; --accent-2:#6ee7b7; --white:#e6eef6;
}
*{box-sizing:border-box}
body{font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial; margin:0; background:linear-gradient(180deg,#071024 0%, #081223 100%); color:var(--white)}
header.top{padding:28px 20px 6px}
header h1{margin:0;font-size:28px}
.subtitle{color:var(--muted);margin-top:6px}
.container{max-width:1000px;margin:18px auto;padding:20px}
.summary{display:flex;gap:16px;align-items:center;justify-content:space-between;margin-bottom:18px}
.metric{flex:1}
.progress-wrap{background:#071227;border-radius:12px;padding:6px}
.progress-bar{background:linear-gradient(90deg,var(--accent),var(--accent-2));height:36px;border-radius:8px;padding:6px 12px;display:flex;align-items:center;font-weight:600}
.actions{display:flex;gap:8px}
button{background:#0b2a48;border:1px solid rgba(255,255,255,0.04);color:var(--white);padding:8px 12px;border-radius:8px;cursor:pointer}
button:hover{transform:translateY(-2px)}
.roadmap{display:grid;grid-template-columns:1fr;gap:14px}
.phase{background:rgba(255,255,255,0.03);border-radius:12px;padding:14px}
.phase-header{display:flex;align-items:center;justify-content:space-between}
.phase-header h2{font-size:18px;margin:0}
.phase-progress{color:var(--muted);font-size:14px}
.phase-body{margin-top:12px}
.phase-body h4{margin:8px 0 6px;color:var(--accent)}
.tasks{list-style:none;padding:0;margin:0 0 8px}
.tasks li{padding:6px 0;border-bottom:1px dashed rgba(255,255,255,0.02)}
.tasks li label{cursor:pointer}
.exercises li{font-weight:600}
.footer{text-align:center;color:var(--muted);margin-top:22px;padding-bottom:22px}
@media(min-width:900px){.roadmap{grid-template-columns:1fr 1fr}}

