/* assets/css/style.css (ALTERADO: remove estilo "box" do DR. WEB, vira texto simples) */
:root{
  --bg:#070708;
  --card: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.10);
  --yellow:#ffd400;
  --yellow2:#fff06b;
  --white:#fff;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --shadow: 0 18px 65px rgba(0,0,0,.60);
  --r: 22px;
  --rbtn: 999px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, "Noto Sans", "Liberation Sans", sans-serif;
  background:
    radial-gradient(1200px 700px at 50% -20%, rgba(255,212,0,.18), transparent 55%),
    radial-gradient(900px 600px at 10% 10%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 14px;
}

.wrap{ width:min(520px, 100%); }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 260px at 50% 0%, rgba(255,212,0,.22), transparent 62%),
    radial-gradient(380px 240px at 85% 25%, rgba(255,255,255,.07), transparent 58%);
  pointer-events:none;
}

.top{
  padding: 26px 18px 10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 12px;
  position:relative;
  z-index:1;
}

.logo{
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.14);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.55);
}

.logo img{
  width: 90%;
  height: 90%;
  object-fit:contain;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

.handle{
  margin: 2px 0 0;
  font-size: 22px;
  line-height:1.1;
  font-weight: 900;
  letter-spacing: .2px;
}

.mini{ display:flex; gap: 10px; }

.mini-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--white);
  display:grid;
  place-items:center;
  text-decoration:none;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.mini-btn:hover{
  transform: translateY(-2px) scale(1.03);
  background: rgba(255,212,0,.10);
  border-color: rgba(255,212,0,.42);
}
.mini-btn svg{ width:20px; height:20px; }

.buttons{
  padding: 14px 16px 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
  position:relative;
  z-index:1;
}

.btn{
  --bgbtn: rgba(255,255,255,.04);
  --bd: rgba(255,255,255,.12);
  --fg: var(--text);

  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding: 16px 16px;
  border-radius: var(--rbtn);
  background: var(--bgbtn);
  border: 1px solid var(--bd);
  color: var(--fg);
  text-decoration:none;
  box-shadow: 0 14px 24px rgba(0,0,0,.35);

  transition:
    transform .20s var(--ease),
    box-shadow .20s var(--ease),
    border-color .20s var(--ease),
    background .20s var(--ease);
}

.btn:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px rgba(0,0,0,.50);
  border-color: rgba(255,212,0,.40);
}

.btn:active{ transform: translateY(-1px) scale(1.01); }

.btn-left{ display:flex; align-items:center; gap: 12px; min-width: 0; }

.btn-ic{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--yellow);
  flex: 0 0 auto;
}
.btn-ic svg{ width: 20px; height: 20px; }

.btn-text{ display:flex; flex-direction:column; align-items:flex-start; gap: 3px; min-width: 0; }
.btn-text strong{
  font-size: 14px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.btn-text small{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.btn-arrow{
  font-size: 26px;
  line-height: 1;
  color: rgba(255,255,255,.85);
  padding-left: 10px;
}

.btn-primary{
  --bgbtn: linear-gradient(180deg, var(--yellow), var(--yellow2));
  --bd: rgba(0,0,0,.85);
  --fg: #0b0b0c;
}
.btn-primary .btn-text strong{ color:#0b0b0c; }
.btn-primary .btn-text small{ color: rgba(0,0,0,.72); }
.btn-primary .btn-arrow{ color: rgba(0,0,0,.85); }
.btn-primary .btn-ic{
  background: rgba(0,0,0,.92);
  border-color: rgba(0,0,0,.92);
  color: var(--yellow);
}

.btn-outline{ background: rgba(255,255,255,.03); }

/* ✅ RODAPÉ */
.foot{
  padding: 14px 16px 18px;
  position:relative;
  z-index:1;
}

.line{
  height:1px;
  background: rgba(255,255,255,.10);
  margin-bottom: 12px;
}

.copy{
  text-align:center;
  font-size: 12px;
  color: rgba(255,255,255,.70);
  margin-bottom: 8px;
}

/* ✅ NOVO: texto simples com link sem underline/azul */
.dev-text{
  text-align:center;
  font-size: 12px;
  color: rgba(255,255,255,.74);
  line-height: 1.5;
}

.dev-link{
  color: rgba(255,255,255,.88);
  text-decoration: none;          /* sem underline */
  border-bottom: 1px dashed rgba(255,212,0,.35); /* “sutil” e elegante */
  padding-bottom: 2px;
  margin-left: 6px;
  transition: color .18s var(--ease), border-color .18s var(--ease), filter .18s var(--ease);
}

.dev-link:hover{
  color: var(--yellow);
  border-bottom-color: rgba(255,212,0,.85);
  filter: brightness(1.02);
}

@media (max-width: 420px){
  .handle{ font-size: 20px; }
  .buttons{ padding: 12px 12px 16px; }
  .btn{ padding: 14px 14px; }
  .btn-ic{ width: 42px; height: 42px; }
}
