/* Inflouno - rodape e banner de cookies.
   Carregado em todas as paginas, incluindo o index gerado pela Webflow.
   Todos os selectores levam prefixo .inf- para nunca colidirem com o CSS
   da Webflow: nao ha aqui um unico selector de elemento solto. */

.inf-footer {
  --inf-f-ink: #0a0a0a;
  --inf-f-body: #55595c;
  --inf-f-muted: #82878a;
  --inf-f-line: #e6e6e6;
  --inf-f-bg: #fafafa;
  --inf-f-accent: #d4440a;
  --inf-f-brand-a: #f336f7;
  --inf-f-brand-b: #fd5206;

  background: var(--inf-f-bg);
  border-top: 1px solid var(--inf-f-line);
  font-family: 'Inter Display', Inter, system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  color: var(--inf-f-body);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  padding: 0;
}

.inf-footer * { box-sizing: border-box; }

.inf-footer-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 28px;
}

.inf-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.15fr;
  gap: 48px 32px;
  align-items: start;
}

/* ---- coluna da marca ---- */
.inf-footer-logo {
  height: 30px;
  width: auto;
  display: block;
  margin: 0 0 18px;
}

.inf-footer-tagline {
  margin: 0 0 20px;
  max-width: 34ch;
  color: var(--inf-f-body);
}

.inf-footer-id {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--inf-f-muted);
}

.inf-footer-id strong {
  display: block;
  color: var(--inf-f-ink);
  font-weight: 600;
}

/* ---- colunas de links ---- */
.inf-footer-col { min-width: 0; }

.inf-footer-head {
  margin: 0 0 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--inf-f-ink);
  line-height: 1.4;
}

.inf-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.inf-footer-list a,
.inf-footer-btn {
  color: var(--inf-f-body);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color .18s ease;
}

.inf-footer-list a:hover,
.inf-footer-btn:hover {
  color: var(--inf-f-accent);
  text-decoration: none;
}

.inf-footer-btn {
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

/* ---- barra de baixo ---- */
.inf-footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--inf-f-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
  font-size: 13.5px;
  color: var(--inf-f-muted);
}

.inf-footer-bottom p { margin: 0; }
.inf-footer-bottom a { color: var(--inf-f-muted); text-decoration: underline; }
.inf-footer-bottom a:hover { color: var(--inf-f-accent); }

.inf-footer :focus-visible {
  outline: 2px solid var(--inf-f-brand-b);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .inf-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .inf-footer-brand { grid-column: 1 / -1; }
  .inf-footer-in { padding: 52px 24px 26px; }
}

@media (max-width: 560px) {
  .inf-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .inf-footer-in { padding: 44px 20px 24px; }
  .inf-footer-tagline { max-width: none; }
  .inf-footer-bottom { margin-top: 38px; flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =========================================================================
   Banner de cookies. Injectado por js/consent.js, por isso o HTML nao esta
   em pagina nenhuma. Barra em baixo, nao modal: nao tapa o conteudo nem
   prende o teclado, e a escolha fica guardada em localStorage.
   ========================================================================= */

.inf-cookie {
  position: fixed;
  z-index: 9999;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  color: #34383a;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
  padding: 20px 22px;
  font-family: 'Inter Display', Inter, system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  animation: inf-cookie-in .28s ease both;
}

@keyframes inf-cookie-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .inf-cookie { animation: none; }
}

.inf-cookie * { box-sizing: border-box; }

.inf-cookie-text { flex: 1 1 380px; margin: 0; }
.inf-cookie-text strong { color: #0a0a0a; font-weight: 600; }
.inf-cookie-text a { color: #d4440a; text-decoration: underline; }

.inf-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.inf-cookie-btn {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .18s ease, background-color .18s ease;
}

.inf-cookie-btn-accept {
  background: linear-gradient(114deg, #f336f7, #fd5206);
  color: #fff;
}
.inf-cookie-btn-accept:hover { opacity: .9; }

.inf-cookie-btn-reject {
  background: #fff;
  color: #0a0a0a;
  border-color: #d9d9d9;
}
.inf-cookie-btn-reject:hover { background: #f4f4f4; }

.inf-cookie button:focus-visible {
  outline: 2px solid #fd5206;
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .inf-cookie { left: 10px; right: 10px; bottom: 10px; padding: 18px 18px 16px; gap: 14px; }
  .inf-cookie-actions { width: 100%; }
  .inf-cookie-btn { flex: 1 1 auto; text-align: center; }
}
