/* ════════════════════════════════════════════════════════════════
   footer.css — Footer Fixo (barra de ícones) + Footer do Site
   ════════════════════════════════════════════════════════════════ */

/* ─── FOOTER FIXO — barra de ícones no fundo da tela ──────────── */
.footer {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--footer-h); z-index: 1000;
  background: var(--bg-footer);
  border-top: 1px solid var(--border-ui);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s;
}
/* Linha de fogo no topo do footer */
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire), var(--ember), var(--fire), transparent);
  opacity: 0.35;
}

/* Faixa interna — alinhada com .container e navbar */
.footer-inner {
  max-width: var(--mx); width: 100%;
  margin-inline: auto; padding-inline: var(--px);
  display: flex; align-items: center; justify-content: space-around;
}

/* Cada botão do footer */
.footer-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; max-width: 88px; padding: 5px 6px; border-radius: 12px;
  text-decoration: none; color: var(--txt-dim);
  font-size: 10px; font-weight: 600; letter-spacing: .02em;
  transition: color .22s, background .22s, transform .22s;
  -webkit-tap-highlight-color: transparent;
}
.footer-btn:hover, .footer-btn.active {
  color: var(--btn-c, var(--fire));
  background: rgba(229,9,20,0.06);
  transform: translateY(-2px);
}

/* Container do ícone */
.footer-icon {
  width: 38px; height: 38px; border-radius: 10px; overflow: hidden;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .22s;
}
.footer-btn:hover .footer-icon, .footer-btn.active .footer-icon {
  box-shadow: 0 0 14px rgba(229,9,20,0.35);
}
/* Imagem do ícone */
.footer-icon img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 9px;
  display: block; user-select: none; -webkit-user-drag: none;
}

/* ─── FOOTER TEXTUAL (antes do footer fixo) ────────────────────── */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding-block: clamp(2rem, 5vw, 3rem);
  position: relative;
}
.site-footer::before {
  content: ''; display: block; height: 1px; margin-bottom: 2rem;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
  opacity: 0.3;
}

.site-footer-inner {
  max-width: var(--mx); margin-inline: auto; padding-inline: var(--px);
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem; text-align: center;
}
.sf-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase; color: var(--txt);
}
.sf-logo .accent { color: var(--fire); }
.sf-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem 1.5rem; }
.sf-links a { font-size: .8rem; color: var(--txt-dim); transition: color var(--dur); }
.sf-links a:hover { color: var(--fire); }
.sf-social { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border-ui); color: var(--txt-dim); font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .22s;
}
.soc-btn:hover { transform: translateY(-3px); color: #fff; }
.soc-btn.of:hover  { background: var(--p-onlyfans);  border-color: var(--p-onlyfans); }
.soc-btn.xv:hover  { background: var(--p-xvideos);   border-color: var(--p-xvideos); }
.soc-btn.tw:hover  { background: var(--p-twitter);   border-color: var(--p-twitter); }
.soc-btn.ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: var(--p-instagram); }
.soc-btn.wa:hover  { background: var(--p-whatsapp);  border-color: var(--p-whatsapp); }
.sf-copy { font-size: .74rem; color: var(--txt-dim); }
.sf-copy a { color: var(--fire); }

/* ─── BOTÃO FLUTUANTE WHATSAPP ─────────────────────────────────── */
.wa-float {
  position: fixed; bottom: calc(var(--footer-h) + 1rem); right: 1.25rem;
  width: 52px; height: 52px; background: var(--p-whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 900; transition: transform .25s var(--eout), box-shadow .25s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 28px rgba(37,211,102,.5); }
/* Anel pulsante verde */
.wa-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(37,211,102,.18); animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }
