/* ==========================================
   STICKY FOOTER SETUP - Flexbox Universal
   ========================================== */
/* Força o footer a ficar sempre no fundo da página */
html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Wrapper principal que empurra o footer para baixo */
.page-wrapper,
.main-content,
.dashboard-container,
.reservas-main-container,
.details-container {
  flex: 1 0 auto;
}

/* ==========================================
   FOOTER PADRÃO
   ========================================== */
.site-footer {
  background: linear-gradient(135deg, #0a2f2f 0%, #0d3b3b 100%);
  color: #cbd5e1;
  border-top: 3px solid rgba(255, 255, 255, 0.15);
  padding: 14px 16px;
  margin-top: auto; /* Empurra o footer para o final do flex container */
  flex-shrink: 0;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__copyright {
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  opacity: 0.9;
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */
@media (max-width: 768px) {
  .site-footer {
    padding: 12px 14px;
  }

  .site-footer__copyright {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 10px 12px;
  }

  .site-footer__copyright {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}
