/* Estilos para a nova Central de Ajuda (duvidas.php) */

.help-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.help-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.help-card-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.help-card-content h3 { margin: 0 0 8px 0; font-size: 18px; color: #333; }
.help-card-content p { margin: 0; font-size: 14px; color: #666; line-height: 1.5; }
.help-card-link { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--souza-orange); font-weight: bold; text-decoration: none; }
.help-card-link i { margin-left: 5px; transition: margin-left 0.2s; }
.help-card-link:hover i { margin-left: 10px; }