/* Estilos gerais */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #28a745;
}

.section-title {
    border-bottom: 2px solid #28a745;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.header-bg {
    background: linear-gradient(to right, #1e7e34, #28a745);
    color: white;
}

.navbar-custom {
    background-color: #28a745;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: white;
}

.navbar-custom .nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Estilos para cards */
.card {
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #28a745;
    color: white;
    font-weight: bold;
}

/* Estilos para tabelas */
.table-custom {
    width: 100%;
    border-collapse: collapse;
}

.table-custom th {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    text-align: center;
}

.table-custom tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table-custom tr:hover {
    background-color: #e9ecef;
}

/* Estilos para gráficos */
.chart-container {
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 20px;
}

/* Estilos para rodapé */
footer {
    background-color: #343a40;
    color: white;
    padding: 30px 0;
}

/* Estilos para navegação de ULES */
.ules-nav .nav-link {
    border-radius: 0;
    color: #333;
}

.ules-nav .nav-link.active {
    background-color: #28a745;
    color: white;
}

/* Destaque para índices de sustentabilidade */
.sustainability-high {
    color: #28a745;
    font-weight: bold;
}

.sustainability-medium {
    color: #ffc107;
    font-weight: bold;
}

.sustainability-low {
    color: #dc3545;
    font-weight: bold;
}

/* Estilos para cards de recomendações */
.recommendation-card {
    border-left: 4px solid #28a745;
}

/* Estilos para mapas e visualizações */
.map-container {
    height: 400px;
    margin-bottom: 20px;
}

/* Animações para estatísticas */
.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
}

/* Estilos de impressão */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        font-size: 10pt;
    }
    
    h1 {
        font-size: 18pt;
    }
    
    h2 {
        font-size: 16pt;
    }
    
    h3 {
        font-size: 14pt;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .chart-container {
        overflow-x: auto;
    }
}
