.avisos-hero {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    margin-top: 80px; 
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-pills-custom .nav-link {
    color: #555;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 8px;
    padding: 12px 20px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.nav-pills-custom .nav-link:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}
.nav-pills-custom .nav-link.active {
    background: #4CAF50; 
    color: white;
    border-color: #4CAF50;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}
.nav-pills-custom .nav-link i {
    font-size: 1.2rem;
    margin-right: 12px;
    width: 25px;
    text-align: center;
}

.departamento-desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #dee2e6;
}

.aviso-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #444;
    transition: 0.3s;
    background: white;
}
.aviso-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #2E7D32;
}
.aviso-icon {
    font-size: 2rem;
    color: #E91E63; 
    margin-right: 15px;
}
.aviso-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}