/* Garante que o body ocupe toda a altura da tela */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/* Compensação para navbar fixa */
body {
    padding-top: 56px;
}

/* Navbar */
.navbar {
    background-color: #006400; /* Verde escuro */
    padding: 0.2rem 1rem;
    border-bottom: 1px solid #00db37;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand img {
    max-height: 32px;
}

.nav-link {
    font-weight: bold;
    color: #ffffff !important;
    text-transform: uppercase;
    padding: 4px 8px;
    transition: color 0.3s, background-color 0.3s;
}

.nav-link:hover {
    color: #000000 !important;
    background-color: #FF4500;
    border-radius: 3px;
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsividade da Navbar */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
    }

    .dropdown-menu {
        width: 100%;
    }
}

/* Botões Gerais */
button, .btn-orange, .btn-secondary {
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-orange {
    background-color: #FFA07A !important;
    color: white;
}

.btn-orange:hover {
    background-color: #FF4500 !important;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-orange:active {
    background-color: #E63E00 !important;
    transform: scale(0.97);
}

.btn-secondary {
    background-color: #ee561e !important;
    color: white;
}

.btn-secondary:hover {
    background-color: #ee561e !important;
    transform: scale(1.05);
}

/* Espaçamento uniforme */
.gap-3 > * {
    margin: 8px;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
    color: #333;
    border-top: 1px solid #ddd;
}

.footer p {
    margin: 0;
    color: #666;
}