/* css/style.css - ESTILOS GLOBAIS OTIMIZADOS */
:root {
    --asmg-blue: #002b80;
    --asmg-red: #800300;
    --asmg-light-blue: #e9f0ff;
    --asmg-dark-blue: #001a4d;
}

/* Estilos gerais */
body { 
    margin-top: 76px; 
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Cores personalizadas */
.bg-primary { background-color: var(--asmg-blue) !important; }
.bg-danger { background-color: var(--asmg-red) !important; }
.text-primary { color: var(--asmg-blue) !important; }
.text-danger { color: var(--asmg-red) !important; }

/* Cards genéricos */
.card { 
    transition: transform 0.3s, box-shadow 0.3s; 
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Banner genérico */
.banner-section {
    background: linear-gradient(rgba(0, 43, 128, 0.8), rgba(0, 43, 128, 0.8));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Títulos de seção */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--asmg-blue);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--asmg-blue);
    border-radius: 2px;
}

/* Footer */
footer a.text-white:hover {
    color: #cccccc !important;
    text-decoration: underline;
}

/* Responsividade global */
@media (max-width: 768px) {
    body {
        margin-top: 66px;
    }
    
    .banner-section {
        padding: 40px 0;
    }
    
    .banner-section h1 {
        font-size: 2rem;
    }
    
    .banner-section h2 {
        font-size: 1.5rem;
    }
}