/* ============================================================
   Footer Follow Turbo — dark, alinhado à esquerda (padrão premium)
   ============================================================ */
footer.ft-footer {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  /* Fixa a entrelinha do componente (igual ao baseline do Bootstrap/Reboot
     da home, 1.5) para o footer renderizar com o mesmo espaçamento em
     páginas cujo body usa outra line-height (ex.: /blog usa 1.7). */
  line-height: 1.5;
}

/* ── Seção de links ───────────────────────────────────────── */
.ft-footer-section {
  background: #1b1c20;
  color: #c7c9d1;
  padding: 4rem 0 1.5rem;
}

.ft-footer-grid {
  row-gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.ft-footer-col {
  text-align: left;
}

/* Marca */
.ft-footer-col-brand {
  text-align: left;
  padding-right: 1.5rem;
}
.ft-footer-logo {
  max-height: 42px;
  max-width: 100%;
}
.ft-footer-tagline {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #9a9da6;
  font-weight: 500;
  max-width: 260px;
  line-height: 1.55;
}

/* Títulos das colunas */
.ft-footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 0.6rem;
  text-align: left;
}
.ft-footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: #ff7502;
}

/* Links */
.ft-footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
}
.ft-footer-link {
  color: #a8abb4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.ft-footer-link:hover {
  color: #ff8a3d;
  text-decoration: none;
}

/* Redes sociais */
.ft-footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 1.3rem;
}
.ft-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #c7c9d1;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ft-footer-social-link:hover {
  transform: translateY(-3px);
  text-decoration: none;
}
.ft-footer-social-instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
}
.ft-footer-social-youtube:hover {
  background: #ff0000;
  color: #fff;
}
.ft-footer-social-tiktok:hover {
  background: #010101;
  color: #fff;
}
.ft-footer-social-linkedin:hover {
  background: #0a66c2;
  color: #fff;
}

/* Selos de pagamento e segurança */
.ft-footer-payment-methods {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ft-footer-trust-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 1rem;
}
.ft-footer-safe-browsing {
  display: block;
  width: fit-content;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
.ft-footer-safe-browsing-img {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.ft-footer-safe-browsing:hover {
  text-decoration: none;
}
.ft-footer-ssl-labs {
  display: block;
  width: fit-content;
  text-decoration: none;
}
.ft-footer-ssl-labs-img {
  display: block;
  width: 36px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Coluna Contato + botão WhatsApp */
.ft-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.ft-footer-wa:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-1px);
}
.ft-footer-col-contact .ft-footer-link-list {
  margin-top: 2px;
}

/* Copyright */
.ft-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8a8d96;
  font-size: 0.88rem;
  padding-top: 1.5rem !important;
}
.ft-footer-brand {
  color: #ff8a3d;
}

@media (max-width: 991px) {
  .ft-footer-section {
    padding: 3rem 0 1.5rem;
  }
  .ft-footer-col-brand {
    padding-right: 0;
  }
}

/* Mobile: centraliza os itens quando empilham em coluna única */
@media (max-width: 767px) {
  .ft-footer-col,
  .ft-footer-col-brand,
  .ft-footer-col-title,
  .ft-footer-link-list {
    text-align: center;
  }
  .ft-footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .ft-footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .ft-footer-social {
    justify-content: center;
  }
  .ft-footer-payment-methods,
  .ft-footer-trust-badges {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-footer-wa,
  .ft-footer-wa:hover,
  .ft-footer-social-link,
  .ft-footer-social-link:hover {
    transition: none;
    transform: none;
  }
}

/* ── Utilitários do Bootstrap usados pelo markup do footer ─────
   Replicados (valores idênticos ao bootstrap.min.css) e escopados em
   .ft-footer para que o componente renderize igual mesmo em páginas
   que carregam só o bootstrap-grid (ex.: /blog), sem o CSS completo. */
.ft-footer .text-center {
  text-align: center !important;
}
.ft-footer .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.ft-footer .mb-0 {
  margin-bottom: 0 !important;
}

/* Normaliza margens de tags (equivalente ao Reboot do Bootstrap presente
   na home) para alinhar colunas e espaçamento mesmo sem o CSS completo. */
.ft-footer h3 {
  margin-top: 0;
}
.ft-footer-copyright p {
  margin: 0;
}
