/* ===== Vida Livre — Confiança & Conversão (global) ===== */
/* Floating WhatsApp button (single CTA) */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25D366;
  display: grid;
  place-items: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.06);
  outline: none;
}
.wa-float:hover{ filter: brightness(.96); }
.wa-float:active{ transform: translateY(1px); }
.wa-float:focus-visible{ box-shadow: 0 0 0 4px rgba(37,211,102,.28), 0 14px 40px rgba(0,0,0,.22); }

.wa-float__icon{
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.18));
}
.wa-float__ring{
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,.22);
  animation: waPulse 1.8s ease-out infinite;
}
@keyframes waPulse{
  0%{ transform: scale(.92); opacity: .9; }
  70%{ transform: scale(1.12); opacity: 0; }
  100%{ transform: scale(1.12); opacity: 0; }
}

.wa-float__sr{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Keep old dock hidden if any legacy markup exists */
.cta-dock{ display:none !important; }

@media (max-width: 520px){
  .wa-float{ right: 14px; bottom: 14px; width: 60px; height: 60px; }
  .wa-float__icon{ width: 32px; height: 32px; }
}

/* Page fade */
.has-page-fade body{ opacity:1; transition:opacity .14s ease; }
.has-page-fade body.page-fade-out{ opacity:.15; }

/* Prova social */
.socialproof{
  padding:26px 0 6px;
}
.socialproof__grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.socialproof__card{
  grid-column:span 6;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:16px 16px 14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.socialproof__card--full{ grid-column:span 12; }
.socialproof__who{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.socialproof__avatar{
  width:34px; height:34px; border-radius:12px;
  background:linear-gradient(135deg, rgba(101,182,243,.55), rgba(231,156,79,.55));
  border:1px solid rgba(0,0,0,.06);
}
.socialproof__name{ font-weight:800; }
.socialproof__text{ margin:0; color:rgba(0,0,0,.74); }
.socialproof__by{ margin-top:10px; font-size:13px; color:rgba(0,0,0,.62); font-weight:700; }
.socialproof__tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  font-weight:700;
  color:rgba(0,0,0,.72);
  font-size:13px;
}
@media (max-width: 780px){
  .socialproof__card{ grid-column:span 12; }
}

/* Related posts (blog) */
.related{ padding-top:10px; }
.related__title{ margin:0 0 10px; }
.related__grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}
.related__card{
  grid-column:span 4;
  display:block;
  padding:14px 14px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(0,0,0,.06);
  text-decoration:none;
  color:inherit;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}
.related__cardTitle{ display:block; font-weight:900; margin-bottom:6px; }
.related__cardDesc{ display:block; color:rgba(0,0,0,.72); font-size:14px; margin-bottom:10px; }
.related__cardCta{ font-weight:800; color:rgba(0,0,0,.72); }
@media (max-width: 980px){
  .related__card{ grid-column:span 6; }
}
@media (max-width: 620px){
  .related__card{ grid-column:span 12; }
}

/* Footer extras */
.footer__meta{ margin-top:10px; display:flex; flex-direction:column; gap:6px; }
.footer__socialLinks{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.footer__socialLinks a{ font-weight:800; text-decoration:none; }