/* =====================================================
   RESET / BASE
===================================================== */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;          /* FUNDO BRANCO FORÇADO */
  color: #212529;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   CONTEÚDO PRINCIPAL
===================================================== */

main,
.container {
  flex: 1 0 auto;
}

/* =====================================================
   FOOTER (NÃO FIXO, MAS SEMPRE NO FUNDO)
===================================================== */

.footer-fixed {
  position: relative;           /* ⬅️ NÃO FIXO */
  margin-top: auto;             /* ⬅️ empurra para o fundo */
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #dee2e6;
  z-index: 10;
}

/* =====================================================
   COOKIE BANNER
===================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #223260;          /* Azul Cyberprotech */
  color: #ffffff;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,.25);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-content a {
  color: #9ec5ff;
  text-decoration: underline;
}

.cookie-content a:hover {
  text-decoration: none;
}

.cookie-content .btn {
  white-space: nowrap;
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 768px) {

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   UTILITÁRIOS
===================================================== */

.text-muted {
  color: #6c757d !important;
}
