/* CSS para Footer Fixo - EUROFROTA Sistema */

/* Reset básico para garantir que o footer fique colado */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container principal */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Footer fixo */
.site-footer {
    background: #1b2e59;
    color: #fff;
    padding: 0;
    margin: 0;
    border-top: 2px solid #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 70px;
}

/* Conteúdo do footer */
.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 100vw;
    padding: 0 40px;
}

/* Links no footer */
.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ccc;
    text-decoration: underline;
}

/* Margem inferior para evitar que o conteúdo seja coberto pelo footer */
.container, 
.main-content,
.content-wrapper {
    margin-bottom: 70px;
    padding-bottom: 20px;
}

/* Ajustes para diferentes tipos de páginas */
.card {
    margin-bottom: 70px;
}

.table-responsive {
    margin-bottom: 70px;
}

/* Responsividade */
@media (max-width: 768px) {
    .site-footer .footer-content {
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        min-height: 70px;
        text-align: center;
    }
    
    .site-footer {
        height: auto;
        min-height: 70px;
    }
    
    .container, 
    .main-content,
    .content-wrapper {
        margin-bottom: 90px;
    }
}

/* Ajustes para páginas de login/cadastro */
.login-container,
.cadastro-container {
    margin-bottom: 70px;
}

/* Ajustes para formulários */
form {
    margin-bottom: 70px;
}

/* Ajustes para tabelas */
.table {
    margin-bottom: 70px;
}

/* Ajustes para modais */
.modal {
    z-index: 1050;
}

.modal-backdrop {
    z-index: 1040;
} 