/* ============================================================================
   Sinch Voice Ebook, SITE FOOTER, PREVIEW-ONLY
   ----------------------------------------------------------------------------
   STATUS: este arquivo NAO faz parte do entregavel pro tema WordPress.

   O footer abaixo replica a estrutura visual e o markup do footer real da
   Sinch (sinch.com), apenas para que o time da Sinch (Judy) e o time da EPIC
   consigam ver as paginas com o footer no preview local. No deploy WordPress,
   o footer global do tema (wp_footer()) renderiza no lugar.

   Como remover no lift:
     1. Apagar o <footer class="site-footer-preview"> ... </footer> do markup.
     2. Apagar o <link rel="stylesheet" href="css/site-footer-preview.css">.
     3. WordPress vai renderizar o footer global da Sinch automaticamente.

   Todas as classes aqui sao prefixadas com `.site-footer-preview` para nao
   colidir com qualquer regra do tema da Sinch.
   ============================================================================ */

.site-footer-preview {
  font-family: var(--sinch-font-sans-serif);
}

.site-footer-preview .footer-bar {
  background-color: var(--sinch-body-bg);
  color: var(--sinch-body-color);
  border-top: 1px solid #2A333A;
  position: relative;
  overflow: hidden;
}

.site-footer-preview .footer-top {
  padding-block: 3rem;
}
@media (min-width: 768px) { .site-footer-preview .footer-top { padding-block: 4rem; } }
@media (min-width: 1200px) { .site-footer-preview .footer-top { padding-block: 5rem; } }

.site-footer-preview .footer-brand-logo {
  display: inline-block;
  color: #E8ECEF;
  text-decoration: none;
}
.site-footer-preview .footer-brand-logo img { width: 124px; height: 32px; }

.site-footer-preview .footer-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #AEB7BD;
  margin-bottom: 0.75rem;
}

/* Social icons row. Simples botoes redondos com letra/inicial dentro pra
   sinalizar a rede social. No tema real Sinch usa SVGs especificos. */
.site-footer-preview .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.site-footer-preview .footer-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50rem;
  background-color: #1A1F24;
  border: 1px solid #2A333A;
  color: #E8ECEF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.site-footer-preview .footer-social-btn:hover {
  background-color: #2A333A;
  border-color: rgba(255, 233, 122, 0.4);
  color: #FFE97A;
}

/* Trusted badges. Placeholders simples como pillsfora. */
.site-footer-preview .footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.site-footer-preview .footer-badge {
  padding: 0.5rem 1rem;
  border: 1px solid #2A333A;
  border-radius: 0.5rem;
  color: #AEB7BD;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Regional contacts */
.site-footer-preview .footer-region {
  margin-bottom: 1rem;
}
.site-footer-preview .footer-region a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E8ECEF;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}
.site-footer-preview .footer-region a::after {
  content: " \2192";
}
.site-footer-preview .footer-region small {
  display: block;
  color: #AEB7BD;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Link columns */
.site-footer-preview .footer-col h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #E8ECEF;
  margin: 0 0 1rem;
}
.site-footer-preview .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer-preview .footer-col a {
  color: #AEB7BD;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s ease;
}
.site-footer-preview .footer-col a:hover { color: var(--sinch-link-color); }

/* Bottom bar: copyright + legal links */
.site-footer-preview .footer-bottom {
  border-top: 1px solid #2A333A;
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-footer-preview .footer-bottom span,
.site-footer-preview .footer-bottom a {
  font-size: 0.75rem;
  color: #AEB7BD;
}
.site-footer-preview .footer-bottom a {
  text-decoration: none;
  margin-left: 1rem;
}
.site-footer-preview .footer-bottom a:hover { color: var(--sinch-link-color); }

/* Preview ribbon: faixa amarela claramente indicando que e' replica do footer */
.site-footer-preview::before {
  content: "PREVIEW \00b7 Sinch site footer replica \00b7 will be replaced by wp_footer() at lift";
  display: block;
  background-color: rgba(255, 233, 122, 0.08);
  border-bottom: 1px solid rgba(255, 233, 122, 0.25);
  color: #FFE97A;
  font-family: var(--sinch-font-sans-serif);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
}
