/* Layout dark premium (estilo do print) */
:root{
  --bg0:#07101a;
  --bg1:#0b1a2a;
  --card: rgba(20, 30, 43, 0.74);
  --card2: rgba(23, 34, 50, 0.78);
  --stroke: rgba(255,255,255,0.10);

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);

  --green:#22c55e;
  --green2:#34d399;

  --radius: 22px;
  --shadow: 0 18px 45px rgba(0,0,0,0.30);
}

*{ 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(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(34,197,94,0.18), transparent 55%),
    radial-gradient(900px 600px at 85% 30%, rgba(20,184,166,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

.container{
  max-width: 760px;
  margin: 18px auto 40px;
  padding: 0 16px;
}

.hero{
  background: linear-gradient(180deg, rgba(16, 33, 43, 0.78), rgba(10, 20, 32, 0.74));
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: 16px 16px 14px;
  overflow:hidden;
}

.hero-row{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}

.avatar{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  overflow:hidden;
  flex: 0 0 auto;
  position: relative;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.avatar-fallback .avatar-fallback-icon{
  display:flex;
}

.avatar-fallback-icon{
  display:none;
  position:absolute;
  inset:0;
  align-items:center;
  justify-content:center;
  font-weight:800;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.85);
}

.hero h1{
  margin: 2px 0 6px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.hero h1 span{
  font-weight: 700;
  opacity: 0.9;
}

.subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta{
  text-decoration:none;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 180px;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease;
}

.cta-primary{
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #07101a;
  border-color: rgba(34,197,94,0.25);
  box-shadow: 0 18px 34px rgba(34,197,94,0.18);
}

.cta-ghost{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}

.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
  filter: brightness(1.02);
}

.panel{
  margin-top: 14px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.panel-head{
  padding: 14px 16px 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
}

.panel h2{
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.85;
}

.list{
  display:grid;
  gap: 12px;
  padding: 12px 12px 14px;
}

.item{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 14px 14px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.item:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border-color: rgba(34,197,94,0.25);
  background: rgba(255,255,255,0.08);
}

.ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.22);
  color: rgba(34,197,94,0.95);
  flex: 0 0 auto;
}

.ico svg{
  width: 22px;
  height: 22px;
}

.txt{
  display:flex;
  flex-direction:column;
  gap: 4px;
  min-width: 0;
}

.title{
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
}

.desc{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}

.pill{
  margin-left:auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-weight: 800;
  font-size: 13px;
}

.footer{
  margin-top: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  padding: 6px 2px;
}

/* ===== animação suave premium ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero{ animation: fadeUp 600ms ease-out both; }
.panel{ opacity:0; animation: fadeUp 700ms ease-out forwards; }
.panel:nth-of-type(1){ animation-delay: 80ms; }
.panel:nth-of-type(2){ animation-delay: 160ms; }
.panel:nth-of-type(3){ animation-delay: 240ms; }

@media (prefers-reduced-motion: reduce){
  .hero, .panel{ animation:none !important; opacity:1 !important; transform:none !important; }
  .cta, .item{ transition:none !important; }
}

@media (max-width: 420px){
  .hero h1{ font-size: 26px; }
  .cta{ width: 100%; }
}
