/* Estilos para a página de Atividades Socioculturais */
.atividade-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

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

.atividade-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.atividade-content {
    padding: 20px;
    background-color: #fff;
}

.atividade-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.atividade-description {
    color: #666;
    margin-bottom: 15px;
}

.atividade-date {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
} 