:root{
  --bg:#0d0d0d;
  --card:#0f1720;
  --muted:#9aa4b2;
  --accent:#10b981; /* verde */
  --glass: rgba(255,255,255,0.03);
  --radius:12px;
  --text:#e6eef6;
}

.software-card { 
  padding: 24px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.card {
  width:100%;
  max-width:820px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), var(--glass));
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(2,6,23,0.6);
  overflow: hidden;
  color:var(--text);
  border: 1px solid rgba(255,255,255,0.04);
}

.card-header {
  display:flex;
  gap:16px;
  align-items:center;
  padding:18px 20px;
  border-bottom:1px solid rgba(255,255,255,0.03);
}

.card-logo{
  width:72px;
  height:72px;
  object-fit:contain;
  border-radius:10px;
  background:linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:8px;
}

.card-title h3 {
  margin:0;
  font-size:1.25rem;
  line-height:1;
}

.tag{
  display:block;
  color:var(--muted);
  font-size:0.8rem;
  margin-top:6px;
}

.badge{
  margin-left:auto;
  background: rgba(16,185,129,0.12);
  color: var(--accent);
  padding:6px 10px;
  border-radius:999px;
  font-weight:600;
  font-size:0.8rem;
}

.card-body{
  padding:20px;
  display:grid;
  gap:14px;
}

.desc{
  margin:0;
  color:var(--text);
  line-height:1.5;
}

.section h4{
  margin:0 0 6px 0;
  font-size:0.98rem;
}

.muted{ color:var(--muted); margin:0; }
.small{ font-size:0.86rem; }

.actions{
  display:flex;
  gap:10px;
  margin-top:8px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding:10px 14px;
  border-radius:10px;
  background:var(--accent);
  color:#021014;
  font-weight:700;
  font-size:0.95rem;
  box-shadow: 0 6px 18px rgba(16,185,129,0.12);
}

.btn-secondary{
  display:inline-block;
  text-decoration:none;
  padding:10px 14px;
  border-radius:10px;
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,0.06);
  font-weight:600;
}

.btn-outline{
  background:transparent;
  border:1px dashed rgba(255,255,255,0.04);
  padding:8px 12px;
  border-radius:8px;
  color:var(--muted);
  cursor:pointer;
}

.meta { color:var(--muted); font-size:0.92rem; padding-top:6px; border-top:1px solid rgba(255,255,255,0.02); }

@media (max-width:640px){
  .card-header{ gap:12px; padding:14px; }
  .card-logo{ width:56px; height:56px; }
  .card { margin: 0 12px; }
}