/* ═══════════════════════════════════════════════
   REDES SOCIAIS E CONTATO — CÉSAR HALUM 55555
   Arquivo isolado: não altera style.css nem avatar.css
   Usa os tokens de :root definidos em style.css
═══════════════════════════════════════════════ */

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list.centered {
  justify-content: center;
}

.social-btn {
  --size: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.25s var(--ease-spring), background 0.25s, border-color 0.25s,
              box-shadow 0.25s, color 0.25s;
}

.social-btn svg {
  width: calc(var(--size) * 0.48);
  height: calc(var(--size) * 0.48);
  display: block;
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-3px);
  background: var(--brand, var(--gold));
  border-color: var(--brand, var(--gold));
  color: var(--brand-fg, #ffffff);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.social-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Variante para fundo claro */
.social-list.on-light .social-btn {
  color: var(--blue-primary);
  background: var(--blue-soft);
  border-color: rgba(8, 68, 148, 0.16);
}

.social-list.on-light .social-btn:hover,
.social-list.on-light .social-btn:focus-visible {
  color: var(--brand-fg, #ffffff);
  background: var(--brand, var(--blue-primary));
  border-color: var(--brand, var(--blue-primary));
  box-shadow: 0 8px 22px rgba(0, 60, 132, 0.28);
}

/* Cores de marca (aplicadas no hover/foco) */
.social-ig { --brand: #e1306c; }
.social-tt { --brand: #010101; }
.social-x  { --brand: #010101; }
.social-kw { --brand: #ff6a00; }
.social-yt { --brand: #ff0000; }

/* ─────────────────────────────────────────────
   BLOCO DESTAQUE (seção Participe)
───────────────────────────────────────────── */
.social-feature {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.social-feature-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.35rem;
}

.social-list.labelled {
  gap: 1.1rem 1.6rem;
}

.social-list.labelled li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.social-list.labelled .social-btn {
  --size: 58px;
}

.social-name {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}

/* ─────────────────────────────────────────────
   RODAPÉ
───────────────────────────────────────────── */
.footer-social {
  margin-top: 1.5rem;
}

.footer-social-title {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.footer-social .social-btn {
  --size: 40px;
}

/* ─────────────────────────────────────────────
   MENU MOBILE
───────────────────────────────────────────── */
.menu-social {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.menu-social-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.8rem;
  text-align: center;
}

.menu-social .social-list {
  justify-content: center;
}

.menu-social .social-btn {
  --size: 46px;
}

/* ─────────────────────────────────────────────
   PÓS-AVATAR (momento de maior engajamento)
───────────────────────────────────────────── */
.av-social {
  margin-top: 0.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid #eef2f8;
}

.av-social p {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.av-social .social-btn {
  --size: 40px;
}

/* ─────────────────────────────────────────────
   RESPONSIVO
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .social-list.labelled {
    gap: 1rem 1.1rem;
  }

  .social-list.labelled .social-btn {
    --size: 50px;
  }

  .social-name {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-btn {
    transition: none;
  }
  .social-btn:hover,
  .social-btn:focus-visible {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════
   CONTATO DA CAMPANHA (rodapé) + canal LGPD
═══════════════════════════════════════════════ */
.footer-contact {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-title {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  word-break: break-all;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-spring);
}

.footer-contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-contact-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.footer-lgpd {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.footer-lgpd strong {
  color: rgba(255, 255, 255, 0.82);
}

/* Links dentro da linha legal do rodapé */
.footer-bottom a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--gold-glow);
}

/* Link do canal de exclusão dentro do gerador de avatar */
.av-privacy-note a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.av-privacy-note a:hover {
  color: var(--blue-mid);
}

@media (prefers-reduced-motion: reduce) {
  .footer-contact-link {
    transition: none;
  }
  .footer-contact-link:hover,
  .footer-contact-link:focus-visible {
    transform: none;
  }
}
