/* =====================================================================
   Sultech Soluções — tela de links (links.html)
   Depende de css/style.css (fonte, tokens e reset).
   Regra da tela: nada de corte diagonal nos botões — tudo arredondado.
   ===================================================================== */

/* ---------- 1. tokens locais ---------- */
.lkp{
  --lk-w: 480px;              /* largura da coluna */
  --lk-card: 18px;            /* raio dos cartões */
  --lk-tile: 14px;            /* raio dos ícones */
  --lk-gap: .8rem;

  --lk-face:   linear-gradient(180deg, rgba(18,30,50,.92) 0%, rgba(10,18,32,.92) 100%);
  --lk-face-hi:linear-gradient(180deg, rgba(26,42,68,.96) 0%, rgba(14,24,42,.96) 100%);

  /* cores de marca, para os ícones originais */
  --br-wpp:  #25D366;
  --br-fb:   #1877F2;
  --br-tt:   #0B0B0B;

  background:var(--ink);
}

/* brilho de fundo: o mesmo clima do hero do site */
.lkp::before{
  content:"";
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(760px 420px at 50% -6%, rgba(47,212,242,.16), transparent 62%),
    radial-gradient(620px 520px at 50% 108%, rgba(18,87,245,.16), transparent 64%);
}
.lkp > *{ position:relative; z-index:1; }

.lk-col{ width:min(var(--lk-w), 100% - 2.2rem); margin-inline:auto; }

/* ---------- 2. faixa da marca ---------- */
.lk-band{
  background:linear-gradient(180deg, #0C1728 0%, #070C16 100%);
  border-bottom:1px solid var(--line-hi);
  padding:1.7rem 1rem 0;
}
.lk-band__in{
  display:flex; justify-content:center;
  padding-bottom:4.75rem;   /* folga para o avatar cavalgar a borda sem cobrir o logo */
}
.lk-band__logo{
  width:auto; height:34px; max-width:100%;
  /* brilho só em volta: aura aberta, sem clarear o traço da letra */
  filter:
    drop-shadow(0 0 16px rgba(47,212,242,.50))
    drop-shadow(0 0 38px rgba(47,212,242,.30))
    drop-shadow(0 10px 32px rgba(18,87,245,.26));
}

/* ---------- 3. identidade ---------- */
.lk-id{ text-align:center; padding-bottom:1.7rem; }

.lk-avatar{
  width:118px; height:118px;
  margin:-59px auto .95rem;      /* metade para cima: sobe na faixa */
  border-radius:50%;
  overflow:hidden;
  /* a foto do técnico é recortada com fundo transparente: o degradê entra atrás dele */
  background:radial-gradient(circle at 50% 26%, #16294A 0%, #0A1424 58%, #050912 100%);
  box-shadow:
    0 0 0 3px rgba(47,212,242,.85),
    0 0 0 9px rgba(4,6,11,.92),
    0 18px 46px -14px rgba(47,212,242,.55);
}
.lk-avatar img{
  width:100%; height:100%;
  border-radius:50%;
  object-fit:cover;
}

.lk-name{
  display:flex; align-items:center; justify-content:center; gap:.45rem;
  font-size:1.75rem; font-weight:800; line-height:1.15;
  color:#fff;
  margin:0 0 .45rem;
}
.lk-name svg{ width:22px; height:22px; flex:none; }

.lk-bio{
  color:var(--txt-dim);
  font-size:calc(var(--fs-base) * .92); line-height:1.45;
  max-width:34ch; margin:0 auto;
  text-transform:uppercase;
  letter-spacing:.07em;
}
.lk-bio span{ display:block; }

/* ---------- 4. redes sociais (topo, sem WhatsApp) ---------- */
.lk-soc{
  display:flex; justify-content:center; gap:.75rem;
  margin-top:1.35rem;
}
.lk-soc a{
  border-radius:16px;
  transition:transform .25s var(--ease);
}
.lk-soc a:hover{ transform:translateY(-3px); }
.lk-soc .tile{ width:56px; height:56px; border-radius:16px; }
.lk-soc .tile svg{ width:28px; height:28px; }

.lk-soc .tile--ig { box-shadow:0 12px 28px -12px rgba(214,36,159,.85); }
.lk-soc .tile--fb { box-shadow:0 12px 28px -12px rgba(24,119,242,.85); }
.lk-soc .tile--tt { box-shadow:0 12px 28px -12px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,255,255,.14); }

/* ---------- 5. lista de links ---------- */
.lk-list{
  display:flex; flex-direction:column; gap:var(--lk-gap);
  padding-bottom:1.15rem;
}

.lk{
  display:flex; align-items:center; gap:.85rem;
  padding:.8rem .9rem;
  min-height:78px;
  border:1px solid var(--line);
  border-radius:var(--lk-card);
  background:var(--lk-face);
  transition:transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}
.lk:hover, .lk:focus-visible{
  transform:translateY(-2px);
  background:var(--lk-face-hi);
  border-color:var(--line-hi);
  box-shadow:0 16px 34px -20px rgba(0,0,0,.9);
}
.lk:active{ transform:translateY(0); }

.lk__tx{ flex:1 1 auto; min-width:0; }
.lk__ttl{
  display:block;
  font-size:1.0625rem; font-weight:700; color:#fff; line-height:1.25;
}
.lk__sub{
  display:block; margin-top:.15rem;
  font-size:var(--fs-sm); color:var(--txt-dim); line-height:1.4;
  overflow-wrap:anywhere;   /* e-mail longo quebra em vez de invadir a seta */
}

.lk__go{
  width:30px; height:30px; flex:none;
  border-radius:50%;
  display:grid; place-items:center;
  background:rgba(255,255,255,.06);
  color:var(--txt-dim);
  transition:background .28s var(--ease), color .28s var(--ease), transform .28s var(--ease);
}
.lk__go svg{ width:15px; height:15px; }
.lk:hover .lk__go{ background:rgba(47,212,242,.16); color:var(--cyan); transform:translateX(2px); }

/* ---------- 6. ladrilhos de ícone ---------- */
.tile{
  width:54px; height:54px; flex:none;
  border-radius:var(--lk-tile);
  display:grid; place-items:center;
  overflow:hidden;
}
.tile svg{ width:28px; height:28px; }
.tile img{ width:78%; height:78%; object-fit:contain; }

/* marcas — cores originais */
.tile--wpp{ background:var(--br-wpp); color:#fff; }
.tile--fb { background:var(--br-fb);  color:#fff; }
.tile--ig {
  background:radial-gradient(circle at 28% 108%, #FDF497 0%, #FDF497 5%, #FD5949 45%, #D6249F 62%, #285AEB 92%);
  color:#fff;
}
.tile--tt { background:var(--br-tt); }
.tile--map{ background:#fff; }
.tile--mark{ background:#fff; }
.tile--tel{ background:linear-gradient(140deg, var(--cyan) 0%, var(--blue) 118%); color:#fff; }
.tile--mail{ background:linear-gradient(140deg, #2FD4F2 0%, #0E2350 130%); color:#fff; }
.tile--pix{ background:linear-gradient(140deg, #4DD9C0 0%, #1FA98F 100%); color:#052C25; }
.tile--port{
  position:relative;
  background:linear-gradient(155deg, #2FD4F2 0%, #1B4E9B 68%, #0E2350 100%);
  box-shadow:inset 0 0 0 1px rgba(47,212,242,.3);
}
.tile--port img{
  position:absolute; left:50%; top:-4px;
  width:auto; height:110px; max-width:none;
  object-fit:contain;
  transform:translateX(-50%);
}

/* ---------- 7. cartão do Pix ---------- */
.pix{
  border:1px solid var(--line);
  border-radius:var(--lk-card);
  background:var(--lk-face);
  padding:1.05rem .95rem 1.1rem;
}
.pix__head{ display:flex; align-items:center; gap:.85rem; }
.pix__tx{ min-width:0; }
.pix__lbl{
  display:block;
  font-size:var(--fs-xs); font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--txt-dim);
}
.pix__key{
  display:block; margin-top:.22rem;
  font-size:1.125rem; font-weight:800; color:#fff;
  letter-spacing:.01em;
  overflow-wrap:anywhere;
}
.pix__own{
  display:block; margin-top:.12rem;
  font-size:var(--fs-sm); font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:var(--txt-dim);
}

.pix__acts{ display:flex; flex-direction:column; gap:.6rem; margin-top:1rem; }

/* botões desta tela: arredondados, nunca cortados */
.lkbtn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  width:100%; min-height:52px; padding:.85em 1.2em;
  border-radius:999px;
  font-weight:700; font-size:var(--fs-base); line-height:1.2;
  text-align:center;
  transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.lkbtn svg{ width:1.2em; height:1.2em; flex:none; }
.lkbtn:hover{ transform:translateY(-2px); }
.lkbtn:active{ transform:translateY(0); }

.lkbtn--pri{
  background:linear-gradient(102deg, var(--cyan) 0%, #1FB4E8 48%, var(--blue) 130%);
  color:#03121B;
  box-shadow:0 14px 32px -14px rgba(47,212,242,.75);
}
.lkbtn--pri:hover{ box-shadow:0 18px 38px -14px rgba(47,212,242,.9); }

.lkbtn--sec{
  color:var(--txt);
  background:rgba(255,255,255,.04);
  box-shadow:inset 0 0 0 1px var(--line-hi);
}
.lkbtn--sec:hover{ background:rgba(47,212,242,.10); color:var(--cyan); box-shadow:inset 0 0 0 1px rgba(47,212,242,.45); }

/* ---------- 8. horário ---------- */
.lk-hrs{
  display:flex; align-items:center; justify-content:center; gap:.5rem;
  margin-top:1.6rem; margin-bottom:0;   /* margin-inline vem do .lk-col */
  font-size:var(--fs-sm); color:var(--txt-dim); text-align:center;
  text-wrap:balance;
}
.lk-hrs svg{ width:16px; height:16px; flex:none; color:var(--cyan); }
.lk-hrs b{ color:var(--txt); font-weight:700; }

/* ---------- 9. rodapé ---------- */
.lk-ft{
  margin-top:2.4rem;
  border-top:1px solid var(--line);
  background:rgba(7,11,20,.6);
  padding:1.7rem 0 2.1rem;
  text-align:center;
}
.lk-ft p{ margin:0; font-size:var(--fs-sm); color:var(--txt-dim); }
.lk-ft p + p{ margin-top:.55rem; }
.lk-ft a{ color:var(--txt); font-weight:600; }
.lk-ft a:hover{ color:var(--cyan); }
.lk-ft__nav{
  display:flex; align-items:center; justify-content:center; gap:.5rem; flex-wrap:wrap;
}
.lk-ft__nav span{ color:var(--line-hi); }

/* ---------- 10. telas maiores ---------- */
@media (min-width:768px){
  .lk-band{ padding-top:2.3rem; }
  .lk-band__logo{ height:40px; }
  .lk-name{ font-size:1.9rem; }
}

@media (prefers-reduced-motion:reduce){
  .lk, .lkbtn, .lk-soc a, .lk__go{ transition:none; }
  .lk:hover, .lkbtn:hover, .lk-soc a:hover{ transform:none; }
}

/* =====================================================================
   11. folha do Pix (bottom sheet no celular, caixa central no PC)
   Animação só em transform/opacity — nada que force layout a cada quadro.
   ===================================================================== */
.sheet{ position:fixed; inset:0; z-index:200; }
.sheet[hidden]{ display:none; }

.sheet__scrim{
  position:absolute; inset:0;
  background:rgba(2,5,10,.74);
  opacity:0;
  transition:opacity .3s var(--ease);
}
.sheet.is-open .sheet__scrim{ opacity:1; }

.sheet__panel{
  position:absolute; left:0; right:0; bottom:var(--kb, 0px);
  margin-inline:auto; width:min(480px, 100%);
  display:flex; flex-direction:column;
  max-height:calc(94dvh - var(--kb, 0px));
  background:linear-gradient(180deg, #14213A 0%, #0A1220 62%, #070C16 100%);
  border:1px solid var(--line-hi); border-bottom:0;
  border-radius:26px 26px 0 0;
  box-shadow:0 -26px 64px -18px rgba(0,0,0,.92);
  padding-bottom:max(1.15rem, env(safe-area-inset-bottom));
  transform:translate3d(0, 100%, 0);
  transition:transform .36s cubic-bezier(.22,1,.36,1);
  will-change:transform;
  contain:layout paint;   /* isola o painel: mexer nele não recalcula a página */
}
.sheet.is-open .sheet__panel{ transform:translate3d(0, 0, 0); }

/* pré-aquecimento: painel na posição final, mas invisível e sem receber toque —
   só para o navegador pagar o layout e a pintura antes da primeira abertura */
.sheet.is-warm{ pointer-events:none; }
.sheet.is-warm .sheet__scrim{ opacity:0 !important; transition:none !important; }
.sheet.is-warm .sheet__panel{ opacity:.004 !important; transition:none !important; }
/* no celular o painel mora fora da tela: traz para dentro só nesses dois quadros */
@media (max-width:767px){
  .sheet.is-warm .sheet__panel{ transform:translate3d(0,0,0) !important; }
}
.sheet.is-drag .sheet__panel{ transition:none; }          /* o dedo manda, não a transição */
.sheet.is-drag .sheet__scrim{ transition:none; }

/* alça de arrastar */
.sheet__grip{
  flex:none; height:28px;
  display:flex; align-items:center; justify-content:center;
  cursor:grab; touch-action:none;
}
.sheet__grip span{
  width:44px; height:5px; border-radius:999px;
  background:rgba(255,255,255,.24);
}

.sheet__x{
  position:absolute; top:14px; right:14px;
  width:34px; height:34px; border-radius:50%;
  display:grid; place-items:center;
  background:rgba(255,255,255,.08); color:var(--txt-dim);
  transition:background .22s var(--ease), color .22s var(--ease);
}
.sheet__x svg{ width:16px; height:16px; }
.sheet__x:hover{ background:rgba(255,255,255,.14); color:#fff; }

.sheet__body{
  overflow-y:auto; overscroll-behavior:contain;
  padding:.3rem 1.15rem 0;
  touch-action:pan-y;
}

/* troca de passo: só opacidade e deslocamento */
.step{ animation:step-in .26s var(--ease) both; }
.step[hidden]{ display:none; }
@keyframes step-in{
  from{ opacity:0; transform:translate3d(0, 10px, 0); }
  to  { opacity:1; transform:none; }
}

.sheet__ttl{
  font-size:1.35rem; font-weight:800; color:#fff;
  text-align:center; margin:0 0 .5rem;
}
.sheet__who{
  text-align:center; margin:0 0 1.15rem;
  font-size:var(--fs-sm); color:var(--txt-dim); line-height:1.5;
}
.sheet__who b{ display:block; color:var(--txt); font-weight:700; }
.sheet__key{ display:block; letter-spacing:.02em; }

.sheet__val{
  text-align:center; margin:0 0 .1rem;
  font-size:1.7rem; font-weight:800; color:var(--cyan);
}
.sheet__val--vazio{ font-size:var(--fs-base); font-weight:600; color:var(--txt-dim); }

.sheet__note{
  margin:.6rem 0 0;
  font-size:var(--fs-xs); color:var(--txt-dim); line-height:1.5;
}
.sheet__go{ margin-top:1.15rem; }

.sheet__alt{
  display:block; width:100%; margin-top:.85rem;
  min-height:44px;
  font-size:var(--fs-sm); font-weight:700; color:var(--txt-dim);
  transition:color .22s var(--ease);
}
.sheet__alt:hover{ color:var(--cyan); }

/* campo de valor — 24px de fonte para o iOS não dar zoom sozinho */
.vfield{ display:block; }
.vfield__lbl{
  display:block; margin-bottom:.45rem;
  font-size:var(--fs-sm); font-weight:600; color:var(--txt-dim);
}
.vfield__in{
  width:100%; min-height:62px;
  padding:.55rem .9rem;
  font-family:inherit; font-size:1.5rem; font-weight:800; color:#fff;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line-hi); border-radius:14px;
  transition:border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.vfield__in::placeholder{ color:#5D7086; font-weight:700; }
.vfield__in:focus{
  outline:none;
  border-color:var(--cyan);
  box-shadow:0 0 0 3px rgba(47,212,242,.18);
}

/* o QR */
.qrbox{ display:flex; justify-content:center; margin:.9rem 0 1.1rem; }
.qrbox__in{
  width:min(258px, 64vw); aspect-ratio:1;
  background:#fff; border-radius:16px; padding:6px;
  box-shadow:0 16px 38px -18px rgba(0,0,0,.95);
}
.qrbox__in svg{ width:100%; height:100%; display:block; }

/* no PC vira caixa central */
@media (min-width:768px){
  .sheet__panel{
    top:50%; bottom:auto;
    max-height:88vh;
    border:1px solid var(--line-hi);
    border-radius:22px;
    padding-bottom:1.3rem;
    transform:translate3d(0,-50%,0) scale(.965);
    opacity:0;
    transition:transform .26s var(--ease), opacity .26s var(--ease);
  }
  .sheet.is-open .sheet__panel{ transform:translate3d(0,-50%,0) scale(1); opacity:1; }
  .sheet__grip{ display:none; }
  .sheet__body{ padding-top:1.5rem; }
}

/* ---------- 12. botão de copiar com resposta no próprio botão ---------- */
.pixcopy{ position:relative; overflow:hidden; }
.pixcopy__ico{
  position:relative; width:1.25em; height:1.25em; flex:none;
}
.pixcopy__ico svg{
  position:absolute; inset:0; width:100%; height:100%;
  transition:opacity .2s var(--ease), transform .28s var(--ease);
}
.pixcopy__ico .i-ok{ opacity:0; transform:scale(.4) rotate(-12deg); }
.pixcopy.is-ok .pixcopy__ico .i-copy{ opacity:0; transform:scale(.4) rotate(12deg); }
.pixcopy.is-ok .pixcopy__ico .i-ok{ opacity:1; transform:none; }

.pixcopy.is-ok{
  background:linear-gradient(102deg, #3BE07E 0%, #25D366 58%, #12B45A 130%);
  color:#032313;
  box-shadow:0 14px 32px -14px rgba(37,211,102,.85);
}

/* clarão que sai do centro ao copiar */
.pixcopy::after{
  content:""; position:absolute; inset:0;
  border-radius:inherit; background:#fff;
  opacity:0; pointer-events:none;
}
.pixcopy.is-ok::after{ animation:copy-flash .55s var(--ease); }
@keyframes copy-flash{
  from{ opacity:.42; transform:scale(.9); }
  to  { opacity:0;   transform:scale(1.03); }
}

@media (prefers-reduced-motion:reduce){
  .sheet__panel, .sheet__scrim{ transition-duration:.01ms; }
  .step{ animation:none; }
  .pixcopy.is-ok::after{ animation:none; }
}
