:root{
  --brand:#29b6e8;        /* azul claro de títulos */
  --ink:#1a1a1a;
  --muted:#6d7a86;
  --bg:#f4f7fb;
  --card:#ffffff;
  --border:rgba(12, 36, 56, .10);
  --shadow:0 18px 60px rgba(0, 30, 60, .10);
  --r:14px;
  --max:980px;
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.75;
}

.wrap{
  width:min(var(--max), calc(100% - 32px));
  margin:56px auto 64px;
}

.hero{
  text-align:center;
  padding:10px 0 28px;
}

.hero h1{
  margin:0 0 10px;
  font-size:44px;
  letter-spacing:-.02em;
  font-weight:800;
}

.hero h2{
  margin:0 0 26px;
  color:var(--brand);
  font-weight:800;
  letter-spacing:.10em;
  font-size:26px;
}

.hero p{
  max-width:860px;
  margin:0 auto;
  color:var(--muted);
  font-size:15.5px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:26px 26px;
  margin:16px 0;
}

.card h3{
  margin:0 0 10px;
  color:var(--brand);
  font-size:16px;
  letter-spacing:.02em;
  font-weight:800;
  text-transform:uppercase;
}

.card .n{
  color:var(--ink);
  margin-right:8px;
}

p{ margin:0 0 14px; color:var(--muted); }

ul{
  margin:10px 0 16px 18px;
  padding:0;
  color:var(--ink);
}

li{
  margin:10px 0;
  color:var(--ink);
  font-weight:600;
}

.note{
  color:var(--muted);
  font-weight:500;
}

a{
  color:var(--brand);
  text-decoration:none;
  font-weight:700;
}

a:hover{ text-decoration:underline; }

.nowrap{ white-space:nowrap; }

.footer{
  text-align:center;
  margin-top:26px;
  padding-top:22px;
  color:var(--muted);
}

.footer p{ margin:6px 0; }

.footer .muted{
  opacity:.8;
}

/* Responsive */
@media (max-width: 560px){
  .hero h1{ font-size:34px; }
  .hero h2{ font-size:20px; }
  .card{ padding:20px; }
}
